123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <template>
- <div
- id="userLayout"
- class="w-full h-full relative"
- >
- <div
- class="rounded-lg flex items-center justify-evenly w-full h-full bg-white md:w-screen md:h-screen md:bg-[#194bfb]"
- >
- <div class="md:w-3/5 w-10/12 h-full flex items-center justify-evenly">
- <div class="oblique h-[130%] w-3/5 bg-white transform -rotate-12 absolute -ml-52" />
- <!-- 分割斜块 -->
- <div class="z-[999] pt-12 pb-10 md:w-96 w-full rounded-lg flex flex-col justify-between box-border">
- <div>
- <div class="flex items-center justify-center">
- <img
- class="w-24"
- src="../../assets/logo.png"
- alt
- >
- </div>
- <div class="mb-9">
- <p class="text-center text-4xl font-bold">龙弛智慧路口</p>
- </div>
- <el-form
- ref="loginForm"
- :model="loginFormData"
- :rules="rules"
- :validate-on-rule-change="false"
- @keyup.enter="submitForm"
- >
- <el-form-item
- prop="username"
- class="mb-6"
- >
- <el-input
- v-model="loginFormData.username"
- size="large"
- placeholder="请输入用户名"
- suffix-icon="user"
- />
- </el-form-item>
- <el-form-item
- prop="password"
- class="mb-6"
- >
- <el-input
- v-model="loginFormData.password"
- show-password
- size="large"
- type="password"
- placeholder="请输入密码"
- />
- </el-form-item>
- <el-form-item
- v-if="loginFormData.openCaptcha"
- prop="captcha"
- class="mb-6"
- >
- <div class="flex w-full justify-between">
- <el-input
- v-model="loginFormData.captcha"
- placeholder="请输入验证码"
- size="large"
- class="flex-1 mr-5"
- />
- <div class="w-1/3 h-11 bg-[#c3d4f2] rounded">
- <img
- v-if="picPath"
- class="w-full h-full"
- :src="picPath"
- alt="请输入验证码"
- @click="loginVerify()"
- >
- </div>
- </div>
- </el-form-item>
- <el-form-item class="mb-6">
- <el-button
- class="shadow shadow-blue-600 h-11 w-full"
- type="primary"
- size="large"
- @click="submitForm"
- >登 录</el-button>
- </el-form-item>
- </el-form>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import JSEncrypt from 'jsencrypt'
- import { captcha, routerPublicKey } from '@/api/user'
- import { reactive, ref, onMounted } from 'vue'
- import { ElMessage } from 'element-plus'
- import { useRouter } from 'vue-router'
- import { useUserStore } from '@/pinia/modules/user'
- defineOptions({
- name: 'Login',
- })
- const router = useRouter()
- // 验证函数
- const checkUsername = (rule, value, callback) => {
- if (value.length < 5) {
- return callback(new Error('请输入正确的用户名'))
- } else {
- callback()
- }
- }
- const checkPassword = (rule, value, callback) => {
- if (value.length < 6) {
- return callback(new Error('请输入正确的密码'))
- } else {
- callback()
- }
- }
- // 获取验证码
- const loginVerify = async() => {
- const ele = await captcha()
- rules.captcha.push({
- max: ele.data.captchaLength,
- min: ele.data.captchaLength,
- message: `请输入${ele.data.captchaLength}位验证码`,
- trigger: 'blur',
- })
- picPath.value = ele.data.picPath
- loginFormData.captchaId = ele.data.captchaId
- loginFormData.openCaptcha = ele.data.openCaptcha
- }
- loginVerify()
- // 登录相关操作
- const loginForm = ref(null)
- const picPath = ref('')
- const loginFormData = reactive({
- username: '',
- password: '',
- captcha: '',
- captchaId: '',
- openCaptcha: false,
- })
- const rules = reactive({
- username: [{ validator: checkUsername, trigger: 'blur' }],
- password: [{ validator: checkPassword, trigger: 'blur' }],
- captcha: [
- {
- message: '验证码格式不正确',
- trigger: 'blur',
- },
- ],
- })
- const publicKey = ref()
- // 获取公钥
- const queryPublicKey = async() => {
- const req = await routerPublicKey()
- publicKey.value = req.data.publicKey
- }
- const userStore = useUserStore()
- //登录
- const login = async() => {
- //密码加密
- const instance = new JSEncrypt();
- instance.setPublicKey(publicKey.value);
- loginFormData.password = instance.encrypt(loginFormData.password)
- const bool = await userStore.LoginIn(loginFormData)
- loginFormData.password = ""
- return bool
- }
- const submitForm = () => {
- loginForm.value.validate(async(v) => {
- if (v) {
- const flag = await login()
- if (!flag) {
- loginVerify()
- }
- } else {
- ElMessage({
- type: 'error',
- message: '请正确填写登录信息',
- showClose: true,
- })
- loginVerify()
- return false
- }
- })
- }
- onMounted(() => {
- queryPublicKey()
- })
- </script>
|