| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- <template>
- <el-form size="large" class="login-content-form" :model="state.ruleForm" :rules="state.rules">
- <el-form-item class="login-animation1" prop="name">
- <el-input text placeholder="请输入手机号"
- v-model="state.ruleForm.name" clearable autocomplete="off">
- <template #prefix>
- <el-icon class="el-input__icon">
- <ele-User/>
- </el-icon>
- </template>
- </el-input>
- </el-form-item>
- <el-form-item class="login-animation2" prop="pwd">
- <el-input
- type="password"
- :placeholder="$t('message.account.accountPlaceholder2')"
- v-model="state.ruleForm.pwd"
- autocomplete="off"
- >
- <template #prefix>
- <el-icon class="el-input__icon">
- <ele-Unlock/>
- </el-icon>
- </template>
- <!-- <template #suffix>
- <i
- class="iconfont el-input__icon login-content-password"
- :class="state.isShowPassword ? 'icon-yincangmima' : 'icon-xianshimima'"
- @click="state.isShowPassword = !state.isShowPassword"
- >
- </i>
- </template>-->
- </el-input>
- </el-form-item>
- <el-form-item class="login-animation4">
- <el-button type="primary" class="login-content-submit" round v-waves @click="onSignIn" :loading="state.loading.signIn">
- <span>{{ $t('message.account.accountBtnText') }}</span>
- </el-button>
- <el-button type="danger" text class="login-content-forget" @click="handleForgetPassword">忘记密码?</el-button>
- </el-form-item>
- </el-form>
- </template>
- <script setup lang="ts" name="loginAccount">
- import {reactive, computed, onMounted} from 'vue';
- import {useRoute, useRouter} from 'vue-router';
- import {ElMessage, ElNotification} from 'element-plus';
- import {useI18n} from 'vue-i18n';
- import Cookies from 'js-cookie';
- import {storeToRefs} from 'pinia';
- import {useThemeConfig} from '/@/stores/themeConfig';
- import {Session} from '/@/utils/storage';
- import {formatAxis} from '/@/utils/formatTime';
- import {NextLoading} from '/@/utils/loading';
- import {$body, $get} from '/@/utils/request'
- import {useUserInfo} from "/@/stores/userInfo";
- import { JSEncrypt } from 'jsencrypt'
- import u from "/@/utils/u";
- // 定义变量内容
- const {t} = useI18n();
- const storesThemeConfig = useThemeConfig();
- const {themeConfig} = storeToRefs(storesThemeConfig);
- const storesUserInfo = useUserInfo();
- const route = useRoute();
- const router = useRouter();
- const state = reactive({
- isShowPassword: false,
- ruleForm: {
- name: 'yaopeng',
- pwd: '1234',
- code: '1234',
- sign: '' as string
- },
- loading: {
- signIn: false,
- },
- verifySrc: '' as string,
- userName: ' ' as string,
- nickName: ' ' as string,
- rules:{
- name:[u.validator.required],
- pwd:[u.validator.required],
- code:[u.validator.required],
- }
- });
- // 时间获取
- const currentTime = computed(() => {
- return formatAxis(new Date());
- });
- onMounted(() => {
- });
- const handleForgetPassword = () => {
- // Message.alert(`请联系管理员400-1234567`)
- //forgetPasswordRef.open();
- }
- const encryptData = (str:string)=>{
- let encryptor = new JSEncrypt()
- // 设置公钥 (这是后端直接给我的,看你们项目情况是需要调接口获得,还是程序中直接写死)
- let publicKey = import.meta.env.VITE_PUBLIC_KEY
- encryptor.setPublicKey(publicKey) // publicKey为公钥
- // 加密数据
- return encryptor.encrypt(str)
- }
- const initData = () => {
- $body("/dataDict/list", {}).then((res: any) => {
- Session.set("dicts", res);
- });
- $get("/admin-user/profile").then((obj: any) => {
- if (obj) {
- let {user, permissionList} = obj;
- let userInfo = {...user, permList: permissionList}
- /* app.user = user;
- app.userId = user.id;
- app.permissions = permissionList;
- app.departmentMemberList = departmentMemberList;*/
- storesUserInfo.setUserInfos(userInfo);
- state.loading.signIn = false;
- ElNotification.success({
- title: 'Success',
- message: "欢迎," + user.username,
- offset: 100,
- })
- }
- }).catch(err => {
- ElMessage.error("登录状态失效,请重新登录管理控制台");
- // Session.clear();
- state.loading.signIn = false;
- });
- }
- const refreshLogin = () => {
- setInterval(() => {
- $get(`admin-user/refresh`);
- }, 1600 * 1000)
- }
- // 登录
- const onSignIn = async () => {
- state.loading.signIn = true;
- let temp = {
- mobilePhone:state.ruleForm.name,
- password:encryptData(state.ruleForm.pwd)
- }
- $body(`/admin-user/login`, temp).then((res: any) => {
- let {id,satoken} = res;
- console.log(res)
- if (satoken) {
- // 存储 token 到浏览器缓存
- Session.set('token', satoken);
- Cookies.set('userId', id);
- initData();
- // refreshLogin();
- state.loading.signIn = false;
- signInSuccess(false);
- } else {
- ElMessage.error(res.msg);
- state.loading.signIn = false;
- }
- }).catch(e => {
- state.loading.signIn = false;
- console.error(e)
- });
- };
- // 登录成功后的跳转
- const signInSuccess = (isNoPower: boolean | undefined) => {
- if (isNoPower) {
- ElMessage.warning('抱歉,您没有登录权限');
- Session.clear();
- } else {
- // 初始化登录成功时间问候语
- let currentTimeInfo = currentTime.value;
- // 登录成功,跳到转首页
- // 如果是复制粘贴的路径,非首页/登录页,那么登录成功后重定向到对应的路径中
- if (route.query?.redirect) {
- router.push({
- path: <string>route.query?.redirect,
- query: Object.keys(<string>route.query?.params).length > 0 ? JSON.parse(<string>route.query?.params) : '',
- });
- } else {
- router.push('/');
- }
- // router.replace('/');
- // 登录成功提示
- const signInText = t('message.signInText');
- ElMessage.success(`${currentTimeInfo},${signInText}`);
- // 添加 loading,防止第一次进入界面时出现短暂空白
- NextLoading.start();
- }
- state.loading.signIn = false;
- };
- </script>
- <style scoped lang="scss">
- .login-content-form {
- margin-top: 20px;
- @for $i from 1 through 4 {
- .login-animation#{$i} {
- opacity: 0;
- animation-name: error-num;
- animation-duration: 0.5s;
- animation-fill-mode: forwards;
- animation-delay: calc($i/10) + s;
- }
- }
- .login-content-password {
- display: inline-block;
- width: 20px;
- cursor: pointer;
- &:hover {
- color: #909399;
- }
- }
- .login-content-code {
- width: 100%;
- padding: 0;
- font-weight: bold;
- letter-spacing: 5px;
- }
- .login-content-submit {
- width: 80%;
- letter-spacing: 2px;
- font-weight: 300;
- margin-top: 15px;
- }
- .login-content-forget {
- width: 13%;
- letter-spacing: 2px;
- font-weight: 300;
- margin-top: 15px;
- margin-left: 5%;
- }
- }
- </style>
|