Skip to content

Commit a9857f2

Browse files
committed
1. 修复创建支付应用,界面会报错的问题
2. 同步最新 SQL 文件
1 parent 6bc22ff commit a9857f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/pay/app/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ export default {
382382
* @param channelCode 渠道编码
383383
*/
384384
isChannelExists(channels, channelCode) {
385-
return channels.indexOf(channelCode) !== -1;
385+
return channels && channels.indexOf(channelCode) !== -1;
386386
}
387387
}
388388
}

0 commit comments

Comments
 (0)