This commit is contained in:
2025-05-29 18:28:37 +08:00
parent 3b57b86afe
commit 690a1d04a8
2 changed files with 8 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ import {reactive} from 'vue';
import VerificationCode from "../../components/VerificationCode/index.vue"; import VerificationCode from "../../components/VerificationCode/index.vue";
import Api from "../../api/index.js"; import Api from "../../api/index.js";
import {Message} from "@arco-design/web-vue"; import {Message} from "@arco-design/web-vue";
import {toPath} from "../../utils/index.js";
const from = reactive({ const from = reactive({
wechat: null, wechat: null,
@@ -47,6 +48,12 @@ const register = async () => {
</div> </div>
<div class="flex flex-col mt-[30px] gap-[32px]"> <div class="flex flex-col mt-[30px] gap-[32px]">
<a-button type="primary" @click="register">确认注册</a-button> <a-button type="primary" @click="register">确认注册</a-button>
<a-button
@click="toPath('/loginSYS/login')"
type="text">
已有帐号去登陆
<icon-arrow-right class="ml-[5px]"/>
</a-button>
</div> </div>
</div> </div>
</template> </template>

File diff suppressed because one or more lines are too long