From a8caacfc1a0006c04756754d942d1145a8ad60f4 Mon Sep 17 00:00:00 2001
From: kun <1422840143@qq.com>
Date: Thu, 16 May 2024 20:27:50 +0800
Subject: [PATCH] =?UTF-8?q?fix:=20BUG=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../projectEnd/specialOperations/fireWork/safeMesure.vue | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/pages/projectEnd/specialOperations/fireWork/safeMesure.vue b/pages/projectEnd/specialOperations/fireWork/safeMesure.vue
index 64c2607d..eb6819e1 100644
--- a/pages/projectEnd/specialOperations/fireWork/safeMesure.vue
+++ b/pages/projectEnd/specialOperations/fireWork/safeMesure.vue
@@ -11,7 +11,7 @@
-
+
{{item.name}}
@@ -80,15 +80,17 @@
},
methods:{
getWork(){
+ let that = this;
this.sendRequest({
url:'xmgl/xzSpecialOperationFireSafety/queryById',
method:'get',
data:{id:this.detailId},
success:res=>{
uni.hideLoading()
- this.detailData = res.result
+ that.detailData = res.result
+ that.detailData.safeMeasure = JSON.parse(that.detailData.safeMeasure)
//otherSafeMeasure
- console.log("=====================",this.detailData)
+ console.log("=====================",that.detailData)
}
})
},