From 57c746aa1c682d96465b3fe5d2f95eeb1ed2c4c1 Mon Sep 17 00:00:00 2001 From: zhangherong <571457620@qq.com> Date: 星期三, 09 七月 2025 19:54:01 +0800 Subject: [PATCH] art: 技术状态鉴定-基础代码生成 --- src/views/eam/equipment/EamEquipmentLedger.vue | 60 +++++++++++++++++++++++++++++------------------------------- 1 files changed, 29 insertions(+), 31 deletions(-) diff --git a/src/views/eam/equipment/EamEquipmentLedger.vue b/src/views/eam/equipment/EamEquipmentLedger.vue index 13250c3..9730b5e 100644 --- a/src/views/eam/equipment/EamEquipmentLedger.vue +++ b/src/views/eam/equipment/EamEquipmentLedger.vue @@ -40,7 +40,8 @@ <a-col :xl="6" :lg="7" :md="8" :sm="24"> <a-form-item label="缁翠慨鐝粍"> <a-tree-select v-model="queryParam.repairDepartOrgCode" style="width: 100%" - :tree-data="repairDepartTreeData" + show-search :tree-data="repairDepartTreeData" treeNodeFilterProp="title" + :replaceFields="{key:'orgCode',value:'orgCode'}" searchPlaceholder="璇疯緭鍏ュ叧閿瓧鎼滅储" :dropdown-style="{ maxHeight: '400px', overflow: 'auto' }" placeholder="璇烽�夋嫨缁翠慨鐝粍" allow-clear tree-default-expand-all> </a-tree-select> @@ -91,19 +92,9 @@ style="font-weight: 600">{{ selectedRowKeys.length }}</a>椤� <a style="margin-left: 24px" @click="onSelectChange([])">娓呯┖</a> </div> - <a-table - ref="table" - size="middle" - bordered - rowKey="id" - :columns="columns" - :dataSource="dataSource" - :pagination="ipagination" - :loading="loading" - :scroll="{ x: 'max-content' }" - :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" - @change="handleTableChange" - > + <a-table ref="table" size="middle" bordered rowKey="id" :columns="columns" :dataSource="dataSource" + :pagination="ipagination" :loading="loading" :scroll="{ x: 'max-content' }" + :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" @change="handleTableChange"> <!--缁熶竴缂栫爜--> <template slot="equipmentCode" slot-scope="text"> <a href="#" @click="handleDetail(record)" style="display: inline-block;height: 100%">{{text}}</a> @@ -121,7 +112,12 @@ <!--鎿嶄綔绯荤粺--> <template slot="operationSystem" slot-scope="text"> - <a-switch checked-children="鏄�" un-checked-children="鍚�" :checked="+text" disabled/> + <a-switch checked-children="鏄�" un-checked-children="鍚�" :checked="Boolean(+text)" disabled/> + </template> + + <!--鎿嶄綔绯荤粺--> + <template slot="fireExtinguisher" slot-scope="text"> + <a-switch checked-children="鏄�" un-checked-children="鍚�" :checked="Boolean(+text)" disabled/> </template> <!--璧勪骇鍒堕�犲晢--> @@ -133,6 +129,7 @@ <a @click.stop="handleEdit(record)">缂栬緫</a> <a-divider type="vertical"/> + <a-dropdown> <a class="ant-dropdown-link">鏇村 <a-icon type="down"/></a> <a-menu slot="overlay"> @@ -183,7 +180,8 @@ <!--</a-tabs>--> <!-- 琛ㄥ崟鍖哄煙 --> - <eamEquipment-modal ref="modalForm" @ok="modalFormOk" :productionTreeData="productionTreeData"/> + <eamEquipment-modal ref="modalForm" @ok="modalFormOk" :productionTreeData="productionTreeData" + :repairDepartTreeData="repairDepartTreeData"/> <!--灞ュ巻寮圭獥--> <resume-drawer ref="resumeDrawerRef" :currentTableRowRecord="currentTableRowRecord"/> </a-card> @@ -291,7 +289,7 @@ { title: '缁翠慨鐝粍', align: 'center', - dataIndex: 'repairDepartOrgCode' + dataIndex: 'repairDepartOrgCode_dictText' }, { title: '瀹夊叏閰嶇疆', @@ -301,12 +299,13 @@ { title: '鍐峰嵈绯荤粺', align: 'center', - dataIndex: 'coolSystem' + dataIndex: 'coolSystem_dictText' }, { title: '鐏伀鍣�', align: 'center', - dataIndex: 'fireExtinguisher' + dataIndex: 'fireExtinguisher', + scopedSlots: { customRender: 'fireExtinguisher' } }, { title: '鐏伀鍣ㄦ湁鏁堟湡', @@ -337,7 +336,7 @@ { title: '閲嶉噺', align: 'center', - dataIndex: 'weightUnit' + dataIndex: 'equipmentWeight' }, { title: '閲嶉噺璁¢噺鍗曚綅', @@ -433,7 +432,7 @@ dataIndex: 'nextThirdMaintenance' }, { - title: '涓変繚鍛ㄦ湡', + title: '涓変繚鍛ㄦ湡锛堝勾锛�', align: 'center', dataIndex: 'thirdMaintenancePeriod' }, @@ -448,7 +447,7 @@ dataIndex: 'nextTechnologyCheck' }, { - title: '鎶�鏈壌瀹氬懆鏈�', + title: '鎶�鏈壌瀹氬懆鏈燂紙骞达級', align: 'center', dataIndex: 'technologyCheckPeriod' }, @@ -468,7 +467,8 @@ exportXlsUrl: 'eam/equipment/exportXls', importExcelUrl: 'eam/equipment/importExcel', getProductionTreeList: '/eam/BaseFactory/queryTreeList', - templateXlsDownloadUrl: '瀵煎叆妯℃澘/璁惧鍙拌处瀵煎叆妯℃澘_v1.1.xlsx' + repairDepartTreeList: '/eam/eamBaseRepairDepart/queryTreeList', + templateXlsDownloadUrl: '瀵煎叆妯℃澘/璁惧鍙拌处瀵煎叆妯℃澘.xls' }, currentTableRowRecord: {}, productionTreeData: [], @@ -482,6 +482,7 @@ }, created() { this.getProductionTreeDataByApi() + this.getRepairDepartTreeDataByApi() }, methods: { // 鑾峰彇浣跨敤閮ㄩ棬鏍� @@ -499,12 +500,12 @@ }) }, - // 鑾峰彇浣跨敤閮ㄩ棬鏍� - getProductionTreeDataByApi() { - getAction(this.url.getProductionTreeList) + // 鑾峰彇缁翠慨鐝粍鏍� + getRepairDepartTreeDataByApi() { + getAction(this.url.repairDepartTreeList) .then(res => { if (res.success) { - this.productionTreeData = res.result + this.repairDepartTreeData = res.result } else { this.$notification.warning({ message: '娑堟伅', @@ -531,7 +532,4 @@ } } } -</script> -<style scoped> - @import '~@assets/less/common.less'; -</style> \ No newline at end of file +</script> \ No newline at end of file -- Gitblit v1.9.3