Browse Source

no message

linwenxin 2 tháng trước cách đây
mục cha
commit
9e652bc0d9
1 tập tin đã thay đổi với 5 bổ sung14 xóa
  1. 5 14
      src/packageWorkorder/pages/nandufysq.vue

+ 5 - 14
src/packageWorkorder/pages/nandufysq.vue

@@ -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() {