You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
377 B
20 lines
377 B
1 year ago
|
import request from '@/axios';
|
||
|
|
||
|
/**
|
||
|
* 获取暂存单列表数据
|
||
|
* @param {number} current
|
||
|
* @param {number} size
|
||
|
* @param {*} params
|
||
|
* @returns
|
||
|
*/
|
||
|
export const getopenOrderAdvancePageList = (page, params) => {
|
||
|
return request({
|
||
|
url: '/api/logpm-trunkline/openOrder/advancePageList',
|
||
|
method: 'get',
|
||
|
params: {
|
||
|
...params,
|
||
|
...page,
|
||
|
},
|
||
|
});
|
||
|
};
|