|
@@ -1,9 +1,11 @@
|
|
|
<template>
|
|
|
<view class="details-main">
|
|
|
<view class="status-box">
|
|
|
- <img :src="statusData.img" alt="" style="width: 160rpx;height: 160rpx;margin-bottom: 36rpx;">
|
|
|
+ <img src="/static/serverImg/home/no.png" alt="" style="width: 160rpx;height: 160rpx;margin-bottom: 36rpx;" v-if="details.appStatus === '3'">
|
|
|
+ <img src="/static/serverImg/home/ok.png" alt="" style="width: 160rpx;height: 160rpx;margin-bottom: 36rpx;" v-if="['1','2'].includes(details.appStatus)">
|
|
|
+
|
|
|
<text class="status-text">{{ statusData.text }}</text>
|
|
|
- <text v-if="statusData.rejectReason" class="text2">{{ statusData.rejectReason }}</text>
|
|
|
+ <text v-if="statusData.rejectReason" class="text2">失败原因:{{ statusData.rejectReason }}</text>
|
|
|
</view>
|
|
|
<view class="status-main">
|
|
|
|
|
@@ -50,7 +52,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="status-btn" v-if="details.appStatus === 3" @click="startSubmit">重新提交</view>
|
|
|
+ <view class="status-btn" v-if="details.appStatus === '3'" @click="startSubmit">重新提交</view>
|
|
|
|
|
|
</view>
|
|
|
|