linwenxin vor 5 Monaten
Ursprung
Commit
c603ae0bde

+ 4 - 4
src/packageWorkorder/pages/orderDetail.vue

@@ -610,7 +610,7 @@
         <view class="bottom-container">
           <view class="left" style="width: 100%" v-if="detail">
             <!-- 待抢单 -->
-            <block v-if="orderStatus_v == 'DQD' && !detail.isImportExcel">
+            <block v-if="orderStatus_v == 'DQD'">
               <u-button type="primary" text="抢单" @tap="qdOrder(detail)"></u-button>
             </block>
           </view>
@@ -621,7 +621,7 @@
                 plain
                 type="primary"
                 text="配件申请"
-                v-if="detail.orderType != 'INSTALL' && !detail.isImportExcel"
+                v-if="detail.orderType != 'INSTALL'"
                 @tap="toPartsApply()"
               ></u-button>
               <u-button
@@ -647,7 +647,7 @@
                 plain
                 type="primary"
                 text="配件申请"
-                v-if="detail.orderType != 'INSTALL' && !detail.isImportExcel"
+                v-if="detail.orderType != 'INSTALL'"
                 @tap="toPartsApply()"
               ></u-button>
               <u-button
@@ -658,7 +658,7 @@
                 v-if="detail.orderType == 'INSTALL'"
               ></u-button>
               <u-button plain type="primary" text="配件收费" @tap="toCharge('P')" v-else></u-button>
-              <u-button v-if="!detail.isImportExcel" type="primary" text="过程反馈" @tap="toFeedback()"></u-button>
+              <u-button type="primary" text="过程反馈" @tap="toFeedback()"></u-button>
             </block>
           </view>
         </view>

+ 8 - 19
src/packageWorkorder/pages/orderList.vue

@@ -126,12 +126,12 @@
             </view>
             <view class="item-btn" @tap.stop>
               <!-- 待接单 -->
-              <block v-if="orderStatus_v(item.orderStatus) == 'DJD' && !item.isImportExcel">
+              <block v-if="orderStatus_v(item.orderStatus) == 'DJD'">
                 <u-button
                   plain
                   type="primary"
                   text="配件申请"
-                  v-if="item.orderType != 'INSTALL' && !item.isImportExcel"
+                  v-if="item.orderType != 'INSTALL'"
                   @tap="toPartsApply(item.id)"
                 ></u-button>
                 <u-button
@@ -139,16 +139,10 @@
                   type="primary"
                   text="取消加急"
                   @tap="actionUrgent(item.id, false)"
-                  v-if="item.orderFlags && item.orderFlags.some(o => o.tag == 'JIA_JI') && !item.isImportExcel"
+                  v-if="item.orderFlags && item.orderFlags.some(o => o.tag == 'JIA_JI')"
                 ></u-button>
-                <u-button
-                  plain
-                  type="primary"
-                  text="加急"
-                  @tap="actionUrgent(item.id, true)"
-                  v-else-if="!item.isImportExcel"
-                ></u-button>
-                <u-button v-if="!item.isImportExcel" type="primary" text="接单" @tap="actionReceive(item)"></u-button>
+                <u-button plain type="primary" text="加急" @tap="actionUrgent(item.id, true)" v-else></u-button>
+                <u-button type="primary" text="接单" @tap="actionReceive(item)"></u-button>
               </block>
               <!-- 服务中 -->
               <block v-if="orderStatus_v(item.orderStatus) == 'FWZ' || orderStatus_v(item.orderStatus) == 'YCD'">
@@ -163,15 +157,10 @@
                   plain
                   type="primary"
                   text="配件申请"
-                  v-if="item.orderType != 'INSTALL' && !item.isImportExcel"
+                  v-if="item.orderType != 'INSTALL'"
                   @tap="toPartsApply(item.id)"
                 ></u-button>
-                <u-button
-                  v-if="!item.isImportExcel"
-                  type="primary"
-                  text="过程反馈"
-                  @tap="toFeedback(item.id)"
-                ></u-button>
+                <u-button type="primary" text="过程反馈" @tap="toFeedback(item.id)"></u-button>
               </block>
               <block
                 v-if="
@@ -190,7 +179,7 @@
                 <u-button plain type="primary" text="配件收费" @tap="toCharge(item.id, 'P')" v-else></u-button>
               </block>
               <!-- 待抢单 -->
-              <block v-if="orderStatus_v(item.orderStatus) == 'DQD' && !item.isImportExcel">
+              <block v-if="orderStatus_v(item.orderStatus) == 'DQD'">
                 <u-button type="primary" text="抢单" @tap="qdOrder(item)"></u-button>
               </block>
             </view>