From fffd807c69b56990a5eb89cf894a12abc1ef637a Mon Sep 17 00:00:00 2001 From: jihongshun <1151753686@qq.com> Date: 星期四, 17 七月 2025 15:06:54 +0800 Subject: [PATCH] bugfix --- src/views/system/shootPoint/components/shootPointDialog.vue | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/src/views/system/shootPoint/components/shootPointDialog.vue b/src/views/system/shootPoint/components/shootPointDialog.vue index 3f2f6a8..cf11a51 100644 --- a/src/views/system/shootPoint/components/shootPointDialog.vue +++ b/src/views/system/shootPoint/components/shootPointDialog.vue @@ -96,10 +96,12 @@ } }, mounted(){ + console.log(this.templateId) if(this.templateId) { //棰勮閫昏緫 getPointInfo(this.templateId).then(res=>{ if(res.code == 200 ) { + console.log(res.data) this.getRowData(res.data) let drawArr = this.convertToTree(res.data.ardListWayPointsLS) setTimeout(() => { @@ -450,7 +452,12 @@ this.showMap =false this.$nextTick(()=>{ // this.towerUrl = row.modelRoute - this.towerUrl = row.modelRoute + + if(this.templateId){ + this.towerUrl = row.ardTowerModel.modelRoute + }else { + this.towerUrl = row.modelRoute + } this.showMap = true }) }, -- Gitblit v1.9.3