This commit is contained in:
王一嘉
2025-07-15 11:11:24 +08:00
parent 2ea567a76d
commit c953ec5354
20 changed files with 194 additions and 34 deletions

View File

@@ -15,7 +15,7 @@ const MODE = {
const from = reactive({
mobile: '17502997128',
code: null,
password: '123456',
password: '654321',
});
const mode = ref(MODE.PHONE);
@@ -56,7 +56,7 @@ const loginSYS = (isRoot, form) => {
:mobile="from.mobile"
v-model:verification-code="from.code">
</VerificationCode>
<a-input v-else v-model:model-value="from.password" placeholder="密码">
<a-input v-else v-model:model-value="from.password" placeholder="密码" type="password">
<template #append>
<a-link @click="toPath('/loginSYS/forgot')" :hoverable="false">忘记密码?</a-link>
</template>