2
0

fix:充值界面修改参数

This commit is contained in:
zhongzm
2024-12-24 18:42:05 +08:00
parent ca36402f45
commit dd1ac7b66a

View File

@@ -13,7 +13,6 @@ interface RechargeOption {
amount: number;
displayAmount: string;
price: number;
selected?: boolean;
}
const emailAddress = ref('');
@@ -72,7 +71,7 @@ const handleBlur = () => {
}
};
onMounted(() => {
onMounted(async () => {
document.addEventListener('click', handleClickOutside);
});