123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <n-form ref="formRef" :model="model" :rules="rules" size="large" :show-label="false">
- <n-form-item path="userName">
- <n-input v-model:value="model.userName" placeholder="请输入用户名" />
- </n-form-item>
- <n-form-item path="password">
- <n-input v-model:value="model.password" type="password" show-password-on="click" placeholder="请输入密码" />
- </n-form-item>
- <n-space :vertical="true" :size="24">
- <div class="flex-y-center justify-between">
- <n-checkbox v-model:checked="rememberMe">记住我</n-checkbox>
- <n-button :text="true" @click="toLoginModule('reset-pwd')">忘记密码?</n-button>
- </div>
- <n-button
- type="primary"
- size="large"
- :block="true"
- :round="true"
- :loading="auth.loginLoading"
- @click="handleSubmit"
- >
- 确定
- </n-button>
- <div class="flex-y-center justify-between">
- <n-button class="flex-1" :block="true" @click="toLoginModule('code-login')">
- {{ loginModuleLabels['code-login'] }}
- </n-button>
- <div class="w-12px"></div>
- <n-button class="flex-1" :block="true" @click="toLoginModule('register')">
- {{ loginModuleLabels.register }}
- </n-button>
- </div>
- </n-space>
- <other-account @login="handleLoginOtherAccount" />
- </n-form>
- </template>
- <script setup lang="ts">
- import { reactive, ref } from 'vue';
- import type { FormInst, FormRules } from 'naive-ui';
- import { loginModuleLabels } from '@/constants';
- import { useAuthStore } from '@/store';
- import { useRouterPush } from '@/composables';
- import { formRules } from '@/utils';
- import { OtherAccount } from './components';
- const auth = useAuthStore();
- const { login } = useAuthStore();
- const { toLoginModule } = useRouterPush();
- const formRef = ref<HTMLElement & FormInst>();
- const model = reactive({
- userName: 'Soybean',
- password: 'soybean123'
- });
- const rules: FormRules = {
- password: formRules.pwd
- };
- const rememberMe = ref(false);
- async function handleSubmit() {
- await formRef.value?.validate();
- const { userName, password } = model;
- login(userName, password);
- console.log(userName, password );
- }
- function handleLoginOtherAccount(param: { userName: string; password: string }) {
- const { userName, password } = param;
- login(userName, password);
- }
- </script>
- <style scoped></style>
|