This commit is contained in:
2025-06-26 13:56:00 +08:00
parent 5147d79bff
commit dcd277835b
16 changed files with 190 additions and 9 deletions

View File

@@ -6,6 +6,7 @@ import XInput from "../../components/XInput.vue";
import SendMsg from "../../components/SendMsg.vue";
import Api from "../../api/index.js";
import {showToast, toPage, verifyForm} from "../../utils/uils.js";
import {onLoad} from "@dcloudio/uni-app";
const form = reactive({
wechat: null,
@@ -47,6 +48,11 @@ const success = async () => {
showToast(msg);
await toPage(`/pages/login/index?showWX=1`);
}
onLoad((options) => {
const {invite} = options;
form.invite = invite;
})
</script>
<template>