This commit is contained in:
墨大叔 2024-09-11 17:55:10 +08:00
parent 8080f187c3
commit be8059065d
2 changed files with 12 additions and 2 deletions

View File

@ -42,3 +42,11 @@ export function delRefund(refundId) {
method: 'delete'
})
}
// 刷新退款订单结果
export function refreshRefund(refundId) {
return request({
url: '/ss/refund/refresh/' + refundId,
method: 'put'
})
}

View File

@ -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,