更新
This commit is contained in:
parent
8080f187c3
commit
be8059065d
|
@ -42,3 +42,11 @@ export function delRefund(refundId) {
|
|||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 刷新退款订单结果
|
||||
export function refreshRefund(refundId) {
|
||||
return request({
|
||||
url: '/ss/refund/refresh/' + refundId,
|
||||
method: 'put'
|
||||
})
|
||||
}
|
||||
|
|
|
@ -148,7 +148,9 @@
|
|||
<dict-tag :value="d.row.status" :options="dict.type.sm_transaction_bill_status"/>
|
||||
</template>
|
||||
<template v-else-if="column.key === 'isUsing'">
|
||||
<el-tag :type="d.row.isUsing ? 'success' : 'danger'">{{d.row.isUsing ? '是' : '否'}}</el-tag>
|
||||
<el-tag type="warning" v-if="d.row.isUsing">使用中</el-tag>
|
||||
<el-tag type="success" v-else-if="d.row.isFinished">已结束</el-tag>
|
||||
<el-tag type="info" v-else>未开始</el-tag>
|
||||
</template>
|
||||
<template v-else-if="['money', 'serviceCharge', 'channelCost', 'arrivalAmount'].includes(column.key)">
|
||||
{{d.row[column.key] | money | defaultValue}} 元
|
||||
|
@ -285,7 +287,7 @@ export default {
|
|||
{key: 'suitFeeMode', visible: true, label: '收费模式', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||||
{key: 'suitFeeType', visible: true, label: '收费方式', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||||
{key: 'status', visible: true, label: '交易状态', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||||
{key: 'isUsing', visible: true, label: '使用中', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||||
{key: 'isUsing', visible: true, label: '使用状态', minWidth: null, sortable: false, overflow: false, align: 'center', width: null},
|
||||
],
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
|
|
Loading…
Reference in New Issue
Block a user