mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
v3.0.7,新增全屏加载动画,修复一些小问题
This commit is contained in:
parent
0daa891e11
commit
61fdc3ff95
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ray-template",
|
"name": "ray-template",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "3.0.6",
|
"version": "3.0.7",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
@ -1,12 +1,18 @@
|
|||||||
import RayGlobalProvider from '@/components/RayGlobalProvider/index'
|
import RayGlobalProvider from '@/components/RayGlobalProvider/index'
|
||||||
import { RouterView } from 'vue-router'
|
import { RouterView } from 'vue-router'
|
||||||
|
import GlobalSpin from '@/spin/index'
|
||||||
|
|
||||||
const App = defineComponent({
|
const App = defineComponent({
|
||||||
name: 'App',
|
name: 'App',
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<RayGlobalProvider>
|
<RayGlobalProvider>
|
||||||
<RouterView />
|
<GlobalSpin>
|
||||||
|
{{
|
||||||
|
default: () => <RouterView />,
|
||||||
|
description: () => 'lodaing...',
|
||||||
|
}}
|
||||||
|
</GlobalSpin>
|
||||||
</RayGlobalProvider>
|
</RayGlobalProvider>
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
@ -11,14 +11,18 @@ import { useSetting } from '@/store'
|
|||||||
const Layout = defineComponent({
|
const Layout = defineComponent({
|
||||||
name: 'Layout',
|
name: 'Layout',
|
||||||
setup() {
|
setup() {
|
||||||
const menuStore = useSetting()
|
const settingStore = useSetting()
|
||||||
|
|
||||||
const { height: windowHeight } = useWindowSize()
|
const { height: windowHeight } = useWindowSize()
|
||||||
const modelReloadRoute = computed(() => menuStore.reloadRouteSwitch)
|
const {
|
||||||
const modelMenuTagSwitch = computed(() => menuStore.menuTagSwitch)
|
themeValue,
|
||||||
|
reloadRouteSwitch: modelReloadRoute,
|
||||||
|
menuTagSwitch: modelMenuTagSwitch,
|
||||||
|
} = storeToRefs(settingStore)
|
||||||
const cssVarsRef = computed(() => {
|
const cssVarsRef = computed(() => {
|
||||||
let cssVar = {}
|
let cssVar = {}
|
||||||
|
|
||||||
if (menuStore.menuTagSwitch) {
|
if (settingStore.menuTagSwitch) {
|
||||||
cssVar = {
|
cssVar = {
|
||||||
'--layout-content-height': 'calc(100% - 110px)',
|
'--layout-content-height': 'calc(100% - 110px)',
|
||||||
}
|
}
|
||||||
@ -40,12 +44,13 @@ const Layout = defineComponent({
|
|||||||
modelMenuTagSwitch,
|
modelMenuTagSwitch,
|
||||||
cssVarsRef,
|
cssVarsRef,
|
||||||
copyright,
|
copyright,
|
||||||
|
themeValue,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
class="layout"
|
class={['layout', this.themeValue ? 'layout--dark' : '']}
|
||||||
style={[`height: ${this.windowHeight}px`, this.cssVarsRef]}
|
style={[`height: ${this.windowHeight}px`, this.cssVarsRef]}
|
||||||
>
|
>
|
||||||
<NLayout class="layout-full" hasSider>
|
<NLayout class="layout-full" hasSider>
|
||||||
|
9
src/spin/hook.ts
Normal file
9
src/spin/hook.ts
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
export const spinValue = ref(false)
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param bool has spin
|
||||||
|
*
|
||||||
|
* @remark 使用 spin 全屏加载效果工具函数
|
||||||
|
*/
|
||||||
|
export const useSpin = (bool: boolean) => (spinValue.value = bool)
|
67
src/spin/index.tsx
Normal file
67
src/spin/index.tsx
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author Ray <https://github.com/XiaoDaiGua-Ray>
|
||||||
|
*
|
||||||
|
* @date 2023-01-18
|
||||||
|
*
|
||||||
|
* @workspace ray-template
|
||||||
|
*
|
||||||
|
* @remark 今天也是元气满满撸代码的一天
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { NSpin } from 'naive-ui'
|
||||||
|
|
||||||
|
import { spinProps } from 'naive-ui'
|
||||||
|
import { spinValue } from './hook'
|
||||||
|
|
||||||
|
export { useSpin } from './hook'
|
||||||
|
|
||||||
|
const GlobalSpin = defineComponent({
|
||||||
|
name: 'GlobalSpin',
|
||||||
|
props: {
|
||||||
|
...spinProps,
|
||||||
|
},
|
||||||
|
setup() {
|
||||||
|
const overrides = {
|
||||||
|
opacitySpinning: '0',
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
spinValue,
|
||||||
|
overrides,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<NSpin
|
||||||
|
{...this.$props}
|
||||||
|
show={this.spinValue}
|
||||||
|
themeOverrides={this.overrides}
|
||||||
|
>
|
||||||
|
{{
|
||||||
|
default: () => this.$slots.default?.(),
|
||||||
|
description: () => this.$slots.description?.(),
|
||||||
|
}}
|
||||||
|
</NSpin>
|
||||||
|
)
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
export default GlobalSpin
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* 全屏加载效果
|
||||||
|
*
|
||||||
|
* 基于 Naive UI Spin 组件
|
||||||
|
*
|
||||||
|
* 使用方法
|
||||||
|
* 1. import { useSpin } from '@/spin'
|
||||||
|
* 2. useSpin(true) | useSpin(false)
|
||||||
|
*
|
||||||
|
* 仅需按照上述步骤实现全屏加载动画
|
||||||
|
*
|
||||||
|
* 注意
|
||||||
|
* 1. 该组件为全屏加载动画效果, 其遮罩会导致页面元素不可被命中
|
||||||
|
* 2. 如果需要使用该组件请注意控制取消时机
|
||||||
|
*/
|
@ -14,6 +14,7 @@ export const useSetting = defineStore(
|
|||||||
reloadRouteSwitch: true, // 刷新路由开关
|
reloadRouteSwitch: true, // 刷新路由开关
|
||||||
menuTagSwitch: true, // 多标签页开关
|
menuTagSwitch: true, // 多标签页开关
|
||||||
naiveLocal: getDefaultNaiveLocal(), // `naive ui` 语言包
|
naiveLocal: getDefaultNaiveLocal(), // `naive ui` 语言包
|
||||||
|
spinSwitch: false, // 全屏加载
|
||||||
})
|
})
|
||||||
const { locale } = useI18n()
|
const { locale } = useI18n()
|
||||||
|
|
||||||
@ -33,9 +34,15 @@ export const useSetting = defineStore(
|
|||||||
* @param key `settingState` 对应开关属性值
|
* @param key `settingState` 对应开关属性值
|
||||||
*
|
*
|
||||||
* @remark 仅适用于值为 `boolean` 的切换
|
* @remark 仅适用于值为 `boolean` 的切换
|
||||||
|
* @remark 不知道如何写: 返回属性中所有指定类型值... 如果有知道的一定要私信告知一下
|
||||||
*/
|
*/
|
||||||
const changeSwitcher = (bool: boolean, key: keyof typeof settingState) => {
|
const changeSwitcher = (bool: boolean, key: keyof typeof settingState) => {
|
||||||
;(settingState[key] as unknown) = bool
|
if (
|
||||||
|
Object.hasOwn(settingState, key) &&
|
||||||
|
typeof settingState[key] === 'boolean'
|
||||||
|
) {
|
||||||
|
;(settingState[key] as unknown) = bool
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
5
src/types/component.d.ts
vendored
Normal file
5
src/types/component.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
export {}
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
declare type ComponentSize = 'small' | 'medium' | 'large'
|
||||||
|
}
|
@ -1,5 +1,6 @@
|
|||||||
import { NForm, NFormItem, NInput, NButton } from 'naive-ui'
|
import { NForm, NFormItem, NInput, NButton } from 'naive-ui'
|
||||||
import { setCache } from '@/utils/cache'
|
import { setCache } from '@/utils/cache'
|
||||||
|
import { useSpin } from '@/spin'
|
||||||
|
|
||||||
import type { FormInst } from 'naive-ui'
|
import type { FormInst } from 'naive-ui'
|
||||||
|
|
||||||
@ -16,7 +17,6 @@ const Signin = defineComponent({
|
|||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const signinForm = ref(useSigninForm())
|
const signinForm = ref(useSigninForm())
|
||||||
const loginFormRef = ref<FormInst>()
|
const loginFormRef = ref<FormInst>()
|
||||||
const loading = ref(false)
|
|
||||||
|
|
||||||
const rules = {
|
const rules = {
|
||||||
name: {
|
name: {
|
||||||
@ -33,13 +33,15 @@ const Signin = defineComponent({
|
|||||||
const handleLogin = () => {
|
const handleLogin = () => {
|
||||||
loginFormRef.value?.validate((valid) => {
|
loginFormRef.value?.validate((valid) => {
|
||||||
if (!valid) {
|
if (!valid) {
|
||||||
window.$message.info('登陆中...')
|
useSpin(true)
|
||||||
|
|
||||||
loading.value = true
|
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
router.push('/dashboard')
|
router.push('/dashboard')
|
||||||
|
|
||||||
|
useSpin(false)
|
||||||
|
|
||||||
|
window.$message.success(`欢迎${signinForm.value.name}登陆~`)
|
||||||
|
|
||||||
setCache('token', 'tokenValue')
|
setCache('token', 'tokenValue')
|
||||||
setCache('person', signinForm.value)
|
setCache('person', signinForm.value)
|
||||||
}, 2 * 1000)
|
}, 2 * 1000)
|
||||||
@ -54,7 +56,6 @@ const Signin = defineComponent({
|
|||||||
loginFormRef,
|
loginFormRef,
|
||||||
handleLogin,
|
handleLogin,
|
||||||
rules,
|
rules,
|
||||||
loading,
|
|
||||||
t,
|
t,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -78,7 +79,6 @@ const Signin = defineComponent({
|
|||||||
style={['width: 100%', 'margin-to: 18px']}
|
style={['width: 100%', 'margin-to: 18px']}
|
||||||
type="primary"
|
type="primary"
|
||||||
onClick={this.handleLogin.bind(this)}
|
onClick={this.handleLogin.bind(this)}
|
||||||
loading={this.loading}
|
|
||||||
>
|
>
|
||||||
{this.t('LoginModule.Login')}
|
{this.t('LoginModule.Login')}
|
||||||
</NButton>
|
</NButton>
|
||||||
|
@ -25,6 +25,7 @@ const Login = defineComponent({
|
|||||||
const { height: windowHeight } = useWindowSize()
|
const { height: windowHeight } = useWindowSize()
|
||||||
const settingStore = useSetting()
|
const settingStore = useSetting()
|
||||||
const { updateLocale } = settingStore
|
const { updateLocale } = settingStore
|
||||||
|
|
||||||
return {
|
return {
|
||||||
...toRefs(state),
|
...toRefs(state),
|
||||||
windowHeight,
|
windowHeight,
|
||||||
|
@ -20,6 +20,7 @@ import {
|
|||||||
NDatePicker,
|
NDatePicker,
|
||||||
NInputNumber,
|
NInputNumber,
|
||||||
NSpace,
|
NSpace,
|
||||||
|
NSwitch,
|
||||||
} from 'naive-ui'
|
} from 'naive-ui'
|
||||||
import RayTable from '@/components/RayTable/index'
|
import RayTable from '@/components/RayTable/index'
|
||||||
import RayCollapseGrid from '@/components/RayCollapseGrid/index'
|
import RayCollapseGrid from '@/components/RayCollapseGrid/index'
|
||||||
@ -122,8 +123,11 @@ const TableView = defineComponent({
|
|||||||
key: 'delete',
|
key: 'delete',
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
const gridItemCount = ref(4)
|
const state = reactive({
|
||||||
const gridCollapsedRows = ref(1)
|
gridItemCount: 4,
|
||||||
|
gridCollapsedRows: 1,
|
||||||
|
tableLoading: false,
|
||||||
|
})
|
||||||
|
|
||||||
const handleMenuSelect = (key: string | number, idx: number) => {
|
const handleMenuSelect = (key: string | number, idx: number) => {
|
||||||
if (key === 'delete') {
|
if (key === 'delete') {
|
||||||
@ -132,13 +136,12 @@ const TableView = defineComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
...toRefs(state),
|
||||||
tableData,
|
tableData,
|
||||||
actionColumns,
|
actionColumns,
|
||||||
baseColumns,
|
baseColumns,
|
||||||
tableMenuOptions,
|
tableMenuOptions,
|
||||||
handleMenuSelect,
|
handleMenuSelect,
|
||||||
gridItemCount,
|
|
||||||
gridCollapsedRows,
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
@ -218,13 +221,20 @@ const TableView = defineComponent({
|
|||||||
</NCard>
|
</NCard>
|
||||||
<NCard title="基础使用" style={['margin-top: 18px']}>
|
<NCard title="基础使用" style={['margin-top: 18px']}>
|
||||||
<RayTable
|
<RayTable
|
||||||
title="基础使用"
|
title={h(
|
||||||
|
NSwitch,
|
||||||
|
{
|
||||||
|
onUpdateValue: (value: boolean) => (this.tableLoading = value),
|
||||||
|
},
|
||||||
|
{},
|
||||||
|
)}
|
||||||
data={this.tableData}
|
data={this.tableData}
|
||||||
columns={this.baseColumns}
|
columns={this.baseColumns}
|
||||||
action={false}
|
action={false}
|
||||||
pagination={{
|
pagination={{
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
}}
|
}}
|
||||||
|
loading={this.tableLoading}
|
||||||
>
|
>
|
||||||
{{
|
{{
|
||||||
tableFooter: () => '表格的底部内容区域,有时候你可能会用上',
|
tableFooter: () => '表格的底部内容区域,有时候你可能会用上',
|
||||||
|
@ -8,7 +8,7 @@ import {
|
|||||||
useSVGIcon,
|
useSVGIcon,
|
||||||
} from './vite-plugin/index'
|
} from './vite-plugin/index'
|
||||||
|
|
||||||
import vueJsx from '@vitejs/plugin-vue-jsx'
|
import ViteVueJSX from '@vitejs/plugin-vue-jsx'
|
||||||
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
|
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
|
||||||
import ViteInspect from 'vite-plugin-inspect'
|
import ViteInspect from 'vite-plugin-inspect'
|
||||||
import viteSvgLoader from 'vite-svg-loader'
|
import viteSvgLoader from 'vite-svg-loader'
|
||||||
@ -54,7 +54,7 @@ export default defineConfig(async ({ mode }) => {
|
|||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
vue({ reactivityTransform: true }),
|
vue({ reactivityTransform: true }),
|
||||||
vueJsx(),
|
ViteVueJSX(),
|
||||||
title,
|
title,
|
||||||
ViteInspect(), // 仅适用于开发模式(检查 `Vite` 插件的中间状态)
|
ViteInspect(), // 仅适用于开发模式(检查 `Vite` 插件的中间状态)
|
||||||
VueI18nPlugin(),
|
VueI18nPlugin(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user