From c6d0df36df50b80e4899abefa7b6f675b4b76366 Mon Sep 17 00:00:00 2001 From: lixiangyu <lixiangyu@xalxzn.com> Date: 星期五, 22 八月 2025 22:37:26 +0800 Subject: [PATCH] style:修复 CuttingInventoryList组件中的表格标签闭合 --- src/views/mdc/base/EquipmentList.vue | 29 +++++++++++------------------ 1 files changed, 11 insertions(+), 18 deletions(-) diff --git a/src/views/mdc/base/EquipmentList.vue b/src/views/mdc/base/EquipmentList.vue index 6cc55f5..d48afe9 100644 --- a/src/views/mdc/base/EquipmentList.vue +++ b/src/views/mdc/base/EquipmentList.vue @@ -27,20 +27,6 @@ </a-col> <a-col :md="4" :sm="4"> - <a-form-item label="璁惧绾у埆"> - <j-dict-select-tag placeholder="璇烽�夋嫨璁惧绾у埆" dictCode="device_level" v-model="queryParam.deviceLevel" - allow-clear/> - </a-form-item> - </a-col> - - <a-col :md="4" :sm="4"> - <a-form-item label="璁惧绉嶇被"> - <j-dict-select-tag placeholder="璇烽�夋嫨璁惧绉嶇被" dictCode="device_category" v-model="queryParam.deviceCategory" - allow-clear/> - </a-form-item> - </a-col> - - <a-col :md="4" :sm="4"> <a-button type="primary" @click="searchQuery" icon="search">鏌ヨ</a-button> <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">閲嶇疆</a-button> </a-col> @@ -121,7 +107,7 @@ <script> import UserModal from './modules/EquipmentList/UserModal' import { JeecgListMixin } from '@/mixins/JeecgListMixin' - import { queryProductionTreeList } from '@/api/api' + import { queryFactoryTreeList } from '@/api/api' import { mapActions } from 'vuex' export default { @@ -266,9 +252,16 @@ { title: '璁惧鍚嶇О', align: 'center', - width: 200, - dataIndex: 'equipmentName' + dataIndex: 'equipmentName', + width: 200 + // sorter: true }, + // { + // title: '瀹夎浣嶇疆', + // align: 'center', + // width: 200, + // dataIndex: 'equipmentAddress' + // }, { title: '杞﹂棿', align: 'center', @@ -413,7 +406,7 @@ * 璋冪敤鎺ュ彛鑾峰彇鏌ヨ鍖哄煙杞﹂棿鏍戝垪琛� */ getWorkshopListByApi() { - queryProductionTreeList().then(res => { + queryFactoryTreeList().then(res => { if (res.success) { this.workshopTreeData = res.result this.treeDefaultExpandedKeys = [...res.result].map(item => item.key) -- Gitblit v1.9.3