增加网络波动加载中,增加会员信息扫码充值

This commit is contained in:
wwz
2025-03-26 17:58:52 +08:00
parent 3a6fa55234
commit 98ce8b5544
18 changed files with 1018 additions and 128 deletions

View File

@@ -113,6 +113,9 @@
},
});
// 定义事件发射器
const emits = defineEmits(['emitsmemberOpen']);
// 定义要触发的事件
const formInfo = reactive({
@@ -304,7 +307,6 @@
const registerMember = async () => {
if (formInfo.nickName == "" || formInfo.nickName == null) {
uni.showToast({
title: '请输入会员昵称',
@@ -345,9 +347,10 @@
icon: 'none'
})
// 定义自定义事件
setTimeout(() => {
uni.navigateBack()
}, 1500)
// setTimeout(() => {
// uni.navigateBack()
// }, 1500)
emits('emitsmemberOpen');
}
</script>