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.
27 lines
520 B
27 lines
520 B
import request from '@/axios'; |
|
|
|
/** |
|
* 获取暂存单列表数据 |
|
* @param {Object} data |
|
* @returns |
|
*/ |
|
export const postFindUpdateWaybillList = data => { |
|
return request({ |
|
url: '/api/logpm-trunkline/openOrder/findUpdateWaybillList', |
|
method: 'post', |
|
data, |
|
}); |
|
}; |
|
|
|
/** |
|
* 导出 |
|
* @param {Object} data |
|
* @returns |
|
*/ |
|
export const postUpdateWaybillQualityExport = data => { |
|
return request({ |
|
url: '/api/logpm-trunkline/openOrder/updateWaybillQualityExport', |
|
method: 'post', |
|
data, |
|
}); |
|
};
|
|
|