fix:修复bug

This commit is contained in:
2026-02-27 15:26:17 +08:00
parent a1d4e16d83
commit e9655643d6
2 changed files with 27 additions and 28 deletions
+9 -9
View File
@@ -470,15 +470,15 @@ function getInviteInfo() {
});
// 获取支付相关配置
getDictFineList({
dictType: "app_config",
}).then((res) => {
res.data.map((item) => {
if (item.dictValue === "stripeKey") {
Config.stripeKey = item.remark;
}
});
});
// getDictFineList({
// dictType: "app_config",
// }).then((res) => {
// res.data.map((item) => {
// if (item.dictValue === "stripeKey") {
// Config.stripeKey = item.remark;
// }
// });
// });
}
}
</script>