提交 4ce1d526 作者: vben

refactor(lock-page): refactor lock page

上级 e9c28319
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
### ✨ Refactor ### ✨ Refactor
- tree 组件 ref 函数调用删除 `$` - tree 组件 ref 函数调用删除 `$`
- 锁屏界面重构美化,删除不必要的背景图片
### ⚡ Performance Improvements ### ⚡ Performance Improvements
......
...@@ -5,6 +5,7 @@ import { ...@@ -5,6 +5,7 @@ import {
GetUserInfoByUserIdParams, GetUserInfoByUserIdParams,
GetUserInfoByUserIdModel, GetUserInfoByUserIdModel,
} from './model/userModel'; } from './model/userModel';
import { ErrorMessageMode } from '/@/utils/http/axios/types';
enum Api { enum Api {
Login = '/login', Login = '/login',
...@@ -15,7 +16,7 @@ enum Api { ...@@ -15,7 +16,7 @@ enum Api {
/** /**
* @description: user login api * @description: user login api
*/ */
export function loginApi(params: LoginParams) { export function loginApi(params: LoginParams, mode: ErrorMessageMode = 'modal') {
return defHttp.request<LoginResultModel>( return defHttp.request<LoginResultModel>(
{ {
url: Api.Login, url: Api.Login,
...@@ -23,7 +24,7 @@ export function loginApi(params: LoginParams) { ...@@ -23,7 +24,7 @@ export function loginApi(params: LoginParams) {
params, params,
}, },
{ {
errorMessageMode: 'modal', errorMessageMode: mode,
} }
); );
} }
......
...@@ -90,6 +90,7 @@ ...@@ -90,6 +90,7 @@
@content(); @content();
} }
} }
.respond-to (xsmall-and-small, @content) { .respond-to (xsmall-and-small, @content) {
@media only screen and (max-width: @screen-sm-max) { @media only screen and (max-width: @screen-sm-max) {
@content(); @content();
......
...@@ -26,9 +26,13 @@ ...@@ -26,9 +26,13 @@
@screen-xxl: 1600px; @screen-xxl: 1600px;
@screen-xxl-min: @screen-xxl; @screen-xxl-min: @screen-xxl;
@screen-xxxl: 1900px;
@screen-xxxl-min: @screen-xxxl;
// provide a maximum // provide a maximum
@screen-xs-max: (@screen-sm-min - 1px); @screen-xs-max: (@screen-sm-min - 1px);
@screen-sm-max: (@screen-md-min - 1px); @screen-sm-max: (@screen-md-min - 1px);
@screen-md-max: (@screen-lg-min - 1px); @screen-md-max: (@screen-lg-min - 1px);
@screen-lg-max: (@screen-xl-min - 1px); @screen-lg-max: (@screen-xl-min - 1px);
@screen-xl-max: (@screen-xxl-min - 1px); @screen-xl-max: (@screen-xxl-min - 1px);
@screen-xxl-max: (@screen-xxxl-min - 1px);
...@@ -42,6 +42,8 @@ const getColorWeak = computed(() => unref(getRootSetting).colorWeak); ...@@ -42,6 +42,8 @@ const getColorWeak = computed(() => unref(getRootSetting).colorWeak);
const getGrayMode = computed(() => unref(getRootSetting).grayMode); const getGrayMode = computed(() => unref(getRootSetting).grayMode);
const getLockTime = computed(() => unref(getRootSetting).lockTime);
const getLayoutContentMode = computed(() => const getLayoutContentMode = computed(() =>
unref(getRootSetting).contentMode === ContentEnum.FULL ? ContentEnum.FULL : ContentEnum.FIXED unref(getRootSetting).contentMode === ContentEnum.FULL ? ContentEnum.FULL : ContentEnum.FIXED
); );
...@@ -71,5 +73,6 @@ export function useRootSetting() { ...@@ -71,5 +73,6 @@ export function useRootSetting() {
getShowSettingButton, getShowSettingButton,
getShowFooter, getShowFooter,
getContentMode, getContentMode,
getLockTime,
}; };
} }
import { computed, onUnmounted, watchEffect } from 'vue'; import { computed, onUnmounted, unref, watchEffect } from 'vue';
import { useThrottle } from '/@/hooks/core/useThrottle'; import { useThrottle } from '/@/hooks/core/useThrottle';
import { appStore } from '/@/store/modules/app'; import { appStore } from '/@/store/modules/app';
import { lockStore } from '/@/store/modules/lock';
import { userStore } from '/@/store/modules/user'; import { userStore } from '/@/store/modules/user';
import { useRootSetting } from '../setting/useRootSetting';
export function useLockPage() { export function useLockPage() {
const { getLockTime } = useRootSetting();
let timeId: TimeoutHandle; let timeId: TimeoutHandle;
function clear(): void { function clear(): void {
...@@ -30,7 +33,7 @@ export function useLockPage() { ...@@ -30,7 +33,7 @@ export function useLockPage() {
} }
function lockPage(): void { function lockPage(): void {
appStore.commitLockInfoState({ lockStore.commitLockInfoState({
isLock: true, isLock: true,
pwd: undefined, pwd: undefined,
}); });
...@@ -54,8 +57,7 @@ export function useLockPage() { ...@@ -54,8 +57,7 @@ export function useLockPage() {
const [keyupFn] = useThrottle(resetCalcLockTimeout, 2000); const [keyupFn] = useThrottle(resetCalcLockTimeout, 2000);
return computed(() => { return computed(() => {
const openLockPage = appStore.getProjectConfig.lockTime; if (unref(getLockTime)) {
if (openLockPage) {
return { onKeyup: keyupFn, onMousemove: keyupFn }; return { onKeyup: keyupFn, onMousemove: keyupFn };
} else { } else {
clear(); clear();
...@@ -63,3 +65,9 @@ export function useLockPage() { ...@@ -63,3 +65,9 @@ export function useLockPage() {
} }
}); });
} }
export const getIsLock = computed(() => {
const { getLockInfo } = lockStore;
const { isLock } = getLockInfo;
return isLock;
});
...@@ -6,7 +6,7 @@ import LayoutHeader from './header/LayoutHeader'; ...@@ -6,7 +6,7 @@ import LayoutHeader from './header/LayoutHeader';
import LayoutContent from './content'; import LayoutContent from './content';
import LayoutFooter from './footer'; import LayoutFooter from './footer';
import LayoutLockPage from './lock'; import LayoutLockPage from './lock/index.vue';
import LayoutSideBar from './sider'; import LayoutSideBar from './sider';
import SettingBtn from './setting/index.vue'; import SettingBtn from './setting/index.vue';
import LayoutMultipleHeader from './header/LayoutMultipleHeader'; import LayoutMultipleHeader from './header/LayoutMultipleHeader';
......
...@@ -7,9 +7,9 @@ import { BasicForm, useForm } from '/@/components/Form/index'; ...@@ -7,9 +7,9 @@ import { BasicForm, useForm } from '/@/components/Form/index';
import headerImg from '/@/assets/images/header.jpg'; import headerImg from '/@/assets/images/header.jpg';
import { appStore } from '/@/store/modules/app';
import { userStore } from '/@/store/modules/user'; import { userStore } from '/@/store/modules/user';
import { useI18n } from '/@/hooks/web/useI18n'; import { useI18n } from '/@/hooks/web/useI18n';
import { lockStore } from '/@/store/modules/lock';
const prefixCls = 'lock-modal'; const prefixCls = 'lock-modal';
export default defineComponent({ export default defineComponent({
...@@ -30,24 +30,16 @@ export default defineComponent({ ...@@ -30,24 +30,16 @@ export default defineComponent({
], ],
}); });
async function lock(valid = true) { async function lock() {
let password: string | undefined = '';
try {
if (!valid) {
password = undefined;
} else {
const values = (await validateFields()) as any; const values = (await validateFields()) as any;
password = values.password; const password: string | undefined = values.password;
}
closeModal(); closeModal();
appStore.commitLockInfoState({ lockStore.commitLockInfoState({
isLock: true, isLock: true,
pwd: password, pwd: password,
}); });
await resetFields(); await resetFields();
} catch (error) {}
} }
return () => ( return () => (
...@@ -71,9 +63,6 @@ export default defineComponent({ ...@@ -71,9 +63,6 @@ export default defineComponent({
<Button type="primary" block class="mt-2" onClick={lock}> <Button type="primary" block class="mt-2" onClick={lock}>
{() => t('layout.header.lockScreenBtn')} {() => t('layout.header.lockScreenBtn')}
</Button> </Button>
<Button block class="mt-2" onClick={lock.bind(null, false)}>
{() => t('layout.header.notLockScreenPassword')}
</Button>
</div> </div>
</div> </div>
)} )}
......
import { defineComponent, unref, computed } from 'vue';
import { appStore } from '/@/store/modules/app';
import LockPage from '/@/views/sys/lock/index.vue';
export default defineComponent({
name: 'LayoutLockPage',
setup() {
const getIsLockRef = computed(() => {
const { getLockInfo } = appStore;
const { isLock } = getLockInfo;
return isLock;
});
return () => {
return unref(getIsLockRef) ? <LockPage /> : null;
};
},
});
<template>
<transition name="fade-bottom">
<LockPage v-if="getIsLock" />
</transition>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import LockPage from '/@/views/sys/lock/index.vue';
import { getIsLock } from '/@/hooks/web/useLockPage';
export default defineComponent({
name: 'LayoutLockPage',
components: { LockPage },
setup() {
return { getIsLock };
},
});
</script>
...@@ -14,7 +14,6 @@ export default { ...@@ -14,7 +14,6 @@ export default {
lockScreenPassword: 'Lock screen password', lockScreenPassword: 'Lock screen password',
lockScreen: 'Lock screen', lockScreen: 'Lock screen',
lockScreenBtn: 'Locking', lockScreenBtn: 'Locking',
notLockScreenPassword: 'No password lock screen',
home: 'Home', home: 'Home',
}; };
export default { export default {
unlock: 'Click to unlock',
alert: 'Lock screen password error', alert: 'Lock screen password error',
backToLogin: 'Back to login', backToLogin: 'Back to login',
back: 'Back',
entry: 'Enter the system', entry: 'Enter the system',
placeholder: 'Please enter the lock screen password or user password', placeholder: 'Please enter the lock screen password or user password',
}; };
...@@ -15,7 +15,6 @@ export default { ...@@ -15,7 +15,6 @@ export default {
lockScreenPassword: '锁屏密码', lockScreenPassword: '锁屏密码',
lockScreen: '锁定屏幕', lockScreen: '锁定屏幕',
lockScreenBtn: '锁定', lockScreenBtn: '锁定',
notLockScreenPassword: '不设置密码锁屏',
home: '首页', home: '首页',
}; };
export default { export default {
unlock: '点击解锁',
alert: '锁屏密码错误', alert: '锁屏密码错误',
back: '返回',
backToLogin: '返回登录', backToLogin: '返回登录',
entry: '进入系统', entry: '进入系统',
placeholder: '请输入锁屏密码或者用户密码', placeholder: '请输入锁屏密码或者用户密码',
......
...@@ -3,16 +3,10 @@ import type { ProjectConfig } from '/@/types/config'; ...@@ -3,16 +3,10 @@ import type { ProjectConfig } from '/@/types/config';
import { VuexModule, getModule, Module, Mutation, Action } from 'vuex-module-decorators'; import { VuexModule, getModule, Module, Mutation, Action } from 'vuex-module-decorators';
import store from '/@/store'; import store from '/@/store';
import { PROJ_CFG_KEY, LOCK_INFO_KEY } from '/@/enums/cacheEnum'; import { PROJ_CFG_KEY } from '/@/enums/cacheEnum';
import { hotModuleUnregisterModule } from '/@/utils/helper/vuexHelper'; import { hotModuleUnregisterModule } from '/@/utils/helper/vuexHelper';
import { import { setLocal, getLocal, clearSession, clearLocal } from '/@/utils/helper/persistent';
setLocal,
getLocal,
removeLocal,
clearSession,
clearLocal,
} from '/@/utils/helper/persistent';
import { deepMerge } from '/@/utils'; import { deepMerge } from '/@/utils';
import { resetRouter } from '/@/router'; import { resetRouter } from '/@/router';
...@@ -37,9 +31,6 @@ class App extends VuexModule { ...@@ -37,9 +31,6 @@ class App extends VuexModule {
// project config // project config
private projectConfigState: ProjectConfig | null = getLocal(PROJ_CFG_KEY); private projectConfigState: ProjectConfig | null = getLocal(PROJ_CFG_KEY);
// lock info
private lockInfoState: LockInfo | null = getLocal(LOCK_INFO_KEY);
// set main overflow hidden // set main overflow hidden
private lockMainScrollState = false; private lockMainScrollState = false;
...@@ -51,10 +42,6 @@ class App extends VuexModule { ...@@ -51,10 +42,6 @@ class App extends VuexModule {
return this.lockMainScrollState; return this.lockMainScrollState;
} }
get getLockInfo(): LockInfo {
return this.lockInfoState || ({} as LockInfo);
}
get getProjectConfig(): ProjectConfig { get getProjectConfig(): ProjectConfig {
return this.projectConfigState || ({} as ProjectConfig); return this.projectConfigState || ({} as ProjectConfig);
} }
...@@ -75,18 +62,6 @@ class App extends VuexModule { ...@@ -75,18 +62,6 @@ class App extends VuexModule {
setLocal(PROJ_CFG_KEY, this.projectConfigState); setLocal(PROJ_CFG_KEY, this.projectConfigState);
} }
@Mutation
commitLockInfoState(info: LockInfo): void {
this.lockInfoState = Object.assign({}, this.lockInfoState, info);
setLocal(LOCK_INFO_KEY, this.lockInfoState);
}
@Mutation
resetLockInfo(): void {
removeLocal(LOCK_INFO_KEY);
this.lockInfoState = null;
}
@Action @Action
async resumeAllState() { async resumeAllState() {
resetRouter(); resetRouter();
...@@ -111,39 +86,5 @@ class App extends VuexModule { ...@@ -111,39 +86,5 @@ class App extends VuexModule {
clearTimeout(timeId); clearTimeout(timeId);
} }
} }
/**
* @description: unlock page
*/
@Action
public async unLockAction({ password, valid = true }: { password: string; valid?: boolean }) {
if (!valid) {
this.resetLockInfo();
return true;
}
const tryLogin = async () => {
try {
const username = userStore.getUserInfoState.username;
const res = await userStore.login({ username, password }, false);
if (res) {
this.resetLockInfo();
}
return res;
} catch (error) {
return false;
}
};
if (this.getLockInfo) {
if (this.getLockInfo.pwd === password) {
this.resetLockInfo();
return true;
}
const res = await tryLogin();
return res;
}
const res = await tryLogin();
return res;
}
} }
export const appStore = getModule<App>(App); export const appStore = getModule<App>(App);
import { VuexModule, getModule, Module, Mutation, Action } from 'vuex-module-decorators';
import store from '/@/store';
import { LOCK_INFO_KEY } from '/@/enums/cacheEnum';
import { hotModuleUnregisterModule } from '/@/utils/helper/vuexHelper';
import { setLocal, getLocal, removeLocal } from '/@/utils/helper/persistent';
import { userStore } from './user';
export interface LockInfo {
pwd: string | undefined;
isLock: boolean;
}
const NAME = 'lock';
hotModuleUnregisterModule(NAME);
@Module({ dynamic: true, namespaced: true, store, name: NAME })
class Lock extends VuexModule {
// lock info
private lockInfoState: LockInfo | null = getLocal(LOCK_INFO_KEY);
get getLockInfo(): LockInfo {
return this.lockInfoState || ({} as LockInfo);
}
@Mutation
commitLockInfoState(info: LockInfo): void {
this.lockInfoState = Object.assign({}, this.lockInfoState, info);
setLocal(LOCK_INFO_KEY, this.lockInfoState);
}
@Mutation
resetLockInfo(): void {
removeLocal(LOCK_INFO_KEY);
this.lockInfoState = null;
}
/**
* @description: unlock page
*/
@Action
public async unLockAction({ password }: { password: string }) {
const tryLogin = async () => {
try {
const username = userStore.getUserInfoState.username;
const res = await userStore.login({ username, password, goHome: false, mode: 'none' });
if (res) {
this.resetLockInfo();
}
return res;
} catch (error) {
return false;
}
};
if (this.getLockInfo?.pwd === password) {
this.resetLockInfo();
return true;
}
return await tryLogin();
}
}
export const lockStore = getModule<Lock>(Lock);
...@@ -21,6 +21,7 @@ import { loginApi, getUserInfoById } from '/@/api/sys/user'; ...@@ -21,6 +21,7 @@ import { loginApi, getUserInfoById } from '/@/api/sys/user';
import { setLocal, getLocal, getSession, setSession } from '/@/utils/helper/persistent'; import { setLocal, getLocal, getSession, setSession } from '/@/utils/helper/persistent';
import { useProjectSetting } from '/@/hooks/setting'; import { useProjectSetting } from '/@/hooks/setting';
import { useI18n } from '/@/hooks/web/useI18n'; import { useI18n } from '/@/hooks/web/useI18n';
import { ErrorMessageMode } from '/@/utils/http/axios/types';
export type UserInfo = Omit<GetUserInfoByUserIdModel, 'roles'>; export type UserInfo = Omit<GetUserInfoByUserIdModel, 'roles'>;
...@@ -94,9 +95,16 @@ class User extends VuexModule { ...@@ -94,9 +95,16 @@ class User extends VuexModule {
* @description: login * @description: login
*/ */
@Action @Action
async login(params: LoginParams, goHome = true): Promise<GetUserInfoByUserIdModel | null> { async login(
params: LoginParams & {
goHome?: boolean;
mode?: ErrorMessageMode;
}
): Promise<GetUserInfoByUserIdModel | null> {
try { try {
const data = await loginApi(params); const { goHome = true, mode, ...loginParams } = params;
const data = await loginApi(loginParams, mode);
const { token, userId } = data; const { token, userId } = data;
// get user info // get user info
const userInfo = await this.getUserInfoAction({ userId }); const userInfo = await this.getUserInfoAction({ userId });
...@@ -106,7 +114,7 @@ class User extends VuexModule { ...@@ -106,7 +114,7 @@ class User extends VuexModule {
// const name = FULL_PAGE_NOT_FOUND_ROUTE.name; // const name = FULL_PAGE_NOT_FOUND_ROUTE.name;
// name && router.removeRoute(name); // name && router.removeRoute(name);
goHome && router.push(PageEnum.BASE_HOME); goHome && router.replace(PageEnum.BASE_HOME);
return userInfo; return userInfo;
} catch (error) { } catch (error) {
return null; return null;
......
...@@ -80,6 +80,7 @@ export class VAxios { ...@@ -80,6 +80,7 @@ export class VAxios {
// 请求拦截器配置处理 // 请求拦截器配置处理
this.axiosInstance.interceptors.request.use((config: AxiosRequestConfig) => { this.axiosInstance.interceptors.request.use((config: AxiosRequestConfig) => {
// If cancel repeat request is turned on, then cancel repeat request is prohibited
const { headers: { ignoreCancelToken } = { ignoreCancelToken: false } } = config; const { headers: { ignoreCancelToken } = { ignoreCancelToken: false } } = config;
!ignoreCancelToken && axiosCanceler.addPending(config); !ignoreCancelToken && axiosCanceler.addPending(config);
if (requestInterceptors && isFunction(requestInterceptors)) { if (requestInterceptors && isFunction(requestInterceptors)) {
......
...@@ -58,7 +58,7 @@ const transform: AxiosTransform = { ...@@ -58,7 +58,7 @@ const transform: AxiosTransform = {
// errorMessageMode=‘modal’的时候会显示modal错误弹窗,而不是消息提示,用于一些比较重要的错误 // errorMessageMode=‘modal’的时候会显示modal错误弹窗,而不是消息提示,用于一些比较重要的错误
if (options.errorMessageMode === 'modal') { if (options.errorMessageMode === 'modal') {
createErrorModal({ title: t('sys.api.errorTip'), content: message }); createErrorModal({ title: t('sys.api.errorTip'), content: message });
} else { } else if (options.errorMessageMode === 'message') {
createMessage.error(message); createMessage.error(message);
} }
} }
...@@ -201,7 +201,7 @@ function createAxios(opt?: Partial<CreateAxiosOptions>) { ...@@ -201,7 +201,7 @@ function createAxios(opt?: Partial<CreateAxiosOptions>) {
// 格式化提交参数时间 // 格式化提交参数时间
formatDate: true, formatDate: true,
// 消息提示类型 // 消息提示类型
errorMessageMode: 'none', errorMessageMode: 'message',
// 接口地址 // 接口地址
apiUrl: globSetting.apiUrl, apiUrl: globSetting.apiUrl,
}, },
......
import type { AxiosRequestConfig } from 'axios'; import type { AxiosRequestConfig } from 'axios';
import { AxiosTransform } from './axiosTransform'; import { AxiosTransform } from './axiosTransform';
export type ErrorMessageMode = 'none' | 'modal' | 'message' | undefined;
export interface RequestOptions { export interface RequestOptions {
// 请求参数拼接到url // 请求参数拼接到url
joinParamsToUrl?: boolean; joinParamsToUrl?: boolean;
...@@ -13,7 +15,7 @@ export interface RequestOptions { ...@@ -13,7 +15,7 @@ export interface RequestOptions {
// 接口地址, 不填则使用默认apiUrl // 接口地址, 不填则使用默认apiUrl
apiUrl?: string; apiUrl?: string;
// 错误消息提示类型 // 错误消息提示类型
errorMessageMode?: 'none' | 'modal'; errorMessageMode?: ErrorMessageMode;
} }
export interface CreateAxiosOptions extends AxiosRequestConfig { export interface CreateAxiosOptions extends AxiosRequestConfig {
......
<template> <template>
<div class="lock-page"> <div :class="prefixCls">
<div class="lock-page__entry"> <div :class="`${prefixCls}__unlock`" @click="handleShowForm(false)" v-show="showDate">
<div class="lock-page__header"> <LockOutlined />
<img src="../../../assets/images/header.jpg" class="lock-page__header-img" /> <span>{{ t('sys.lock.unlock') }}</span>
<p class="lock-page__header-name">{{ realName }}</p>
</div> </div>
<BasicForm @register="register" v-if="!getIsNotPwd" />
<Alert v-if="errMsgRef" type="error" :message="t('alert')" banner /> <div :class="`${prefixCls}__date`">
<div class="lock-page__footer"> <div :class="`${prefixCls}__hour`">
<a-button type="default" class="mt-2 mr-2" @click="goLogin" v-if="!getIsNotPwd"> {{ hour }}
<span class="meridiem" v-show="showDate">{{ meridiem }}</span>
</div>
<div :class="`${prefixCls}__minute`">{{ minute }} </div>
</div>
<transition name="fade-slide">
<div :class="`${prefixCls}-entry`" v-show="!showDate">
<div :class="`${prefixCls}-entry-content`">
<div :class="`${prefixCls}-entry__header`">
<img src="/@/assets/images/header.jpg" :class="`${prefixCls}-entry__header-img`" />
<p :class="`${prefixCls}-entry__header-name`">{{ realName }}</p>
</div>
<InputPassword :placeholder="t('sys.lock.placeholder')" v-model:value="password" />
<span :class="`${prefixCls}-entry__err-msg`" v-if="errMsgRef">
{{ t('sys.lock.alert') }}
</span>
<div :class="`${prefixCls}-entry__footer`">
<a-button
type="link"
size="small"
class="mt-2 mr-2"
:disabled="loadingRef"
@click="handleShowForm(true)"
>
{{ t('sys.lock.back') }}
</a-button>
<a-button
type="link"
size="small"
class="mt-2 mr-2"
:disabled="loadingRef"
@click="goLogin"
>
{{ t('sys.lock.backToLogin') }} {{ t('sys.lock.backToLogin') }}
</a-button> </a-button>
<a-button type="primary" class="mt-2" @click="unLock(!getIsNotPwd)" :loading="loadingRef"> <a-button class="mt-2" type="link" size="small" @click="unLock()" :loading="loadingRef">
{{ t('sys.lock.entry') }} {{ t('sys.lock.entry') }}
</a-button> </a-button>
</div> </div>
</div> </div>
</div> </div>
</transition>
<div :class="`${prefixCls}__footer-date`">
<div class="time" v-show="!showDate">
{{ hour }}:{{ minute }} <span class="meridiem">{{ meridiem }}</span>
</div>
<div class="date"> {{ year }}/{{ month }}/{{ day }} {{ week }} </div>
</div>
</div>
</template> </template>
<script lang="ts"> <script lang="ts">
import { defineComponent, ref, computed } from 'vue'; import { defineComponent, ref, computed } from 'vue';
import { Alert } from 'ant-design-vue'; import { Alert, Input } from 'ant-design-vue';
import { BasicForm, useForm } from '/@/components/Form';
import { userStore } from '/@/store/modules/user'; import { userStore } from '/@/store/modules/user';
import { appStore } from '/@/store/modules/app'; import { lockStore } from '/@/store/modules/lock';
import { useI18n } from '/@/hooks/web/useI18n'; import { useI18n } from '/@/hooks/web/useI18n';
import { useNow } from './useNow';
import { useDesign } from '/@/hooks/web/useDesign';
import { LockOutlined } from '@ant-design/icons-vue';
export default defineComponent({ export default defineComponent({
name: 'LockPage', name: 'LockPage',
components: { Alert, BasicForm }, components: { Alert, LockOutlined, InputPassword: Input.Password },
setup() { setup() {
const passwordRef = ref('');
const loadingRef = ref(false); const loadingRef = ref(false);
const errMsgRef = ref(false); const errMsgRef = ref(false);
const showDate = ref(true);
const { prefixCls } = useDesign('lock-page');
const { start, stop, ...state } = useNow(true);
const { t } = useI18n(); const { t } = useI18n();
const [register, { validateFields }] = useForm({
showActionButtonGroup: false,
schemas: [
{
field: 'password',
label: '',
component: 'InputPassword',
componentProps: {
style: { width: '100%' },
placeholder: t('sys.lock.placeholder'),
},
rules: [{ required: true }],
},
],
});
const realName = computed(() => { const realName = computed(() => {
const { realName } = userStore.getUserInfoState || {}; const { realName } = userStore.getUserInfoState || {};
return realName; return realName;
}); });
const getIsNotPwd = computed(() => {
if (!appStore.getLockInfo) {
return true;
}
return appStore.getLockInfo.pwd === undefined;
});
/** /**
* @description: unLock * @description: unLock
*/ */
async function unLock(valid = true) { async function unLock() {
let password = ''; if (!passwordRef.value) {
if (valid) {
try {
const values = (await validateFields()) as any;
password = values.password;
} catch (error) {
return; return;
} }
} let password = passwordRef.value;
try { try {
loadingRef.value = true; loadingRef.value = true;
const res = await appStore.unLockAction({ password, valid }); const res = await lockStore.unLockAction({ password });
errMsgRef.value = !res; errMsgRef.value = !res;
} finally { } finally {
loadingRef.value = false; loadingRef.value = false;
...@@ -88,53 +111,166 @@ ...@@ -88,53 +111,166 @@
function goLogin() { function goLogin() {
userStore.loginOut(true); userStore.loginOut(true);
appStore.resetLockInfo(); lockStore.resetLockInfo();
}
function handleShowForm(show = false) {
showDate.value = show;
} }
return { return {
register,
getIsNotPwd,
goLogin, goLogin,
realName, realName,
unLock, unLock,
errMsgRef, errMsgRef,
loadingRef, loadingRef,
t, t,
prefixCls,
showDate,
password: passwordRef,
handleShowForm,
...state,
}; };
}, },
}); });
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
@import (reference) '../../../design/index.less'; @import (reference) '../../../design/index.less';
@prefix-cls: ~'@{namespace}-lock-page';
.lock-page { .@{prefix-cls} {
position: fixed; position: fixed;
top: 0; top: 0;
right: 0;
bottom: 0;
left: 0; left: 0;
z-index: 999999; z-index: 3000;
display: flex; display: flex;
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
background: url(../../../assets/images/lock-page.jpg) no-repeat; // background: rgba(23, 27, 41);
background-size: 100% 100%; background: #000;
align-items: center; align-items: center;
justify-content: flex-end; justify-content: center;
&__entry { &__unlock {
position: absolute;
top: 0;
left: 50%;
display: flex;
height: 50px;
padding-top: 20px;
font-size: 18px;
color: #fff;
cursor: pointer;
transform: translate(-50%, 0);
flex-direction: column;
align-items: center;
justify-content: space-between;
transition: all 0.3s;
}
&__date {
display: flex;
width: 100vw;
height: 100vh;
align-items: center;
justify-content: center;
}
&__hour {
position: relative; position: relative;
width: 400px; margin-right: 80px;
// height: 260px;
padding: 80px 50px 50px 50px; .meridiem {
margin-right: 50px; position: absolute;
background: #fff; top: 20px;
border-radius: 6px; left: 20px;
font-size: 26px;
}
@media (max-width: @screen-xs) {
margin-right: 20px;
}
} }
&__header { &__hour,
&__minute {
display: flex;
width: 40%;
height: 74%;
// font-size: 50em;
font-weight: 700;
color: #bababa;
background: #141313;
border-radius: 30px;
justify-content: center;
align-items: center;
// .respond-to(large-only, { font-size: 25em;});
// .respond-to(large-only, { font-size: 30em;});
@media (min-width: @screen-xxxl-min) {
font-size: 46em;
}
@media (min-width: @screen-xl-max) and (max-width: @screen-xxl-max) {
font-size: 38em;
}
@media (min-width: @screen-lg-max) and (max-width: @screen-xl-max) {
font-size: 30em;
}
@media (min-width: @screen-md-max) and (max-width: @screen-lg-max) {
font-size: 23em;
}
@media (min-width: @screen-sm-max) and (max-width: @screen-md-max) {
font-size: 19em;
}
@media (min-width: @screen-xs-max) and (max-width: @screen-sm-max) {
font-size: 13em;
}
@media (max-width: @screen-xs) {
height: 50%;
font-size: 6em;
border-radius: 20px;
}
}
&__footer-date {
position: absolute;
bottom: 20px;
left: 50%;
font-family: helvetica;
color: #bababa;
transform: translate(-50%, 0);
.time {
font-size: 50px;
.meridiem {
font-size: 32px;
}
}
.date {
font-size: 26px;
}
}
&-entry {
position: absolute; position: absolute;
top: -35px; top: 0;
left: calc(50% - 45px); left: 0;
width: auto; display: flex;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
justify-content: center;
align-items: center;
&-content {
width: 260px;
}
&__header {
text-align: center; text-align: center;
&-img { &-img {
...@@ -144,11 +280,21 @@ ...@@ -144,11 +280,21 @@
&-name { &-name {
margin-top: 5px; margin-top: 5px;
font-weight: 500;
color: #bababa;
} }
} }
&__err-msg {
display: inline-block;
margin-top: 10px;
color: @error-color;
}
&__footer { &__footer {
text-align: center; display: flex;
justify-content: space-between;
}
} }
} }
</style> </style>
import moment from 'moment';
import { reactive, toRefs } from 'vue';
import { tryOnMounted, tryOnUnmounted } from '/@/utils/helper/vueHelper';
import { useLocaleSetting } from '/@/hooks/setting/useLocaleSetting';
export function useNow(immediate = true) {
const { getLang } = useLocaleSetting();
const localData = moment.localeData(getLang.value);
let timer: IntervalHandle;
const state = reactive({
year: 0,
month: 0,
week: '',
day: 0,
hour: '',
minute: '',
second: 0,
meridiem: '',
});
const update = () => {
const now = moment();
const h = now.format('HH');
const m = now.format('mm');
const s = now.get('s');
state.year = now.get('y');
state.month = now.get('M');
state.week = localData.weekdays()[now.day()];
state.day = now.get('D');
state.hour = h;
state.minute = m;
state.second = s;
state.meridiem = localData.meridiem(Number(h), Number(h), true);
};
function start() {
update();
clearInterval(timer);
timer = setInterval(() => update(), 1000);
}
function stop() {
clearInterval(timer);
}
tryOnMounted(() => {
immediate && start();
});
tryOnUnmounted(() => {
stop();
});
return {
...toRefs(state),
start,
stop,
};
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论