|
|
@@ -30,19 +30,19 @@
|
|
|
<div class="label">拍摄类型:</div>
|
|
|
<div class="value">{{ data.identifyType | filterType }}</div>
|
|
|
</div>
|
|
|
- <div class="item">
|
|
|
+ <div class="item" style="color: red">
|
|
|
<div class="label">识别结果:</div>
|
|
|
<div class="value">{{ data.unqualifiedReason }}</div>
|
|
|
</div>
|
|
|
<div class="item">
|
|
|
- <div class="label">业务员反馈AI识别不正确:{{ data.feedbackMessage }}</div>
|
|
|
+ <div class="label">业务员反馈AI识别不正确:{{ data.feedbackMessage || '未反馈' }}</div>
|
|
|
</div>
|
|
|
<div class="item">
|
|
|
<van-image
|
|
|
- width="100%"
|
|
|
- height="360"
|
|
|
+ height="400px"
|
|
|
:src="data.fileUrl"
|
|
|
- @click="previewImgs(data.fileUrl)" />
|
|
|
+ @click="previewImgs(data.fileUrl)"
|
|
|
+ fit="contain" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<p class="titleText">请主管了解情况后回复原因及解决方案</p>
|
|
|
@@ -50,7 +50,7 @@
|
|
|
<div class="result">
|
|
|
<div class="title">
|
|
|
<span style="color: red">*</span>
|
|
|
- <span>AI识别是否正确</span>
|
|
|
+ <span>AI识别结果</span>
|
|
|
</div>
|
|
|
<van-radio-group v-model="AIResult" :disabled="approveState == '1'">
|
|
|
<van-radio name="1">正确</van-radio>
|
|
|
@@ -95,9 +95,9 @@ export default {
|
|
|
AIResult: {
|
|
|
handler(val) {
|
|
|
if (val == 1) {
|
|
|
- this.causeTitle = '原因及解决方案';
|
|
|
+ this.causeTitle = '拜访照异常原因及解决方案';
|
|
|
} else {
|
|
|
- this.causeTitle = '反馈不准确原因';
|
|
|
+ this.causeTitle = '反馈AI识别结果有误';
|
|
|
}
|
|
|
},
|
|
|
immediate: true,
|