|
@@ -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>
|