Skip to content

Commit a2f9e53

Browse files
committed
mall + pay:
1. bar 扫码支付成功后,额外返回 notify 2. notify 在支付回调时,增加幂等处理
1 parent f9ed70d commit a2f9e53

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/views/pay/cashier/index.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<el-descriptions title="选择微信支付" style="margin-top: 20px;" />
2828
<div class="pay-channel-container">
2929
<div class="box" v-for="channel in channels" v-if="channel.code.indexOf('wx_') === 0" :key="channel.code">
30-
<img :src="icons[channel.code]">
30+
<img :src="channel.icon">
3131
<div class="title">{{ channel.name }}</div>
3232
</div>
3333
</div>
@@ -36,7 +36,7 @@
3636
<div class="pay-channel-container">
3737
<div class="box" v-for="channel in channels" :key="channel.code"
3838
v-if="channel.code.indexOf('alipay_') === -1 && channel.code.indexOf('wx_') === -1">
39-
<img :src="icons[channel.code]">
39+
<img :src="channel.icon">
4040
<div class="title">{{ channel.name }}</div>
4141
</div>
4242
</div>
@@ -132,7 +132,7 @@ export default {
132132
code: "wx_lite"
133133
}, {
134134
name: '微信 App 支付',
135-
icon: require("@/assets/images/pay/icon/wx_lite.svg"),
135+
icon: require("@/assets/images/pay/icon/wx_app.svg"),
136136
code: "wx_app"
137137
}, {
138138
name: '模拟支付',

0 commit comments

Comments
 (0)