Commit d7d4dbeb authored by xinzhedeai's avatar xinzhedeai

Merge branch 'gaoqucodecheck' of...

Merge branch 'gaoqucodecheck' of http://h.gemho.cn:7099/zhaojunbao/gaoquyingjih5-asd into gaoqucodecheck
合并from 杨磊
parents 8b99a8c4 cc003ba0
......@@ -49,6 +49,7 @@
v-for="(imgItem, subIndex) in formData.photos"
:src="imgItem"
alt=""
@click="showImage(formData.photos, subIndex)"
style="width: 1.4rem; height: 1.4rem; margin-right: 0.2rem"
/>
</div>
......
var VUE = null
window.addEventListener('load', function () {
// 在原有Vue实例中添加
VUE = new Vue({
el: '#app',
data() {
return {
formData: {
},
}
},
computed: {},
mounted() {
this.detail()
},
methods: {
detail() {
vant.Toast.loading({
message: '正在加载...',
forbidClick: true,
loadingType: 'spinner',
});
http2.post({
serviceId: API_KEY_MAP["no-page"]['id'],
interfacePublicKey: API_KEY_MAP["no-page"]["publicKey"],
interfacePrivateKey: API_KEY_MAP["no-page"]["privateKey"],
reqParams: {
sign: 19,
"feedbackId": gemhoUtil.getParameter('id'),
}
}, (res) => {
if (!res) { // 中台返回为undefined 重新请求
vant.Toast.clear()
setTimeout(() => {
this.detail()
}, 0);
return
}
if (res) {
console.log('接口回调数据=建议详情', JSON.parse(res))
setTimeout(() => {
this.$nextTick(() => {
vant.Toast.clear()
})
}, 0);
var result = JSON.parse(res)
this.formData = result.data
}
})
},
},
})
// 在原有Vue实例中添加
VUE = new Vue({
el: '#app',
data() {
return {
formData: {
},
}
},
computed: {},
mounted() {
this.detail()
},
methods: {
detail() {
vant.Toast.loading({
message: '正在加载...',
forbidClick: true,
loadingType: 'spinner',
});
http2.post({
serviceId: API_KEY_MAP["no-page"]['id'],
interfacePublicKey: API_KEY_MAP["no-page"]["publicKey"],
interfacePrivateKey: API_KEY_MAP["no-page"]["privateKey"],
reqParams: {
sign: 19,
"feedbackId": gemhoUtil.getParameter('id'),
}
}, (res) => {
if (!res) { // 中台返回为undefined 重新请求
vant.Toast.clear()
setTimeout(() => {
this.detail()
}, 0);
return
}
if (res) {
console.log('接口回调数据=建议详情', JSON.parse(res))
setTimeout(() => {
this.$nextTick(() => {
vant.Toast.clear()
})
}, 0);
var result = JSON.parse(res)
this.formData = result.data
}
})
},
showImage(list, index) {
vant.ImagePreview({
images: list,
startPosition: index,
closeable: true,
});
},
},
})
})
......@@ -63,7 +63,7 @@
</van-tabs>
<!-- 隐患列表 -->
<van-list>
<van-cell v-for="item in filteredHazards" :key="item.id" >
<van-cell v-for="item in filteredHazards" :key="item.id" @click="viewDetail(item,'YH_XQ')">
<div style="width: 100%;">
<!-- 第一行:隐患描述 -->
<div style="
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment