Skip to content

Commit cdbf9e1

Browse files
committed
mall + pay:
1. 完善微信支付的 V3 支付回调、退款回调
1 parent 50e7ae2 commit cdbf9e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/views/pay/demo/index.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
</el-table-column>
4242
<el-table-column label="退款时间" align="center" prop="refundTime" width="180">
4343
<template v-slot="scope">
44-
<span>{{ parseTime(scope.row.refundTime) }}</span>
44+
<span v-if="scope.row.refundTime">{{ parseTime(scope.row.refundTime) }}</span>
45+
<span v-else-if="scope.row.payRefundId">退款中,等待退款结果</span>
4546
</template>
4647
</el-table-column>
4748
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">

0 commit comments

Comments
 (0)