123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <template>
- <el-form size="large" class="login-content-form">
- <el-form-item class="login-animation1">
- <el-input text :placeholder="$t('message.account.accountPlaceholder1')" v-model="state.ruleForm.userName" 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">
- <el-input
- :type="state.isShowPassword ? 'text' : 'password'"
- :placeholder="$t('message.account.accountPlaceholder2')"
- v-model="state.ruleForm.password"
- 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-animation3">
- <el-col :span="15">
- <el-input
- text
- maxlength="4"
- :placeholder="$t('message.account.accountPlaceholder3')"
- v-model="state.ruleForm.code"
- clearable
- autocomplete="off"
- >
- <template #prefix>
- <el-icon class="el-input__icon"><ele-Position /></el-icon>
- </template>
- </el-input>
- </el-col>
- <el-col :span="1"></el-col>
- <el-col :span="8">
- <el-button class="login-content-code" v-waves>1234</el-button>
- </el-col>
- </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-form-item>
- </el-form>
- </template>
- <script setup lang="ts" name="loginAccount">
- import { reactive, computed } from 'vue'
- import { useRoute, useRouter } from 'vue-router'
- import { ElMessage } from 'element-plus'
- import { useI18n } from 'vue-i18n'
- { storeToRefs } from 'pinia'
- { useThemeConfig } from '/@/stores/themeConfig'
- { initFrontEndControlRoutes } from '/@/router/frontEnd'
- import { initBackEndControlRoutes } from '/@/router/backEnd'
- import { Local, Session } from '/@/utils/storage'
- import { formatAxis } from '/@/utils/formatTime'
- import { NextLoading } from '/@/utils/loading'
- import { AuthApi } from '/@/api/admin/Auth'
- import { AuthLoginInput } from '/@/api/admin/data-contracts'
- import { adminTokenKey } from '/@/api/admin/http-client'
- const { t } = useI18n()
- { themeConfig } = storeToRefs(storesThemeConfig)
- const route = useRoute()
- const router = useRouter()
- const state = reactive({
- isShowPassword: false,
- ruleForm: {
- userName: 'admin',
- password: '111111',
- //code: '1234',
- } as AuthLoginInput,
- loading: {
- signIn: false,
- },
- })
- const currentTime = computed(() => {
- return formatAxis(new Date())
- })
- const onSignIn = async () => {
- state.loading.signIn = true
- const res = await new AuthApi().login(state.ruleForm).catch(() => {
- state.loading.signIn = false
- })
- if (!res?.success) {
- state.loading.signIn = false
- return
- }
- const token = res.data?.token
- Local.set(adminTokenKey, token)
- Session.set('token', token)
-
- const isNoPower = await initBackEndControlRoutes()
-
- signInSuccess(isNoPower)
- }
- const signInSuccess = (isNoPower: boolean | undefined) => {
- if (isNoPower) {
- ElMessage.warning('抱歉,您没有分配权限,请联系管理员')
- Local.remove(adminTokenKey)
- 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('/')
- }
-
- const signInText = t('message.signInText')
- ElMessage.success(`${currentTimeInfo},${signInText}`)
-
- 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: 100%;
- letter-spacing: 2px;
- font-weight: 300;
- margin-top: 15px;
- }
- }
- </style>
|