wms报检报表小修改2

master
mengjiao 3 months ago
parent a4fd545c7a
commit 118bb320ca

@ -9,11 +9,11 @@ export function listOdsRawOrderIn(query) {
});
}
// 报检报表查询接口
export function listZJ(data) {
export function listZJ(query) {
return request({
url: '/wms/odsRawOrderIn/listZJ',
method: 'post',
data: data
method: 'get',
params: query
});
}
// 查询包材到货单详细

@ -432,7 +432,7 @@ export default {
/** 查询包材到货单列表 */
getList() {
this.loading = true;
listZJ(JSON.stringify(this.queryParams)).then(response => {
listZJ(this.queryParams).then(response => {
this.odsRawOrderInList = response.rows;
this.total = response.total;
this.loading = false;

Loading…
Cancel
Save