This commit is contained in:
shijingjing
2022-03-28 17:51:15 +08:00
parent 1ff7f4dc99
commit 65ec3c2d5b
2 changed files with 14 additions and 4 deletions

View File

@@ -58,7 +58,7 @@
</div>
<!-- 待审核 -->
<div class="to-check" v-if="data.visitUserName" >
<div class="to-check" v-if="data.visitUserName">
<div class="title">
<span>走访核实</span>
<span style="color:#FF8822" v-if="data.status == 1">疑似风险</span>
@@ -124,9 +124,14 @@
</div>
<div style="height: 56px"></div>
<div class="btn" @click="toResult" v-if="(checkType == 1 || checkType == 2) && tabIndex==0 ">
<span v-if="data.status==0 || data.status==1">走访核实</span>
<span v-else>处理结果</span>
<div class="btn" @click="toResult" v-if="checkType == 1 && tabIndex==0 && !data.visitUserName">
<span v-if="(data.status==0 || data.status==1)">走访核实</span>
<!-- <span v-if="(data.status==2 || data.status==3)">处理结果</span> -->
</div>
<div class="btn" @click="toResult" v-if="checkType == 2 && tabIndex==0" !data.auditUserName>
<!-- <span v-if="(data.status==0 || data.status==1)">走访核实</span> -->
<span v-if="(data.status==2 || data.status==3)">处理结果</span>
</div>
</div>
@@ -152,7 +157,11 @@ export default {
this.tabIndex = o.tabIndex;
this.getDetail()
this.getCheckType()
uni.$on('update',()=>{
this.getDetail()
})
})
},
methods: {
previewImage(images, img) {