From 70e98093c5844d3fa49b76e46a234641b728ad4d Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Mon, 15 Apr 2024 18:01:53 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9C=AF=E5=A3=AB=E5=A5=97=E5=8C=85?= =?UTF-8?q?=E3=80=81=E5=AE=9A=E6=95=B0=E5=8C=85=E5=8A=9F=E8=83=BD=E5=BC=80?= =?UTF-8?q?=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inout/orderDetailCode.js | 9 +- src/views/basic/destiny/addDestinyProcess.vue | 2 +- src/views/basic/destiny/destinyModel.vue | 26 +- src/views/basic/destiny/warlockBagModel.vue | 291 ++++++++++++++++++ src/views/inout/PanelCreateOrderBizDetail.vue | 58 +++- 5 files changed, 371 insertions(+), 15 deletions(-) create mode 100644 src/views/basic/destiny/warlockBagModel.vue diff --git a/src/api/inout/orderDetailCode.js b/src/api/inout/orderDetailCode.js index 9d0d3c04..05640171 100644 --- a/src/api/inout/orderDetailCode.js +++ b/src/api/inout/orderDetailCode.js @@ -75,5 +75,12 @@ export function updateCodeProduct(query) { } - +//业务明细添加术士套包 +export function addWarlockBagProduct(query) { + return axios({ + url: "/udiwms/inout/order/addWarlockBagProduct", + method: "post", + data: query + }); +} diff --git a/src/views/basic/destiny/addDestinyProcess.vue b/src/views/basic/destiny/addDestinyProcess.vue index 5cc8d0e5..daad9624 100644 --- a/src/views/basic/destiny/addDestinyProcess.vue +++ b/src/views/basic/destiny/addDestinyProcess.vue @@ -104,7 +104,7 @@ title="选入定数包" :visible.sync="orderMutiVisible" :before-close="close" - width="60%" + width="90%" append-to-body v-if="orderMutiVisible" @close='closedeStinyDialog' diff --git a/src/views/basic/destiny/destinyModel.vue b/src/views/basic/destiny/destinyModel.vue index 4b2db4f0..c29f759e 100644 --- a/src/views/basic/destiny/destinyModel.vue +++ b/src/views/basic/destiny/destinyModel.vue @@ -3,17 +3,17 @@ - + - + - + @@ -25,10 +25,10 @@ - + @@ -40,7 +40,7 @@ {{ scope.row.price == "null" ? "0.00":scope.row.price }} - + @@ -88,6 +88,7 @@ export default { total: 0, destinyId:null, radio:null, + currentRow:null, list: [], }; }, @@ -135,11 +136,16 @@ export default { this.destinyId= row }, combine(){ - if(isBlank(this.destinyId)){ - return this.$message.error("请先选择定数包!"); + if (this.currentRow == null) { + this.$message.error('未选择定数包'); + return; } - this.closeDialog(this.destinyId); - } + this.closeDialog(this.currentRow.id); + }, + handleChange(val) { + this.radio = val.id; + this.currentRow = val; + }, } , mounted() { diff --git a/src/views/basic/destiny/warlockBagModel.vue b/src/views/basic/destiny/warlockBagModel.vue new file mode 100644 index 00000000..ae89725f --- /dev/null +++ b/src/views/basic/destiny/warlockBagModel.vue @@ -0,0 +1,291 @@ + + + diff --git a/src/views/inout/PanelCreateOrderBizDetail.vue b/src/views/inout/PanelCreateOrderBizDetail.vue index d04b4e64..fa2f69a7 100644 --- a/src/views/inout/PanelCreateOrderBizDetail.vue +++ b/src/views/inout/PanelCreateOrderBizDetail.vue @@ -3,14 +3,20 @@
+ 术士套包录入 + 物资录入 - +
@@ -115,6 +121,21 @@
+ + + +