diff --git a/.env.production b/.env.production index 15436a12..1bb0a0fe 100644 --- a/.env.production +++ b/.env.production @@ -1,5 +1,8 @@ # 页面标题 -VUE_APP_TITLE = UDI管理系统VUE_APP_BASE_API = 'http://r.jiyuudims.cloud:5004/UDI_WMS_MC/' +VUE_APP_TITLE = UDI管理系统 + + + # 生产环境配置 @@ -10,8 +13,8 @@ ENV = 'production' #林纪裕cd # VUE_APP_BASE_API = 'http://101.43.77.55:9150/UDI_WMS_MC/' # VUE_APP_BASE_API = 'http://116.204.106.103:9150/UDI_WMS_MC/' - - +VUE_APP_BASE_API = 'http://r.jiyuudims.cloud:5004/UDI_WMS_MC/' +# VUE_APP_BASE_API = 'http://127.0.0.1:9150/UDI_WMS_MC/' # 测试服务器 # VUE_APP_BASE_API = 'http://192.168.0.66:9150/UDI_WMS_MC/' diff --git a/src/views/basic/busType/bussinessTypeModify.vue b/src/views/basic/busType/bussinessTypeModify.vue index bdd28aa2..68608c4d 100644 --- a/src/views/basic/busType/bussinessTypeModify.vue +++ b/src/views/basic/busType/bussinessTypeModify.vue @@ -554,7 +554,7 @@ - + @@ -576,7 +576,7 @@ - + @@ -598,7 +598,7 @@ - + @@ -620,7 +620,7 @@ - + @@ -642,7 +642,7 @@ - + @@ -663,7 +663,7 @@ - + @@ -685,7 +685,7 @@ - + @@ -706,7 +706,7 @@ - + diff --git a/src/views/inout/DialogCreateOrderSelect.vue b/src/views/inout/DialogCreateOrderSelect.vue index 3dbbba2f..a51fb2c9 100644 --- a/src/views/inout/DialogCreateOrderSelect.vue +++ b/src/views/inout/DialogCreateOrderSelect.vue @@ -67,6 +67,7 @@ @select-all="handleAll" :header-cell-class-name="leftheaderStyle" @selection-change="handleSelectionChange" + @current-change="getOrderDetails" v-loading="loading" :data="list" style="width: 100%" @@ -129,30 +130,30 @@ - - - - - - - - + + + + + + + + - - - - - - + + + + + + - - - - - - - - + + + + + + + + + + + + + 单据 {{ currentRow.billNo }}-单据详情 + + + + + + + + + 重置 + + 查询 + + + + + + + + + + + + + + + + + + + + + + @@ -393,6 +483,7 @@ export default { }, //多行勾选 handleSelectionChange(val) { + let checkboxs = JSON.parse(JSON.stringify(val)); this.multipleSelection = checkboxs.map((item) => { return item.billNo; @@ -400,22 +491,25 @@ export default { let hebin = [...this.checkPreInOrders, ...this.multipleSelection]; let boxarry = Array.from(new Set(hebin)); this.selectbox = boxarry; + + }, //全选 handleAll(selection) { - if(selection.length==0){ - this.$refs.multipleTable.clearSelection() + if (selection.length == 0) { + this.$refs.multipleTable.clearSelection() } }, // 获取单据 业务详情、扫码详情、扫码明细 - getOrderDetails() { + getOrderDetails(val) { + this.currentRow = val; this.bizQuery.page = 1; this.codeQuery.page = 1; this.resultQuery.page = 1; this.getBizDetailList(); - this.getCodeDetailList(); - this.getResultDetailList(); + // this.getCodeDetailList(); + // this.getResultDetailList(); }, //获取订单列表 getList() { diff --git a/vue.config.js b/vue.config.js index ae993d86..83259da2 100644 --- a/vue.config.js +++ b/vue.config.js @@ -35,7 +35,7 @@ module.exports = { proxy: { // detail: https://cli.vuejs.org/config/#devserver-proxy [process.env.VUE_APP_BASE_API]: { - target: `http://192.168.0.66:9160/UDI_SPMS_SERVER/`, + target: `http://127.0.0.1:9991`, changeOrigin: true, pathRewrite: { ["^" + process.env.VUE_APP_BASE_API]: "",