1. 修复创建支付应用,界面会报错的问题

2. 同步最新 SQL 文件
This commit is contained in:
YunaiV
2023-07-24 12:51:14 +08:00
parent 3f988a890d
commit 00e1c30f57
7 changed files with 62 additions and 2430 deletions

View File

@ -382,7 +382,7 @@ export default {
* @param channelCode 渠道编码
*/
isChannelExists(channels, channelCode) {
return channels.indexOf(channelCode) !== -1;
return channels && channels.indexOf(channelCode) !== -1;
}
}
}