diff --git a/src/views/business/stockOrder.vue b/src/views/business/stockOrder.vue index 22420e1..9bbce6a 100644 --- a/src/views/business/stockOrder.vue +++ b/src/views/business/stockOrder.vue @@ -504,7 +504,7 @@ export default { this.getList(); }, detailHandleCurrentChange(val) { - this.query.page = val; + this.detailQuery.page = val; this.getStockOrderDetailList(); }, // 刷新表单 diff --git a/src/views/business/stockOrderEditor.vue b/src/views/business/stockOrderEditor.vue index d6a2a24..4a82d17 100644 --- a/src/views/business/stockOrderEditor.vue +++ b/src/views/business/stockOrderEditor.vue @@ -634,6 +634,7 @@ export default { }; this.getList(); this.detailList = []; + this.detailTotal = 0; this.haveDistributionVisible = false; this.actDateRange = []; }, @@ -658,7 +659,7 @@ export default { this.getList(); }, detailHandleCurrentChange(val) { - this.query.page = val; + this.detailQuery.page = val; this.getStockOrderDetailList(); }, // 刷新表单 diff --git a/src/views/business/stockOrderNew.vue b/src/views/business/stockOrderNew.vue index d9e8113..59235cb 100644 --- a/src/views/business/stockOrderNew.vue +++ b/src/views/business/stockOrderNew.vue @@ -613,7 +613,7 @@ export default { this.getList(); }, detailHandleCurrentChange(val) { - this.query.page = val; + this.detailQuery.page = val; this.getStockOrderDetailList(); }, // 刷新表单 diff --git a/src/views/inout/IONewCode.vue b/src/views/inout/IONewCode.vue index 3871e0d..948895a 100644 --- a/src/views/inout/IONewCode.vue +++ b/src/views/inout/IONewCode.vue @@ -1,200 +1,206 @@ - - - - - + + + + + - - - 查询 - 删除 - - - - - - - - - - - - - {{ scope.row.actDate }} - - - + + + 查询 + + 删除 + + + + + + + + + + + + + + {{ scope.row.actDate }} + + + - - + + diff --git a/src/views/inventory/invPreInProducts.vue b/src/views/inventory/invPreInProducts.vue index 2fb8981..e57856b 100644 --- a/src/views/inventory/invPreInProducts.vue +++ b/src/views/inventory/invPreInProducts.vue @@ -121,6 +121,8 @@ :visible.sync="codeDetailVisible" width="85%" v-if="codeDetailVisible" + :close-on-click-modal="false" + :close-on-press-escape="false" > { this.loading = false; @@ -631,7 +629,6 @@ export default { rData.forEach((obj, index) => { this.codeArray.unshift(obj); }); - console.log(this.codeArray); this.$refs.multipleTable.setCurrentRow(this.codeArray[0]); this.currentRow = this.codeArray[0]; this.selectedIndex = 0; @@ -855,7 +852,6 @@ export default { this.loading = true; getThrOrderDetails(this.query) //查找该单号下的所有条码 .then((response) => { - console.log(response) this.codeArray = response.data.list || []; this.total = response.data.total || 0; this.loading = false; @@ -889,7 +885,6 @@ export default { this.formData.unitIdFk = event.erpId; }, findMethod(query) { - console.log(query); this.fromOptions = []; let cQuery = { key: query, @@ -932,7 +927,6 @@ export default { } }, actionChange(item) { - console.log(item); this.curAction = this.getActionItem(item); this.locInChange(); this.findMethod();