Browse Source

订单取消

master
yangpeilai 2 weeks ago
parent
commit
a192f50131
1 changed files with 9 additions and 9 deletions
  1. 9
    9
      src/views/onlineBusinessHall/orderManagement/index.vue

+ 9
- 9
src/views/onlineBusinessHall/orderManagement/index.vue View File

@@ -208,15 +208,15 @@
<el-button
style="margin: 10px 5px"
v-if="
scope.row.orderStep == 'ORDER_INIT' &&
scope.row.orderStep == 'CUSTOMER_UPLOAD' &&
scope.row.orderStep == 'VEHICLE_UPLOAD' &&
scope.row.orderStep == 'ORDER_PAID' &&
scope.row.orderStep == 'ORDER_SIGNED' &&
scope.row.orderStep == 'WAITING_AUDIT' &&
scope.row.orderStep == 'AUDIT_FAIL' &&
scope.row.orderStep == 'WAITING_SEND' &&
scope.row.orderStatus == 'NORMAL' &&
(scope.row.orderStep === 'ORDER_INIT' ||
scope.row.orderStep === 'CUSTOMER_UPLOAD' ||
scope.row.orderStep === 'VEHICLE_UPLOAD' ||
scope.row.orderStep === 'ORDER_PAID' ||
scope.row.orderStep === 'ORDER_SIGNED' ||
scope.row.orderStep === 'WAITING_AUDIT' ||
scope.row.orderStep === 'AUDIT_FAIL' ||
scope.row.orderStep === 'WAITING_SEND') &&
scope.row.orderStatus === 'NORMAL' &&
IsPermission(route, 'CANCEL_ORDER_LIST') &&
channelOperationAuthority(scope.row.agencyId)
"

Loading…
Cancel
Save