From d10a41ef8c2a031bd83989d76a191e151db29fc1 Mon Sep 17 00:00:00 2001 From: jiang Date: Tue, 27 Jan 2026 17:35:16 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A3=85=E5=A4=87=E9=85=8D=E7=BD=AE=E7=8E=87?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/EquipmentLedger/details.vue | 14 +- .../entryApply/components/AddEquip.vue | 2450 ++++++++--------- src/views/system/equipment/index.vue | 41 +- 3 files changed, 1247 insertions(+), 1258 deletions(-) diff --git a/src/views/EquipmentLedger/details.vue b/src/views/EquipmentLedger/details.vue index 95a6b7ba..704b7e34 100644 --- a/src/views/EquipmentLedger/details.vue +++ b/src/views/EquipmentLedger/details.vue @@ -366,14 +366,12 @@ export default { //3.装备小类,,6.生产厂家,7.出厂日期,8.特征属性 // 单行写法(用\n) this.dialogRow = - `装备名称:${row.name}\r\n` + - `装备编码:${row.code}\r\n` + - `规格型号:${row.specificationModel}\r\n` + - `产权单位:${row.propertyUnit}\r\n` + - `装备小类:${row.subCategory}\r\n` + - `生产厂家:${row.manufacturer}\r\n` + - `出厂日期:${row.productionDate}\r\n` + - `特征属性:{${property}}` + `${row.name}\r\n` + + `${row.code}\r\n` + + `${row.specificationModel}\r\n` + + `${row.propertyUnit}\r\n` + + `${row.manufacturer}\r\n` + + `${row.productionDate}\r\n` this.$nextTick(() => { this.$refs.qr3?.refreshQrcode() }) diff --git a/src/views/stockManagement/entryApply/components/AddEquip.vue b/src/views/stockManagement/entryApply/components/AddEquip.vue index eb3e6400..1fba9ff1 100644 --- a/src/views/stockManagement/entryApply/components/AddEquip.vue +++ b/src/views/stockManagement/entryApply/components/AddEquip.vue @@ -1,976 +1,984 @@ - + + - +} + - +::v-deep.el-tag.el-tag--success { + background-color: rgba(52, 226, 199, 0.1); + border-color: #34E2C7; + color: #34E2C7; +} + diff --git a/src/views/system/equipment/index.vue b/src/views/system/equipment/index.vue index b7181e6d..34372f5b 100644 --- a/src/views/system/equipment/index.vue +++ b/src/views/system/equipment/index.vue @@ -380,33 +380,29 @@ - @@ -904,9 +900,9 @@ export default { // 新增:筛选表单数据 searchForm: { own: { - equipmentName: '', - equipmentType: '', - specModel: '' + name: '', + type: '', + specificationModel: '' }, sharing: { equipmentName: '', @@ -1387,15 +1383,16 @@ export default { async handleInstanceTableOwn() { // 重置筛选条件和选中状态 this.searchForm.own = { - equipmentName: '', - equipmentType: '', - specModel: '' + name: '', + type: '', + specificationModel: '' } this.selectedOwnRows = [] // 初始化分页 this.tableData.own.pageNum = 1 // 加载数据并打开弹窗 await this.loadOwnEquipmentData() + await this.getCategoryList() this.ownOpen = true }, async loadOwnEquipmentData() { @@ -1427,9 +1424,9 @@ export default { }, resetOwnSearch() { this.searchForm.own = { - equipmentName: '', - equipmentType: '', - specModel: '' + name: '', + type: '', + specificationModel: '' } this.tableData.own.pageNum = 1 this.loadOwnEquipmentData()