部分细节优化

This commit is contained in:
ray_wuhao 2023-05-18 17:12:23 +08:00
parent dab763cf08
commit 73055fd262
16 changed files with 177 additions and 49 deletions

View File

@ -8,7 +8,7 @@
## 感谢 ## 感谢
> 感谢 <https://yunkuangao.me/> 对于本人的支持。 > 感谢 <https://me.yka.moe/> 对于本人的支持。
## 预览地址 ## 预览地址

11
auto-imports.d.ts vendored
View File

@ -50,6 +50,8 @@ declare global {
const nextTick: typeof import('vue')['nextTick'] const nextTick: typeof import('vue')['nextTick']
const onActivated: typeof import('vue')['onActivated'] const onActivated: typeof import('vue')['onActivated']
const onBeforeMount: typeof import('vue')['onBeforeMount'] const onBeforeMount: typeof import('vue')['onBeforeMount']
const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate']
const onBeforeUnmount: typeof import('vue')['onBeforeUnmount'] const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate'] const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
const onClickOutside: typeof import('@vueuse/core')['onClickOutside'] const onClickOutside: typeof import('@vueuse/core')['onClickOutside']
@ -81,6 +83,7 @@ declare global {
const refThrottled: typeof import('@vueuse/core')['refThrottled'] const refThrottled: typeof import('@vueuse/core')['refThrottled']
const refWithControl: typeof import('@vueuse/core')['refWithControl'] const refWithControl: typeof import('@vueuse/core')['refWithControl']
const resolveComponent: typeof import('vue')['resolveComponent'] const resolveComponent: typeof import('vue')['resolveComponent']
const resolveDirective: typeof import('vue')['resolveDirective']
const resolveRef: typeof import('@vueuse/core')['resolveRef'] const resolveRef: typeof import('@vueuse/core')['resolveRef']
const resolveUnref: typeof import('@vueuse/core')['resolveUnref'] const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
const setActivePinia: typeof import('pinia')['setActivePinia'] const setActivePinia: typeof import('pinia')['setActivePinia']
@ -112,10 +115,12 @@ declare global {
const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter'] const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
const useArrayFind: typeof import('@vueuse/core')['useArrayFind'] const useArrayFind: typeof import('@vueuse/core')['useArrayFind']
const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex'] const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex']
const useArrayFindLast: typeof import('@vueuse/core')['useArrayFindLast']
const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin'] const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin']
const useArrayMap: typeof import('@vueuse/core')['useArrayMap'] const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce'] const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
const useArraySome: typeof import('@vueuse/core')['useArraySome'] const useArraySome: typeof import('@vueuse/core')['useArraySome']
const useArrayUnique: typeof import('@vueuse/core')['useArrayUnique']
const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue'] const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
const useAsyncState: typeof import('@vueuse/core')['useAsyncState'] const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
const useAttrs: typeof import('vue')['useAttrs'] const useAttrs: typeof import('vue')['useAttrs']
@ -127,6 +132,7 @@ declare global {
const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation'] const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
const useCached: typeof import('@vueuse/core')['useCached'] const useCached: typeof import('@vueuse/core')['useCached']
const useClipboard: typeof import('@vueuse/core')['useClipboard'] const useClipboard: typeof import('@vueuse/core')['useClipboard']
const useCloned: typeof import('@vueuse/core')['useCloned']
const useColorMode: typeof import('@vueuse/core')['useColorMode'] const useColorMode: typeof import('@vueuse/core')['useColorMode']
const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog'] const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
const useCounter: typeof import('@vueuse/core')['useCounter'] const useCounter: typeof import('@vueuse/core')['useCounter']
@ -177,6 +183,7 @@ declare global {
const useIntervalFn: typeof import('@vueuse/core')['useIntervalFn'] const useIntervalFn: typeof import('@vueuse/core')['useIntervalFn']
const useKeyModifier: typeof import('@vueuse/core')['useKeyModifier'] const useKeyModifier: typeof import('@vueuse/core')['useKeyModifier']
const useLastChanged: typeof import('@vueuse/core')['useLastChanged'] const useLastChanged: typeof import('@vueuse/core')['useLastChanged']
const useLink: typeof import('vue-router')['useLink']
const useLoadingBar: typeof import('naive-ui')['useLoadingBar'] const useLoadingBar: typeof import('naive-ui')['useLoadingBar']
const useLocalStorage: typeof import('@vueuse/core')['useLocalStorage'] const useLocalStorage: typeof import('@vueuse/core')['useLocalStorage']
const useMagicKeys: typeof import('@vueuse/core')['useMagicKeys'] const useMagicKeys: typeof import('@vueuse/core')['useMagicKeys']
@ -202,11 +209,14 @@ declare global {
const useParallax: typeof import('@vueuse/core')['useParallax'] const useParallax: typeof import('@vueuse/core')['useParallax']
const usePermission: typeof import('@vueuse/core')['usePermission'] const usePermission: typeof import('@vueuse/core')['usePermission']
const usePointer: typeof import('@vueuse/core')['usePointer'] const usePointer: typeof import('@vueuse/core')['usePointer']
const usePointerLock: typeof import('@vueuse/core')['usePointerLock']
const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe'] const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme'] const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast']
const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark'] const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages'] const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion'] const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
const usePrevious: typeof import('@vueuse/core')['usePrevious']
const useRafFn: typeof import('@vueuse/core')['useRafFn'] const useRafFn: typeof import('@vueuse/core')['useRafFn']
const useRefHistory: typeof import('@vueuse/core')['useRefHistory'] const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver'] const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
@ -220,6 +230,7 @@ declare global {
const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage'] const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
const useShare: typeof import('@vueuse/core')['useShare'] const useShare: typeof import('@vueuse/core')['useShare']
const useSlots: typeof import('vue')['useSlots'] const useSlots: typeof import('vue')['useSlots']
const useSorted: typeof import('@vueuse/core')['useSorted']
const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition'] const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis'] const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
const useStepper: typeof import('@vueuse/core')['useStepper'] const useStepper: typeof import('@vueuse/core')['useStepper']

View File

@ -1,6 +1,6 @@
{ {
"name": "ray-template", "name": "ray-template",
"private": true, "private": false,
"version": "3.1.7", "version": "3.1.7",
"type": "module", "type": "module",
"scripts": { "scripts": {
@ -82,5 +82,26 @@
"vite-plugin-svg-icons": "^2.0.1", "vite-plugin-svg-icons": "^2.0.1",
"vite-svg-loader": "^3.4.0", "vite-svg-loader": "^3.4.0",
"vue-tsc": "^1.0.9" "vue-tsc": "^1.0.9"
} },
"description": "<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io.git"
},
"keywords": [
"ray-template",
"vue3.2模板",
"vue3-tsx-vite-pinia",
"ray template",
"Ray Template",
"admin template",
"中后台模板"
],
"author": "Ray",
"license": "ISC",
"bugs": {
"url": "https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io/issues"
},
"homepage": "https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io#readme"
} }

View File

@ -69,7 +69,9 @@ const RayLink = defineComponent({
round round
src={curr.icon} src={curr.icon}
style={['cursor: pointer']} style={['cursor: pointer']}
onClick={this.handleLinkClick.bind(this, curr)} {...{
onClick: this.handleLinkClick.bind(this, curr),
}}
objectFit="cover" objectFit="cover"
size={24} size={24}
/> />

View File

@ -151,8 +151,10 @@ const TableSetting = defineComponent({
class={['ray-table__setting-option--draggable']} class={['ray-table__setting-option--draggable']}
v-model={this.settingOptions} v-model={this.settingOptions}
itemKey="key" itemKey="key"
disabled={!this.disableDraggable} {...{
onEnd={this.handleDraggableEnd.bind(this)} disabled: !this.disableDraggable,
onEnd: this.handleDraggableEnd.bind(this),
}}
> >
{{ {{
item: ({ item: ({

View File

@ -386,7 +386,13 @@ const MenuTag = defineComponent({
customClassName="menu-tag__left-arrow" customClassName="menu-tag__left-arrow"
onClick={this.handleScrollX.bind(this, 'left')} onClick={this.handleScrollX.bind(this, 'left')}
/> />
<NScrollbar xScrollable ref="scrollRef" id={this.scrollBarUUID}> <NScrollbar
xScrollable
ref="scrollRef"
{...{
id: this.scrollBarUUID,
}}
>
<NSpace <NSpace
class="menu-tag-wrapper" class="menu-tag-wrapper"
wrap={false} wrap={false}
@ -399,11 +405,13 @@ const MenuTag = defineComponent({
curr.key !== this.rootPath && curr.key !== this.rootPath &&
this.modelMenuTagOptions.length > 1 this.modelMenuTagOptions.length > 1
} }
onClose={() => this.closeCurrentMenuTag(idx)} onClose={this.closeCurrentMenuTag.bind(this, idx)}
type={curr.key === this.menuKey ? 'primary' : 'default'} type={curr.key === this.menuKey ? 'primary' : 'default'}
onClick={this.handleTagClick.bind(this, curr)}
bordered={false} bordered={false}
onContextmenu={this.handleContextMenu.bind(this, idx)} {...{
onClick: this.handleTagClick.bind(this, curr),
onContextmenu: this.handleContextMenu.bind(this, idx),
}}
> >
{typeof curr.label === 'function' {typeof curr.label === 'function'
? curr.label() ? curr.label()

View File

@ -162,7 +162,9 @@ const GlobalSeach = defineComponent({
align="center" align="center"
wrapItem={false} wrapItem={false}
class="content-item" class="content-item"
onClick={this.handleSearchItemClick.bind(this, curr)} {...{
onClick: this.handleSearchItemClick.bind(this, curr),
}}
> >
<div class="content-item-icon"> <div class="content-item-icon">
{curr?.meta?.icon ? ( {curr?.meta?.icon ? (

View File

@ -0,0 +1,12 @@
.lock-screen {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
& .lock-screen__content {
width: 100%;
height: 100%;
}
}

View File

@ -0,0 +1,87 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-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<FormInst>()
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 (
<NModal
v-model:show={this.lockScreenSwitch}
transform-origin="center"
show
// closeOnEsc={false}
autoFocus={false}
maskClosable={false}
preset={!this.isLock ? 'dialog' : undefined}
title="锁定屏幕"
>
{!this.isLock ? (
/** 输入界面 */
<div class="lock-screen__input">
<NForm model={this.lockCondition} rules={this.rules} inline>
<NFormItem label="锁屏密码">
<NInput
v-model:value={this.lockCondition.pwd}
type="password"
/>
</NFormItem>
<NFormItem>
<NButton type="primary"></NButton>
</NFormItem>
</NForm>
</div>
) : (
/** 锁屏界面 */
<div class="lock-screen">
<div class="lock-screen__content"></div>
</div>
)}
</NModal>
)
},
})
export default LockScreen

View File

@ -4,4 +4,5 @@ export const useSwatchesColorOptions = () => [
'#2d8cf0', '#2d8cf0',
'#F0A020', '#F0A020',
'rgba(208, 48, 80, 1)', 'rgba(208, 48, 80, 1)',
'rgba(60, 53, 222, 1)',
] ]

View File

@ -17,9 +17,9 @@ import RayTooltipIcon from '@/components/RayTooltipIcon/index'
import SettingDrawer from './components/SettingDrawer/index' import SettingDrawer from './components/SettingDrawer/index'
import Breadcrumb from './components/Breadcrumb/index' import Breadcrumb from './components/Breadcrumb/index'
import GlobalSeach from './components/GlobalSeach/index' import GlobalSeach from './components/GlobalSeach/index'
import LockScreen from './components/LockScreen/index'
import { useSetting } from '@/store' import { useSetting, useSignin } from '@/store'
import { useSignin } from '@/store'
import { localOptions } from '@/locales/index' import { localOptions } from '@/locales/index'
import { useAvatarOptions } from './hook' import { useAvatarOptions } from './hook'
import { getCache } from '@/utils/cache' import { getCache } from '@/utils/cache'
@ -75,6 +75,12 @@ const SiderBar = defineComponent({
tooltip: t('headerTooltip.Search'), tooltip: t('headerTooltip.Search'),
eventKey: 'search', eventKey: 'search',
}, },
{
name: 'lock',
size: 18,
tooltip: t('headerTooltip.Lock'),
eventKey: 'lock',
},
{ {
name: 'fullscreen', name: 'fullscreen',
size: 18, size: 18,
@ -116,6 +122,9 @@ const SiderBar = defineComponent({
search: () => { search: () => {
globalSearchShown.value = true globalSearchShown.value = true
}, },
lock: () => {
changeSwitcher(true, 'lockScreenSwitch')
},
} }
const handleIconClick = (key: IconEventMap) => { const handleIconClick = (key: IconEventMap) => {
@ -157,6 +166,7 @@ const SiderBar = defineComponent({
return ( return (
<NLayoutHeader class="layout-header" bordered> <NLayoutHeader class="layout-header" bordered>
<GlobalSeach v-model:show={this.globalSearchShown} /> <GlobalSeach v-model:show={this.globalSearchShown} />
{/* <LockScreen /> */}
<NSpace <NSpace
class="layout-header__method" class="layout-header__method"
align="center" align="center"

View File

@ -34,6 +34,7 @@ export { naiveLocales, localOptions } from './language'
import type { App } from 'vue' import type { App } from 'vue'
import type { I18n } from 'vue-i18n' import type { I18n } from 'vue-i18n'
/** i18n 实例 */
export let i18n: I18n export let i18n: I18n
/** /**

View File

@ -1,7 +1,6 @@
import { i18n } from './index' import { i18n } from './index'
import type { WritableComputedRef } from 'vue' import type { WritableComputedRef } from 'vue'
import type { useI18n as _useI18n } from 'vue-i18n'
const getI18nKey = (namespace: string | undefined, key: string) => { const getI18nKey = (namespace: string | undefined, key: string) => {
if (!namespace) { if (!namespace) {

View File

@ -1,34 +0,0 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-03-14
*
* @workspace ray-template
*
* @remark
*/
/**
*
* TODO:
* -
* -
* -
* - (YYYY-MM-DD HH:mm)
*/
import type { PropType } from 'vue'
const LockScreen = defineComponent({
name: 'LockScreen',
// props: {},
setup() {
return {}
},
render() {
return <div class="lock-screen"></div>
},
})
export default LockScreen

View File

@ -17,6 +17,8 @@ interface SettingState {
breadcrumbSwitch: boolean breadcrumbSwitch: boolean
localeLanguage: string localeLanguage: string
invertSwitch: boolean invertSwitch: boolean
lockScreenSwitch: boolean
lockScreenInputSwitch: boolean
} }
export const useSetting = defineStore( export const useSetting = defineStore(
@ -42,6 +44,8 @@ export const useSetting = defineStore(
invertSwitch: false, // 反转色模式 invertSwitch: false, // 反转色模式
breadcrumbSwitch: true, // 面包屑开关 breadcrumbSwitch: true, // 面包屑开关
localeLanguage: getDefaultLocal(), localeLanguage: getDefaultLocal(),
lockScreenSwitch: false, // 锁屏开关
lockScreenInputSwitch: false, // 锁屏输入状态开关
}) })
/** 修改当前语言 */ /** 修改当前语言 */

View File

@ -102,7 +102,9 @@ const RelyAbout = defineComponent({
<NTag <NTag
bordered={false} bordered={false}
type="info" type="info"
onClick={this.handleTagClick.bind(this, curr)} {...{
onClick: this.handleTagClick.bind(this, curr),
}}
style={[curr.url ? 'cursor: pointer' : '']} style={[curr.url ? 'cursor: pointer' : '']}
> >
{curr.label} {curr.label}