Browse Source

修改盘点查找任务

pda_nev
李俊城 1 year ago
parent
commit
a0fe3df852
  1. 2
      fe/PDA/api/index.js
  2. 22
      fe/PDA/pages/task/unProducePickWipDetail.vue

2
fe/PDA/api/index.js

@ -825,7 +825,7 @@ export const getCountJobList = (params) => request(
//根据Number获取盘点任务 //根据Number获取盘点任务
export const getCountJobByNumber = (number) => request( export const getCountJobByNumber = (number) => request(
devUrl + "/api/pda/job/count/by-number/" + number, { devUrl + "/api/pda/job/count/by-number?jobNumber=" + number, {
data: {}, data: {},
method: "get" method: "get"
}); });

22
fe/PDA/pages/task/unProducePickWipDetail.vue

@ -451,17 +451,17 @@
that.datacontent.details = that.details; that.datacontent.details = that.details;
let params = JSON.stringify(that.datacontent); let params = JSON.stringify(that.datacontent);
console.log("提交", params); console.log("提交", params);
// finshUnProducePickJob(that.id, params) finshUnProducePickJob(that.id, params)
// .then(res => { .then(res => {
// uni.hideLoading(); uni.hideLoading();
// if (res != null) { if (res != null) {
// that.showCommitSuccessMessage(); that.showCommitSuccessMessage();
// } }
// }) })
// .catch(err => { .catch(err => {
// that.showMessage(err.message); that.showMessage(err.message);
// uni.hideLoading(); uni.hideLoading();
// }); });
}, },
// //

Loading…
Cancel
Save