1234567891011121314151617181920 |
- import request from '@/router/axios';
- export const getList = (current, size, params) => {
- return request({
- url: '/api/blade-client/partsCorps/page',
- method: 'get',
- params: {
- ...params,
- current,
- size,
- }
- })
- }
-
- export const getCorpsAll = () => {
- return request({
- url: '/api/blade-client/partsCorps/getCorpsAll',
- method: 'get',
- })
- }
|