修复部分问题

This commit is contained in:
ray_wuhao 2023-04-06 14:40:20 +08:00
parent e455852b7d
commit a236fef068
13 changed files with 103 additions and 20 deletions

View File

@ -7,11 +7,16 @@
- 修复移动端登陆页显示问题 - 修复移动端登陆页显示问题
- 改进了一些方法逻辑的问题 - 改进了一些方法逻辑的问题
- 修改移动端自适应配置方案(现在使用 postcss-px-to-viewport),默认不启用 - 修改移动端自适应配置方案(现在使用 postcss-px-to-viewport),默认不启用
- 修复 RayTable 实例方法暴露错误
- 修复 sideBarLogo.icon 为空时警告问题,现在未配置该属性则不会渲染图标
- 修复 RayTable 演示页面 action 方法失效问题
### Feats ### Feats
- 新增加载动画 - 新增加载动画
- 新增配置入口(cfg.ts),现在可以直接配置首屏加载动画一些信息 - 现在可以直接配置首屏加载动画一些信息(cfg.ts)
- 新增对于 ejs 支持
- 补充一些细节注释
## 3.1.5 ## 3.1.5

38
cfg.ts
View File

@ -1,3 +1,41 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-04-06
*
* @workspace ray-template
*
* @remark
*/
/**
*
*
*
* :
* - 构建: 开发构建
* - 系统: 根路由
* - 请求: 代理配置
*
* , src/types/cfg.ts
* ```
* interface Config // config 内容类型配置
*
* interface AppConfig // __APP_CFG__ 内容配置
* ```
*
* __APP_CFG__
* ```
*
*
* const { rootRoute } = __APP_CFG__
*
* , __APP_CFG__ rootRoute
* __APP_CFG__ `window` (vite define window )
* ```
*/
import path from 'node:path' import path from 'node:path'
import { import {

View File

@ -16,8 +16,7 @@ const App = defineComponent({
/** 同步主题色变量至 body, 如果未获取到缓存值则已默认值填充 */ /** 同步主题色变量至 body, 如果未获取到缓存值则已默认值填充 */
const syncPrimaryColorToBody = () => { const syncPrimaryColorToBody = () => {
/** 默认值 */ const { primaryColor } = __APP_CFG__ // 默认主题色
const { primaryColor } = __APP_CFG__
const body = document.body const body = document.body
const primaryColorOverride = getCache('piniaSettingStore', 'localStorage') const primaryColorOverride = getCache('piniaSettingStore', 'localStorage')
@ -26,11 +25,13 @@ const App = defineComponent({
'primaryColorOverride.common.primaryColor', 'primaryColorOverride.common.primaryColor',
) )
/** 设置全局主题色 css 变量 */
body.style.setProperty('--ray-theme-primary-color', _p || primaryColor) body.style.setProperty('--ray-theme-primary-color', _p || primaryColor)
} }
/** 隐藏加载动画 */ /** 隐藏加载动画 */
const hiddenLoadingAnimation = () => { const hiddenLoadingAnimation = () => {
/** pre-loading-animation 是默认 id */
const el = document.getElementById('pre-loading-animation') const el = document.getElementById('pre-loading-animation')
if (el) { if (el) {
@ -43,6 +44,7 @@ const App = defineComponent({
syncPrimaryColorToBody() syncPrimaryColorToBody()
hiddenLoadingAnimation() hiddenLoadingAnimation()
/** 切换主题时, 同步更新 body class 以便于进行自定义 css 配置 */
watch( watch(
() => themeValue.value, () => themeValue.value,
(newData) => { (newData) => {

View File

@ -1,3 +1,4 @@
import RayTable from './src/index' import RayTable from './src/index'
export default RayTable export default RayTable
export type { RayTableInst } from './src/type'

View File

@ -36,7 +36,7 @@
import './index.scss' import './index.scss'
import { NDataTable, NCard, NDropdown, NDivider } from 'naive-ui' import { NDataTable, NCard, NDropdown } from 'naive-ui'
import TableSetting from './components/TableSetting/index' import TableSetting from './components/TableSetting/index'
import TableAction from './components/TableAction/index' import TableAction from './components/TableAction/index'
import TableSize from './components/TableSize/index' import TableSize from './components/TableSize/index'
@ -51,12 +51,15 @@ import type { ActionOptions } from './type'
import type { WritableComputedRef } from 'vue' import type { WritableComputedRef } from 'vue'
import type { DropdownOption } from 'naive-ui' import type { DropdownOption } from 'naive-ui'
import type { ExportExcelHeader } from '@use-utils/xlsx' import type { ExportExcelHeader } from '@use-utils/xlsx'
import type { DataTableInst } from 'naive-ui'
const RayTable = defineComponent({ const RayTable = defineComponent({
name: 'RayTable', name: 'RayTable',
props: props, props: props,
emits: ['update:columns', 'menuSelect', 'exportSuccess', 'exportError'], emits: ['update:columns', 'menuSelect', 'exportSuccess', 'exportError'],
setup(props, { emit }) { setup(props, { emit }) {
const rayTableInstance = ref<DataTableInst>()
const tableUUID = uuid() // 表格 id, 用于打印表格 const tableUUID = uuid() // 表格 id, 用于打印表格
const rayTableUUID = uuid() // RayTable id, 用于全屏表格 const rayTableUUID = uuid() // RayTable id, 用于全屏表格
const modelRightClickMenu = computed(() => props.rightClickMenu) const modelRightClickMenu = computed(() => props.rightClickMenu)
@ -205,6 +208,7 @@ const RayTable = defineComponent({
cssVars, cssVars,
handleChangeTableSize, handleChangeTableSize,
tableSize, tableSize,
rayTableInstance,
} }
}, },
render() { render() {
@ -219,14 +223,14 @@ const RayTable = defineComponent({
default: () => ( default: () => (
<> <>
<NDataTable <NDataTable
ref="rayTableInstance"
id={this.tableUUID} id={this.tableUUID}
{...this.$props} {...this.$props}
rowProps={this.handleRowProps.bind(this)} rowProps={this.handleRowProps.bind(this)}
size={this.tableSize} size={this.tableSize}
> >
{{ {{
empty: () => this.$slots?.empty?.(), ...this.$slots,
loading: () => this.$slots?.loading?.(),
}} }}
</NDataTable> </NDataTable>
{this.showMenu ? ( {this.showMenu ? (

View File

@ -4,6 +4,7 @@ import type {
DropdownDividerOption, DropdownDividerOption,
DropdownRenderOption, DropdownRenderOption,
DataTableBaseColumn, DataTableBaseColumn,
DataTableInst,
} from 'naive-ui' } from 'naive-ui'
import type { ComputedRef, WritableComputedRef, VNode } from 'vue' import type { ComputedRef, WritableComputedRef, VNode } from 'vue'
@ -70,3 +71,7 @@ export declare type VNodeChild = VNodeChildAtom | VNodeArrayChildren
export declare type TableColumnTitle = export declare type TableColumnTitle =
| string | string
| ((column: DataTableBaseColumn) => VNodeChild) | ((column: DataTableBaseColumn) => VNodeChild)
export declare interface RayTableInst {
rayTableInstance: DataTableInst
}

View File

@ -40,6 +40,7 @@ import type { App } from 'vue'
* *
* @remark locales json , () * @remark locales json , ()
* @remark key , , key , * @remark key , , key ,
* @remark 使使 i18n ally
*/ */
export const getMatchLanguageModule = () => { export const getMatchLanguageModule = () => {
const msg = {} const msg = {}

View File

@ -48,8 +48,15 @@ export const permissionRouter = (router: Router) => {
const role = computed(() => signinCallback.value.role) const role = computed(() => signinCallback.value.role)
const { meta } = to const { meta } = to
/**
*
* , ( dashboard)
* 使,
*/
const hasRole = () => { const hasRole = () => {
/** 如果未设置权限则默认无需鉴权 */
if (meta.role) { if (meta.role) {
/** 空权限列表默认无需鉴权 */
if (meta.role.length === 0) { if (meta.role.length === 0) {
return true return true
} else { } else {

View File

@ -19,6 +19,7 @@ export const constantRoutes = [
children: childrenRoutes, children: childrenRoutes,
}, },
{ {
/** 错误页面(404) */
path: '/:catchAll(.*)', path: '/:catchAll(.*)',
name: 'error-page', name: 'error-page',
component: () => import('@/views/error/index'), component: () => import('@/views/error/index'),

View File

@ -244,11 +244,15 @@ export const useMenu = defineStore(
/** /**
* *
* @remark menuTagOptions * @remark menuTagOptions
*
* Q: 为什么不直接使用 spliceMenTagOptions ?
* A: 因为直接将 menuTagOptions
*/ */
const emptyMenuTagOptions = () => { const emptyMenuTagOptions = () => {
menuState.menuTagOptions = [] menuState.menuTagOptions = []
} }
/** 监听路由变化并且更新路由菜单与菜单标签 */
watch( watch(
() => route.fullPath, () => route.fullPath,
(newData) => { (newData) => {

View File

@ -1,5 +1,6 @@
import { getDefaultLocal } from '@/language/index' import { getDefaultLocal } from '@/language/index'
import { setCache } from '@use-utils/cache' import { setCache } from '@use-utils/cache'
import { set } from 'lodash-es'
import type { ConditionalPick } from '@/types/type-utils' import type { ConditionalPick } from '@/types/type-utils'
import type { GlobalThemeOverrides } from 'naive-ui' import type { GlobalThemeOverrides } from 'naive-ui'
@ -19,6 +20,7 @@ export const useSetting = defineStore(
'setting', 'setting',
() => { () => {
const { primaryColor } = __APP_CFG__ const { primaryColor } = __APP_CFG__
const { locale } = useI18n()
const settingState = reactive<SettingState>({ const settingState = reactive<SettingState>({
drawerPlacement: 'right' as NaiveDrawerPlacement, drawerPlacement: 'right' as NaiveDrawerPlacement,
@ -35,7 +37,6 @@ export const useSetting = defineStore(
breadcrumbSwitch: true, // 面包屑开关 breadcrumbSwitch: true, // 面包屑开关
localeLanguage: getDefaultLocal(), localeLanguage: getDefaultLocal(),
}) })
const { locale } = useI18n()
/** 修改当前语言 */ /** 修改当前语言 */
const updateLocale = (key: string) => { const updateLocale = (key: string) => {
@ -47,8 +48,11 @@ export const useSetting = defineStore(
/** 切换主题色 */ /** 切换主题色 */
const changePrimaryColor = (value: string) => { const changePrimaryColor = (value: string) => {
settingState.primaryColorOverride.common!.primaryColor = value set(
settingState.primaryColorOverride.common!.primaryColorHover = value settingState,
'settingState.primaryColorOverride.common.primaryColorHover',
value,
)
const body = document.body const body = document.body
@ -62,7 +66,6 @@ export const useSetting = defineStore(
* @param key `settingState` * @param key `settingState`
* *
* @remark `boolean` * @remark `boolean`
* @remark 不知道如何写: 返回属性中所有指定类型值...
*/ */
const changeSwitcher = ( const changeSwitcher = (
bool: boolean, bool: boolean,

View File

@ -15,6 +15,8 @@
* 可以存储: 头像, , * 可以存储: 头像, ,
* *
* 使 sessionStorage * 使 sessionStorage
*
* signinCallback
*/ */
import { isEmpty } from 'lodash-es' import { isEmpty } from 'lodash-es'

View File

@ -11,30 +11,23 @@
import { import {
NLayout, NLayout,
NCard,
NTag, NTag,
NButton, NButton,
NGridItem, NGridItem,
NSelect, NSelect,
NInput, NInput,
NDatePicker, NDatePicker,
NInputNumber,
NSpace,
NSwitch, NSwitch,
NDescriptions,
NDescriptionsItem,
NP, NP,
NH6,
NH2, NH2,
NH3,
NUl, NUl,
NLi, NLi,
NOl,
} 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'
import type { DataTableColumns } from 'naive-ui' import type { DataTableColumns } from 'naive-ui'
import type { RayTableInst } from '@/components/RayTable/index'
type RowData = { type RowData = {
key: number key: number
@ -47,6 +40,8 @@ type RowData = {
const TableView = defineComponent({ const TableView = defineComponent({
name: 'TableView', name: 'TableView',
setup() { setup() {
const tableRef = ref<RayTableInst>()
const baseColumns = [ const baseColumns = [
{ {
title: 'Name', title: 'Name',
@ -83,6 +78,11 @@ const TableView = defineComponent({
return tags return tags
}, },
}, },
{
title: 'Remark',
key: 'remark',
width: 300,
},
{ {
title: 'Action', title: 'Action',
key: 'actions', key: 'actions',
@ -106,6 +106,7 @@ const TableView = defineComponent({
age: 32, age: 32,
address: 'New York No. 1 Lake Park', address: 'New York No. 1 Lake Park',
tags: ['nice', 'developer'], tags: ['nice', 'developer'],
remark: '我是一条很长很长的备注',
}, },
{ {
key: 1, key: 1,
@ -113,6 +114,7 @@ const TableView = defineComponent({
age: 42, age: 42,
address: 'London No. 1 Lake Park', address: 'London No. 1 Lake Park',
tags: ['wow'], tags: ['wow'],
remark: '我是一条很长很长的备注',
}, },
{ {
key: 2, key: 2,
@ -120,6 +122,7 @@ const TableView = defineComponent({
age: 32, age: 32,
address: 'Sidney No. 1 Lake Park', address: 'Sidney No. 1 Lake Park',
tags: ['cool', 'teacher'], tags: ['cool', 'teacher'],
remark: '我是一条很长很长的备注',
}, },
]) ])
const tableMenuOptions = [ const tableMenuOptions = [
@ -144,6 +147,10 @@ const TableView = defineComponent({
} }
} }
onMounted(() => {
console.log(tableRef.value?.rayTableInstance)
})
return { return {
...toRefs(state), ...toRefs(state),
tableData, tableData,
@ -151,6 +158,7 @@ const TableView = defineComponent({
baseColumns, baseColumns,
tableMenuOptions, tableMenuOptions,
handleMenuSelect, handleMenuSelect,
tableRef,
} }
}, },
render() { render() {
@ -221,6 +229,8 @@ const TableView = defineComponent({
</RayCollapseGrid> </RayCollapseGrid>
<RayTable <RayTable
style="margin-top: 18px" style="margin-top: 18px"
ref="tableRef"
scrollX={2000}
title={h( title={h(
NSwitch, NSwitch,
{ {
@ -229,7 +239,7 @@ const TableView = defineComponent({
{}, {},
)} )}
data={this.tableData} data={this.tableData}
columns={this.baseColumns} v-model:columns={this.actionColumns}
pagination={{ pagination={{
pageSize: 10, pageSize: 10,
}} }}
@ -238,7 +248,7 @@ const TableView = defineComponent({
onMenuSelect={this.handleMenuSelect.bind(this)} onMenuSelect={this.handleMenuSelect.bind(this)}
> >
{{ {{
tableFooter: () => '表格的底部内容区域,有时候你可能会用上', tableFooter: () => '表格的底部内容区域插槽,有时候你可能会用上',
}} }}
</RayTable> </RayTable>
</NLayout> </NLayout>