|
@@ -104,7 +104,7 @@
|
|
|
<view class="common-title">
|
|
|
<text>审核信息</text>
|
|
|
<text style="color: orange">
|
|
|
- {{ returnText(oldData.workerInvolveApplyItems[0]) }}
|
|
|
+ {{ returnText(oldData) }}
|
|
|
</text>
|
|
|
</view>
|
|
|
<view>
|
|
@@ -114,22 +114,15 @@
|
|
|
</view>
|
|
|
<view class="row">
|
|
|
<view class="label">审批费用</view>
|
|
|
- <view class="value">{{
|
|
|
- oldData.workerInvolveApplyItems[0].maintenancePricePass ||
|
|
|
- oldData.workerInvolveApplyItems[0].websitMaintenancePricePass
|
|
|
- }}</view>
|
|
|
+ <view class="value">{{ oldData.maintenancePricePass || oldData.websitMaintenancePricePass }}</view>
|
|
|
</view>
|
|
|
<view class="row">
|
|
|
<view class="label">审批时间</view>
|
|
|
- <view class="value">{{
|
|
|
- oldData.workerInvolveApplyItems[0].auditTime || oldData.workerInvolveApplyItems[0].websitAuditTime
|
|
|
- }}</view>
|
|
|
+ <view class="value">{{ oldData.auditTime || oldData.websitAuditTime }}</view>
|
|
|
</view>
|
|
|
<view class="row">
|
|
|
<view class="label">审批备注</view>
|
|
|
- <view class="value"
|
|
|
- >{{ oldData.workerInvolveApplyItems[0].remark || oldData.workerInvolveApplyItems[0].websitRemark }}
|
|
|
- </view>
|
|
|
+ <view class="value">{{ oldData.remark || oldData.websitRemark }} </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -182,9 +175,7 @@ export default {
|
|
|
|
|
|
methods: {
|
|
|
returnText(data) {
|
|
|
- return { 1: '待网点审核', 2: '驳回重申', 3: '待中心审核', 4: '驳回禁止申诉', 5: '通过审核' }[
|
|
|
- data.status || data.websitStatus
|
|
|
- ]
|
|
|
+ return { 1: '待网点审核', 2: '驳回重申', 3: '待中心审核', 4: '驳回禁止申诉', 5: '通过审核' }[data.status]
|
|
|
},
|
|
|
// 获取详情
|
|
|
getOrderDetail() {
|