| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355 |
- <template>
- <!-- 登录 -->
- <div class="go-login-box">
- <div class="go-login-box-bg">
- <aside class="bg-slot"></aside>
- <aside class="bg-img-box">
- <transition-group name="list-complete">
- <template v-for="item in bgList" :key="item">
- <div class="bg-img-box-li list-complete-item">
- <n-collapse-transition :appear="true" :show="showBg">
- <img :src="getImageUrl(item, 'chart/charts')" alt="chart" />
- </n-collapse-transition>
- </div>
- </template>
- </transition-group>
- </aside>
- </div>
- <GoHeader>
- <template #left></template>
- <template #right>
- <LangSelect></LangSelect>
- <ThemeSelect></ThemeSelect>
- </template>
- </GoHeader>
- <div class="go-login">
- <div class="go-login-carousel">
- <n-carousel
- autoplay
- dot-type="line"
- :interval="Number(carouselInterval)"
- >
- <img
- v-for="(item, i) in carouselImgList"
- :key="i"
- class="go-login-carousel-img"
- :src="getImageUrl(item, 'login')"
- alt="image"
- />
- </n-carousel>
- </div>
- <div class="login-account">
- <div class="login-account-container">
- <n-collapse-transition :appear="true" :show="show">
- <n-card class="login-account-card" :title="$t('login.desc')">
- <div class="login-account-top">
- <img
- class="login-account-top-logo"
- src="~@/assets/images/login/input.png"
- alt="展示图片"
- />
- </div>
- <n-form
- ref="formRef"
- label-placement="left"
- size="large"
- :model="formInline"
- :rules="rules"
- >
- <n-form-item path="username">
- <n-input
- v-model:value="formInline.username"
- :placeholder="$t('global.form_account')"
- >
- <template #prefix>
- <n-icon size="18">
- <PersonOutlineIcon></PersonOutlineIcon>
- </n-icon>
- </template>
- </n-input>
- </n-form-item>
- <n-form-item path="password">
- <n-input
- v-model:value="formInline.password"
- type="password"
- show-password-on="click"
- :placeholder="$t('global.form_password')"
- >
- <template #prefix>
- <n-icon size="18">
- <LockClosedOutlineIcon></LockClosedOutlineIcon>
- </n-icon>
- </template>
- </n-input>
- </n-form-item>
- <n-form-item>
- <div class="flex justify-between">
- <div class="flex-initial">
- <n-checkbox v-model:checked="autoLogin">{{
- $t('login.form_auto')
- }}</n-checkbox>
- </div>
- </div>
- </n-form-item>
- <n-form-item>
- <n-button
- type="primary"
- @click="handleSubmit"
- size="large"
- :loading="loading"
- block
- >{{ $t('login.form_button') }}</n-button
- >
- </n-form-item>
- </n-form>
- </n-card>
- </n-collapse-transition>
- </div>
- </div>
- </div>
- <div class="go-login-box-footer">
- <GoFooter></GoFooter>
- </div>
- </div>
- </template>
- <script lang="ts" setup>
- import { reactive, ref, onMounted } from 'vue'
- import {
- routerTurnByName,
- cryptoEncode,
- setLocalStorage
- } from '@/utils'
- import shuffle from 'lodash/shuffle'
- import { carouselInterval } from '@/settings/designSetting'
- import { useDesignStore } from '@/store/modules/designStore/designStore'
- import { ThemeSelect } from '@/components/ThemeSelect'
- import { LangSelect } from '@/components/LangSelect'
- import { GoHeader } from '@/layout/components/GoHeader'
- import { GoFooter } from '@/layout/components/GoFooter'
- import { PageEnum } from '@/enums/pageEnum'
- import { icon } from '@/plugins'
- import { StorageEnum } from '@/enums/storageEnum'
- const { GO_LOGIN_INFO_STORE } = StorageEnum
- const { PersonOutlineIcon, LockClosedOutlineIcon } = icon.ionicons5
- interface FormState {
- username: string
- password: string
- }
- const formRef = ref()
- const loading = ref(false)
- const autoLogin = ref(true)
- const show = ref(false)
- const showBg = ref(false)
- const designStore = useDesignStore()
- const t = window['$t']
- onMounted(() => {
- setTimeout(() => {
- show.value = true
- }, 300)
- setTimeout(() => {
- showBg.value = true
- }, 100)
- })
- const formInline = reactive({
- username: 'admin',
- password: '123456'
- })
- const rules = {
- username: {
- required: true,
- message: t('global.form_account'),
- trigger: 'blur'
- },
- password: {
- required: true,
- message: t('global.form_password'),
- trigger: 'blur'
- }
- }
- // 定时器
- const shuffleTimiing = ref()
- // 轮播图
- const carouselImgList = ['one', 'two', 'three']
- // 背景图
- const bgList = ref([
- 'bar_y',
- 'bar_x',
- 'line_gradient',
- 'line',
- 'funnel',
- 'heatmap',
- 'map',
- 'pie',
- 'radar'
- ])
- // 处理url获取
- const getImageUrl = (name: string, folder: string) => {
- return new URL(`../../assets/images/${folder}/${name}.png`, import.meta.url).href
- }
- // 打乱
- const shuffleHandle = () => {
- shuffleTimiing.value = setInterval(() => {
- bgList.value = shuffle(bgList.value)
- }, carouselInterval)
- }
- // 点击事件
- const handleSubmit = (e: Event) => {
- e.preventDefault()
- formRef.value.validate(async (errors: any) => {
- if (!errors) {
- const { username, password } = formInline
- loading.value = true
- setLocalStorage(
- GO_LOGIN_INFO_STORE,
- cryptoEncode(
- JSON.stringify({
- username,
- password
- })
- )
- )
- window['$message'].success(`${t('login.login_success')}!`)
- routerTurnByName(PageEnum.BASE_HOME_NAME, true)
- } else {
- window['$message'].error(`${t('login.login_message')}!`)
- }
- })
- }
- onMounted(() => {
- shuffleHandle()
- })
- </script>
- <style lang="scss" scoped>
- $width: 450px;
- $go-login-height: 100vh;
- $account-img-height: 270px;
- $footer-height: 50px;
- $carousel-width: 30%;
- $carousel-image-height: 60vh;
- * {
- box-sizing: border-box;
- }
- @include go(login-box) {
- height: $go-login-height;
- overflow: hidden;
- @include background-image('background-image');
- &-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 40px;
- height: $--header-height;
- }
- &-divider {
- margin: 0;
- padding-top: 0;
- }
- @include go(login) {
- z-index: 2;
- display: flex;
- justify-content: space-around;
- align-items: center;
- margin-top: -$--header-height;
- height: $go-login-height;
- width: 100vw;
- &-carousel {
- width: $carousel-width;
- margin-top: 100px;
- min-width: 500px;
- &-img {
- display: block;
- margin: 0 auto;
- height: $carousel-image-height;
- }
- }
- .login-account {
- display: flex;
- flex-direction: column;
- margin: 0 160px;
- &-container {
- width: $width;
- }
- &-card {
- @extend .go-background-filter;
- @include filter-bg-color('filter-color');
- box-shadow: 0 0 20px 5px rgba(40, 40, 40, 0.5);
- }
- &-top {
- padding-top: 10px;
- text-align: center;
- height: $account-img-height;
- margin-bottom: 20px;
- }
- }
- }
- &-footer {
- z-index: 2;
- position: fixed;
- width: 100%;
- bottom: 0;
- }
- &-bg {
- z-index: 0;
- position: fixed;
- display: flex;
- justify-content: space-around;
- align-items: center;
- width: 100vw;
- height: 100vh;
- background: url('@/assets/images/login/login-bg.png') no-repeat 0 -120px;
- .bg-slot {
- width: $carousel-width;
- }
- .bg-img-box {
- position: relative;
- display: flex;
- flex-wrap: wrap;
- width: 770px;
- margin-right: -20px;
- &-li {
- img {
- margin-right: 20px;
- margin-top: 20px;
- width: 230px;
- border-radius: 2 * $--border-radius-base;
- opacity: 0.9;
- }
- }
- }
- }
- }
- @media only screen and (max-width: 1200px) {
- .bg-img-box,
- .bg-slot,
- .go-login-carousel {
- display: none !important;
- }
- .go-login-box-footer {
- position: relative;
- }
- }
- </style>
|