|
@@ -7,7 +7,7 @@
|
|
|
{{item.assessTargetName}}
|
|
|
</view>
|
|
|
</view>
|
|
|
- <text :class="['header-r', item.result == 'PASS' ? 'green' : item.result == 'NOT_PASS' ? 'red' : item.result == 'NOT_WORK' ? 'yellow' : '']">{{item.resultDictValue}}</text>
|
|
|
+ <text :class="['header-r', item.result == 'PASS' ? 'green' : item.result == 'NOT_PASS' ? 'red' : item.result == 'NOT_WORK' ? 'yellow' : '']">{{item.resultDictValue ? item.resultDictValue : '状态:--'}}</text>
|
|
|
</view>
|
|
|
<view class="comment-con">
|
|
|
<u-row gutter="16" class="pic-con">
|
|
@@ -15,8 +15,7 @@
|
|
|
<u-image class="pic" width="100%" height="150upx" :src="pic.photoPath" @click="clickPic(index, ind)"></u-image>
|
|
|
</u-col>
|
|
|
</u-row>
|
|
|
- <view class="comment-main" v-if="item.comments">评论:{{item.comments}}</view>
|
|
|
- <view class="comment-main" v-else>评论:--</view>
|
|
|
+ <view class="comment-main">评论:{{item.comments ? item.comments : '--'}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view style="width: 100%;padding-top: 10vh;" v-if="list.length == 0">
|