|
@@ -47,9 +47,11 @@
|
|
<!-- 7,回访 -->
|
|
<!-- 7,回访 -->
|
|
<processFeedback v-if="~btnRestrict.indexOf(7)" resultCodeName="回访" resultCode="回访" :orderInfo="orderInfo"
|
|
<processFeedback v-if="~btnRestrict.indexOf(7)" resultCodeName="回访" resultCode="回访" :orderInfo="orderInfo"
|
|
:orderType="orderType" />
|
|
:orderType="orderType" />
|
|
- <!-- 工单驳回 -->
|
|
|
|
- <orderReject v-if="~btnRestrict.indexOf(9)" :orderInfo="orderInfo" :orderType="orderType" />
|
|
|
|
<!-- 8,新建工单 -->
|
|
<!-- 8,新建工单 -->
|
|
|
|
+ <!-- 9,工单驳回 -->
|
|
|
|
+ <orderReject v-if="~btnRestrict.indexOf(9)" :orderInfo="orderInfo" :orderType="orderType" />
|
|
|
|
+ <!-- 10,激活工单 -->
|
|
|
|
+ <activateOrder v-if="~btnRestrict.indexOf(10)" :orderInfo="orderInfo" :orderType="orderType" />
|
|
</div>
|
|
</div>
|
|
<div style="box-sizing: border-box; padding: 10px 10px 0" v-else>
|
|
<div style="box-sizing: border-box; padding: 10px 10px 0" v-else>
|
|
<!-- 关闭 -->
|
|
<!-- 关闭 -->
|
|
@@ -79,6 +81,7 @@ import abnormal from './buttons/abnormal.vue'
|
|
import processFeedback from './buttons/processFeedback.vue'
|
|
import processFeedback from './buttons/processFeedback.vue'
|
|
import cancelOrder from './buttons/cancelOrder.vue'
|
|
import cancelOrder from './buttons/cancelOrder.vue'
|
|
import orderReject from './buttons/orderReject.vue'
|
|
import orderReject from './buttons/orderReject.vue'
|
|
|
|
+import activateOrder from './buttons/activateOrder.vue'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
@@ -90,7 +93,8 @@ export default {
|
|
abnormal,
|
|
abnormal,
|
|
processFeedback,
|
|
processFeedback,
|
|
cancelOrder,
|
|
cancelOrder,
|
|
- orderReject
|
|
|
|
|
|
+ orderReject,
|
|
|
|
+ activateOrder
|
|
},
|
|
},
|
|
mixins: [
|
|
mixins: [
|
|
workOrderLogic,
|
|
workOrderLogic,
|