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) {