From 79d18b7b722288e971e9b5fb9adf9b15c438cc26 Mon Sep 17 00:00:00 2001 From: TanYibin <5491541@qq.com> Date: Wed, 12 Apr 2023 13:59:09 +0800 Subject: [PATCH] 页面问题修复 --- ant-design-vue-jeecg/src/views/system/inventory/InventoryMaterialSummaryList.vue | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/ant-design-vue-jeecg/src/views/system/inventory/InventoryMaterialSummaryList.vue b/ant-design-vue-jeecg/src/views/system/inventory/InventoryMaterialSummaryList.vue index 686f474..ce2c1a4 100644 --- a/ant-design-vue-jeecg/src/views/system/inventory/InventoryMaterialSummaryList.vue +++ b/ant-design-vue-jeecg/src/views/system/inventory/InventoryMaterialSummaryList.vue @@ -113,7 +113,7 @@ </a-tab-pane> </a-tabs> - <inventory-material-summary-modal ref="modalForm" @ok="modalFormOk"></inventory-material-summary-modal> + <!-- <inventory-material-summary-modal ref="modalForm" @ok="modalFormOk"></inventory-material-summary-modal> --> </a-card> </template> @@ -213,8 +213,8 @@ methods: { solutionZoneCode(value) { var actions = [] - Object.keys(this.zoneList).some((key) => { - if (this.zoneList[key].code == ('' + value)) { + Object.keys(this.zoneList).some(key => { + if (this.zoneList[key].code == '' + value) { actions.push(this.zoneList[key].name) return true } @@ -255,9 +255,7 @@ }, initDictConfig(){ }, - solutionCompany(value) { - debugger var actions = [] Object.keys(this.companyList).some((key) => { if (this.companyList[key].code == ('' + value)) { -- libgit2 0.22.2