This commit is contained in:
Jason
2023-04-03 17:08:31 +08:00
parent c153122e99
commit acd1f22dfc
162 changed files with 163 additions and 160 deletions

View File

@@ -94,7 +94,7 @@
<el-table-column label="操作" width="120" fixed="right">
<template #default="{ row }">
<el-button
v-if="row.payStatus == 1"
v-if="row.payStatus == 1 && row.isRefund == 0"
v-perms="['finance:recharger:refund']"
type="primary"
link
@@ -102,6 +102,9 @@
>
退款
</el-button>
<el-button v-if="row.payStatus == 1 && row.isRefund == 1" link>
{{ row.refundStatusMsg }}
</el-button>
</template>
</el-table-column>
</el-table>