From 5852fa94fdefd93007fcc7451d45d0690edbc0fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=AD=E9=A3=9E?= Date: Thu, 27 Mar 2025 17:58:54 +0800 Subject: [PATCH] =?UTF-8?q?add:=E5=86=B2=E9=94=80=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Query/BasicQuery/Palletizing/index.vue | 150 ++++++++++++++++++ src/views/Query/StockQuery/UnDoInfo/index.vue | 31 +++- 2 files changed, 176 insertions(+), 5 deletions(-) create mode 100644 src/views/Query/BasicQuery/Palletizing/index.vue diff --git a/src/views/Query/BasicQuery/Palletizing/index.vue b/src/views/Query/BasicQuery/Palletizing/index.vue new file mode 100644 index 0000000..144f329 --- /dev/null +++ b/src/views/Query/BasicQuery/Palletizing/index.vue @@ -0,0 +1,150 @@ + + + + + + \ No newline at end of file diff --git a/src/views/Query/StockQuery/UnDoInfo/index.vue b/src/views/Query/StockQuery/UnDoInfo/index.vue index d4ed6a3..5b01e20 100644 --- a/src/views/Query/StockQuery/UnDoInfo/index.vue +++ b/src/views/Query/StockQuery/UnDoInfo/index.vue @@ -9,6 +9,15 @@ + + + + + + + @@ -99,8 +114,14 @@ const state = reactive({ queryParams: { UNDOID: '', FROMDATE: '', - TODATE: '' + TODATE: '', + TYPE:"" }, + TypeList: [ + { value: '', label: '全部' }, + { value: 'A', label: '入库' }, + { value: 'B', label: '出库' } + ], page: { pageNum: 1, pageSize: 10, @@ -234,10 +255,10 @@ function sendUndoCommit() { return; } undoCommit({ - undoId: state.list[0].UNDOID, + undoId: state.list[0]?.UNDOID, userId: localStorage.get('userId'), - flag: state.list[0].FLAG, - inv_TYPE : state.list[0].INV_TYPE, + flag: state.list[0]?.FLAG, + inv_TYPE : state.list[0]?.INV_TYPE, }).then((res: any) => { console.log(res) if (res.success) {