This commit is contained in:
曹辉 2023-05-09 15:57:41 +08:00
parent bfa7a12a83
commit ff9b70a06f

View File

@ -77,8 +77,6 @@
<template slot-scope="scope"> <template slot-scope="scope">
<el-button v-if="scope.row.trainingOrderStatus == 'WAIT_PAY'">待付款</el-button> <el-button v-if="scope.row.trainingOrderStatus == 'WAIT_PAY'">待付款</el-button>
<el-button type="primary" v-if="scope.row.trainingOrderStatus == 'PAY'">已付款</el-button> <el-button type="primary" v-if="scope.row.trainingOrderStatus == 'PAY'">已付款</el-button>
<el-button type="warning" v-if="scope.row.trainingOrderStatus == 'WAIT_REFUND'">退款中</el-button>
<el-button type="danger" v-if="scope.row.trainingOrderStatus == 'CANCEL'">已取消</el-button> <el-button type="danger" v-if="scope.row.trainingOrderStatus == 'CANCEL'">已取消</el-button>
<el-button type="success" v-if="scope.row.trainingOrderStatus == 'REFUNDED'">已退款</el-button> <el-button type="success" v-if="scope.row.trainingOrderStatus == 'REFUNDED'">已退款</el-button>
</template> </template>
@ -352,10 +350,6 @@ export default {
value: "PAY", value: "PAY",
label: "已付款" label: "已付款"
}, },
{
value: "WAIT_REFUND",
label: "退款中"
},
{ {
value: "REFUNDED", value: "REFUNDED",
label: "已退款" label: "已退款"