From 3c3a24dbd96dbd98df0a39c8d7814e7f9a750729 Mon Sep 17 00:00:00 2001 From: wangwenhua <12345678> Date: Thu, 18 Sep 2025 13:28:02 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=A6=E8=BE=86=E5=88=86=E7=B1=BB=EF=BC=8C?= =?UTF-8?q?=E8=BD=A6=E8=BE=86=E7=B1=BB=E5=9E=8B=E7=9A=84=E5=A2=9E=E5=88=A0?= =?UTF-8?q?=E6=94=B9=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/simulationScene/database/modules/infoData.vue | 2 +- src/views/simulationScene/database/zbsjk.vue | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/simulationScene/database/modules/infoData.vue b/src/views/simulationScene/database/modules/infoData.vue index da571b7..0134b93 100644 --- a/src/views/simulationScene/database/modules/infoData.vue +++ b/src/views/simulationScene/database/modules/infoData.vue @@ -575,7 +575,7 @@ export default { this.getpopulationList() this.getTableList() if(this.opType == 2 || this.opType == 3 || this.opType == 4) { - // this.getImgData() + this.getImgData() } } } diff --git a/src/views/simulationScene/database/zbsjk.vue b/src/views/simulationScene/database/zbsjk.vue index b3949df..359cc4f 100644 --- a/src/views/simulationScene/database/zbsjk.vue +++ b/src/views/simulationScene/database/zbsjk.vue @@ -301,8 +301,8 @@ const listGridInfo = { { dataIndex: 'action' }, ], Vehicle: [ - { title: '#DBID', dataIndex: 'ID', width: 80 }, - { title: '名称', dataIndex: 'vehicleName', width: 200, ellipsis: true }, + { title: '#DBID', dataIndex: 'id', width: 80 }, + { title: '名称', dataIndex: 'name', width: 200, ellipsis: true }, { title: '速度', dataIndex: 'vehicleSpreed' }, { title: '型号', dataIndex: 'vehicleType' }, { title: '运油能力', dataIndex: 'fuelAbility' }, @@ -598,8 +598,8 @@ export default { }, handleOpenEditZbModal(record) { this.AECModal.opType = 3 - this.AECModal.parentTableRowId = record.ID - console.log('======'+record.ID) + this.AECModal.parentTableRowId = record.id + console.log('======'+record.id) this.AECModal.title = '编辑 ' + record.name + ' 实体' this.AECModal.visible = true },