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({ return request({
url: '/wms/odsRawOrderIn/listZJ', url: '/wms/odsRawOrderIn/listZJ',
method: 'post', method: 'get',
data: data params: query
}); });
} }
// 查询包材到货单详细 // 查询包材到货单详细

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

Loading…
Cancel
Save