gtsoft-snail-job-admin/src/views/_builtin/login/modules/pwd-login.vue
2024-03-26 11:47:11 +08:00

66 lines
1.8 KiB
Vue

<script setup lang="ts">
import { computed, reactive } from 'vue';
import { Md5 } from 'ts-md5';
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();
interface FormModel {
userName: string;
password: string;
}
const model: FormModel = reactive({
userName: 'admin',
password: '654321'
});
const rules = computed<Record<keyof FormModel, App.Global.FormRule[]>>(() => {
// inside computed to make locale reactive, if not apply i18n, you can define it without computed
const { formRules } = useFormRules();
return {
userName: formRules.userName,
password: formRules.pwd
};
});
async function handleSubmit() {
await validate();
const md5 = new Md5();
md5.appendAsciiStr(model.password);
const password: string = md5.end() as string;
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>