Commit 84b996a9 authored by 仇晓婷's avatar 仇晓婷

结果页面下发

parent ebc022b0
...@@ -15,7 +15,7 @@ export default { ...@@ -15,7 +15,7 @@ export default {
return Api.get(`${apsUrl}/scheduletotal/getdetail`, params); return Api.get(`${apsUrl}/scheduletotal/getdetail`, params);
}, },
processschemedispatch(params) { processschemedispatch(params) {
return Api.get(`${apsUrl}/apspoolappservices/processschemedispatch`, params); return Api.post(`${apsUrl}/apspoolappservices/processschemedispatch`, params);
}, },
moveintoaps() {//跳转进入排产池前判断 moveintoaps() {//跳转进入排产池前判断
return Api.post(`${PlanUrl}/messchedule/moveintoaps`); return Api.post(`${PlanUrl}/messchedule/moveintoaps`);
......
...@@ -189,8 +189,9 @@ export default { ...@@ -189,8 +189,9 @@ export default {
Api.processschemedispatch({ Api.processschemedispatch({
id: this.id id: this.id
}).then(r => { }).then(r => {
if (r.success) { if (r.result) {
this.$Message.success("下发成功"); this.$Message.success(r.result.retmsg);
this.orderlist();
} else { } else {
this.$Message.success("下发失败"); this.$Message.success("下发失败");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment