123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <template>
- <BasicModal
- :footer="null"
- :title="t('layout.header.lockScreen')"
- v-bind="$attrs"
- :class="prefixCls"
- @register="register"
- >
- <div :class="`${prefixCls}__entry`">
- <div :class="`${prefixCls}__header`">
- <img src="/@/assets/images/header.jpg" :class="`${prefixCls}__header-img`" />
- <p :class="`${prefixCls}__header-name`">{{ getRealName }}</p>
- </div>
- <BasicForm @register="registerForm" />
- <div :class="`${prefixCls}__footer`">
- <a-button type="primary" block class="mt-2" @click="handleLock">
- {{ t('layout.header.lockScreenBtn') }}
- </a-button>
- </div>
- </div>
- </BasicModal>
- </template>
- <script lang="ts">
- import { defineComponent, computed } from 'vue';
- import { useI18n } from '/@/hooks/web/useI18n';
- import { useDesign } from '/@/hooks/web/useDesign';
- import { BasicModal, useModalInner } from '/@/components/Modal/index';
- import { BasicForm, useForm } from '/@/components/Form/index';
- import { userStore } from '/@/store/modules/user';
- import { lockStore } from '/@/store/modules/lock';
- export default defineComponent({
- name: 'LockModal',
- components: { BasicModal, BasicForm },
- setup() {
- const { t } = useI18n();
- const { prefixCls } = useDesign('header-lock-modal');
- const getRealName = computed(() => {
- return userStore.getUserInfoState?.realName;
- });
- const [register, { closeModal }] = useModalInner();
- const [registerForm, { validateFields, resetFields }] = useForm({
- showActionButtonGroup: false,
- schemas: [
- {
- field: 'password',
- label: t('layout.header.lockScreenPassword'),
- component: 'InputPassword',
- required: true,
- },
- ],
- });
- async function handleLock() {
- const values = (await validateFields()) as any;
- const password: string | undefined = values.password;
- closeModal();
- lockStore.commitLockInfoState({
- isLock: true,
- pwd: password,
- });
- await resetFields();
- }
- return {
- t,
- prefixCls,
- getRealName,
- register,
- registerForm,
- handleLock,
- };
- },
- });
- </script>
- <style lang="less">
- @import (reference) '../../../../../design/index.less';
- @prefix-cls: ~'@{namespace}-header-lock-modal';
- .@{prefix-cls} {
- &__entry {
- position: relative;
- height: 240px;
- padding: 130px 30px 60px 30px;
- background: #fff;
- border-radius: 10px;
- }
- &__header {
- position: absolute;
- top: 0;
- left: calc(50% - 45px);
- width: auto;
- text-align: center;
- &-img {
- width: 70px;
- border-radius: 50%;
- }
- &-name {
- margin-top: 5px;
- }
- }
- &__footer {
- text-align: center;
- }
- }
- </style>
|