/** * * @author Ray * * @date 2023-05-13 * * @workspace ray-template * * @remark 今天也是元气满满撸代码的一天 */ import './index.scss' import { NModal, NInput, NForm, NFormItem, NButton } from 'naive-ui' import { useSetting } from '@/store' import { getCache, setCache } from '@/utils/cache' import type { FormInst } from 'naive-ui' const LockScreen = defineComponent({ name: 'LockScreen', setup() { const formRef = ref() const settingStore = useSetting() const { lockScreenSwitch, lockScreenInputSwitch } = storeToRefs(settingStore) const state = reactive({ lockCondition: { pwd: null, }, }) const rules = { pwd: {}, } const isLock = getCache('isLockScreen') === 'no' ? false : getCache('isLockScreen') return { lockScreenSwitch, lockScreenInputSwitch, rules, ...toRefs(state), isLock, } }, render() { return ( {!this.isLock ? ( /** 输入界面 */
锁屏
) : ( /** 锁屏界面 */
)}
) }, }) export default LockScreen