|
|
@@ -18,7 +18,7 @@
|
|
|
</template>
|
|
|
</van-nav-bar>
|
|
|
<!-- 主体内容-->
|
|
|
- <div class="container">
|
|
|
+ <div class="container" v-if="list">
|
|
|
<div class="lineGrey"></div>
|
|
|
<div class="card mt10">
|
|
|
<div class="title">
|
|
|
@@ -140,11 +140,11 @@
|
|
|
</van-cell>
|
|
|
</van-cell-group>
|
|
|
<!-- 业务员拜访记录回显部主管反馈内容 -->
|
|
|
- <template v-if="list.sfaPhotoApproveList.length">
|
|
|
+ <template v-if="list.sfaPhotoApproveList && list.sfaPhotoApproveList.length">
|
|
|
<div
|
|
|
class="sfaPhotoApproveList"
|
|
|
v-for="(item, index) in list.sfaPhotoApproveList"
|
|
|
- :key="index">
|
|
|
+ :key="item.identifyType">
|
|
|
<!-- 1:店招内容识别,2:门店代码识别,3:调色机识别,4:更换店招 -->
|
|
|
<template v-if="item.identifyType == 1 || item.identifyType == 3">
|
|
|
<div style="padding: 10px 16px; font-size: 16px; font-weight: bold">
|
|
|
@@ -153,7 +153,7 @@
|
|
|
<van-cell-group>
|
|
|
<van-cell> AI识别结果: {{ item.resultCorrect == 1 ? '正确' : '不正确' }} </van-cell>
|
|
|
<van-cell>
|
|
|
- 拜访照异常原因及解决方案: {{ item.feedbackError || reasonsSolutions }}
|
|
|
+ 拜访照异常原因及解决方案: {{ item.feedbackError || item.reasonsSolutions }}
|
|
|
</van-cell>
|
|
|
</van-cell-group>
|
|
|
</template>
|
|
|
@@ -217,7 +217,7 @@ export default {
|
|
|
insert: true,
|
|
|
remarkShow: false,
|
|
|
ListHistoryList: [],
|
|
|
- list: '',
|
|
|
+ list: null,
|
|
|
};
|
|
|
},
|
|
|
created() {
|