Commit 79d18b7b722288e971e9b5fb9adf9b15c438cc26

Authored by 谭毅彬
1 parent 0f73a615

页面问题修复

Signed-off-by: TanYibin <5491541@qq.com>
ant-design-vue-jeecg/src/views/system/inventory/InventoryMaterialSummaryList.vue
... ... @@ -113,7 +113,7 @@
113 113 </a-tab-pane>
114 114 </a-tabs>
115 115  
116   - <inventory-material-summary-modal ref="modalForm" @ok="modalFormOk"></inventory-material-summary-modal>
  116 + <!-- <inventory-material-summary-modal ref="modalForm" @ok="modalFormOk"></inventory-material-summary-modal> -->
117 117 </a-card>
118 118 </template>
119 119  
... ... @@ -213,8 +213,8 @@
213 213 methods: {
214 214 solutionZoneCode(value) {
215 215 var actions = []
216   - Object.keys(this.zoneList).some((key) => {
217   - if (this.zoneList[key].code == ('' + value)) {
  216 + Object.keys(this.zoneList).some(key => {
  217 + if (this.zoneList[key].code == '' + value) {
218 218 actions.push(this.zoneList[key].name)
219 219 return true
220 220 }
... ... @@ -255,9 +255,7 @@
255 255 },
256 256 initDictConfig(){
257 257 },
258   -
259 258 solutionCompany(value) {
260   - debugger
261 259 var actions = []
262 260 Object.keys(this.companyList).some((key) => {
263 261 if (this.companyList[key].code == ('' + value)) {
... ...