hookehuyr

fix 视频审核状态判断优化

...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
3 <!-- FIXME: 反馈意见:需要更改图片 --> 3 <!-- FIXME: 反馈意见:需要更改图片 -->
4 <div v-if="mp && detail.showStatus" class="status"> 4 <div v-if="mp && detail.showStatus" class="status">
5 <van-image v-if="item.status === 'ENABLE'" round width="6rem" height="6rem" style="vertical-align: bottom;" :src="icon_enable" /> 5 <van-image v-if="item.status === 'ENABLE'" round width="6rem" height="6rem" style="vertical-align: bottom;" :src="icon_enable" />
6 - <van-image v-if="item.status === 'REFUSE'" round width="6rem" height="6rem" style="vertical-align: bottom;" :src="icon_refuse" /> 6 + <van-image v-if="item.status === 'DISABLE'" round width="6rem" height="6rem" style="vertical-align: bottom;" :src="icon_refuse" />
7 <van-image v-if="item.status === 'APPLY'" round width="6rem" height="6rem" style="vertical-align: bottom;" :src="icon_apply" /> 7 <van-image v-if="item.status === 'APPLY'" round width="6rem" height="6rem" style="vertical-align: bottom;" :src="icon_apply" />
8 </div> 8 </div>
9 <div class="video-div" :id="'mui-player-' + item.id"></div> 9 <div class="video-div" :id="'mui-player-' + item.id"></div>
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
38 </div> 38 </div>
39 <div v-else class="audit-module" style="margin-top: 1rem;"> 39 <div v-else class="audit-module" style="margin-top: 1rem;">
40 <div style="color: #222222; padding: 0px 1rem 0.5rem;">{{ item.kg_name }} | {{ item.localism_type }}</div> 40 <div style="color: #222222; padding: 0px 1rem 0.5rem;">{{ item.kg_name }} | {{ item.localism_type }}</div>
41 - <div v-if="item.status === 'REFUSE'" style="padding: 0 1rem 1rem 1rem; font-size: 0.85rem;"> 41 + <div v-if="item.status === 'DISABLE'" style="padding: 0 1rem 1rem 1rem; font-size: 0.85rem;">
42 <p style="color: #999999; margin-bottom: 0.25rem;">老师留言:</p> 42 <p style="color: #999999; margin-bottom: 0.25rem;">老师留言:</p>
43 <p>{{ item.check_note }}</p> 43 <p>{{ item.check_note }}</p>
44 </div> 44 </div>
......