This commit is contained in:
曹辉 2023-04-12 09:27:14 +08:00
parent eada9b820d
commit 4734a85ba9
2 changed files with 3 additions and 0 deletions

View File

@ -61,6 +61,7 @@
<el-button v-if="scope.row.orderStatus == 'WAIT_PAY'">待付款</el-button>
<el-button type="primary" v-if="scope.row.orderStatus == 'PAY'">已付款</el-button>
<el-button type="primary" v-if="scope.row.orderStatus == 'WAIT_DISPATCH'">待派单</el-button>
<el-button type="primary" v-if="scope.row.orderStatus == 'WAIT_RECEIVE'">待接单</el-button>
<el-button type="primary" v-if="scope.row.orderStatus == 'NOT_FINISH'">未完成</el-button>
<el-button type="primary" v-if="scope.row.orderStatus == 'COMPLETE'">待评价</el-button>
<el-button type="success" v-if="scope.row.orderStatus == 'EVALUATED'">服务完成</el-button>

View File

@ -203,6 +203,8 @@ export default {
return "待派单";
case "NOT_FINISH":
return "未完成";
case "WAIT_RECEIVE":
return "待接单"
case "COMPLETE":
return "待评价";
case "EVALUATED":