62 lines
1.6 KiB
Vue
62 lines
1.6 KiB
Vue
<script setup lang="ts">
|
|
import { reactive } from 'vue';
|
|
import { md5 } from '@/utils/common';
|
|
import { $t } from '@/locales';
|
|
import { useFormRules, useNaiveForm } from '@/hooks/common/form';
|
|
import { useAuthStore } from '@/store/modules/auth';
|
|
|
|
defineOptions({
|
|
name: 'PwdLogin'
|
|
});
|
|
|
|
const authStore = useAuthStore();
|
|
const { formRef, validate } = useNaiveForm();
|
|
const { defaultRequiredRule } = useFormRules();
|
|
|
|
interface FormModel {
|
|
userName: string;
|
|
password: string;
|
|
}
|
|
|
|
const model: FormModel = reactive({
|
|
userName: 'admin',
|
|
password: 'admin'
|
|
});
|
|
|
|
type RuleKey = Extract<keyof FormModel, 'userName' | 'password'>;
|
|
|
|
const rules: Record<RuleKey, App.Global.FormRule> = {
|
|
userName: defaultRequiredRule,
|
|
password: defaultRequiredRule
|
|
};
|
|
|
|
async function handleSubmit() {
|
|
await validate();
|
|
const password = md5(model.password);
|
|
await authStore.login(model.userName, password);
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<NForm ref="formRef" :model="model" :rules="rules" size="large" :show-label="false">
|
|
<NFormItem path="userName">
|
|
<NInput v-model:value="model.userName" :placeholder="$t('page.login.common.userNamePlaceholder')" />
|
|
</NFormItem>
|
|
<NFormItem path="password">
|
|
<NInput
|
|
v-model:value="model.password"
|
|
type="password"
|
|
show-password-on="click"
|
|
:placeholder="$t('page.login.common.passwordPlaceholder')"
|
|
/>
|
|
</NFormItem>
|
|
<NSpace vertical :size="24">
|
|
<NButton type="primary" size="large" round block :loading="authStore.loginLoading" @click="handleSubmit">
|
|
{{ $t('page.login.common.login') }}
|
|
</NButton>
|
|
</NSpace>
|
|
</NForm>
|
|
</template>
|
|
|
|
<style scoped></style>
|