From 3fb016513bcd310b005ed62aeaea0adca0e4bfa8 Mon Sep 17 00:00:00 2001
From: XiaoDaiGua-Ray <443547225@qq.com>
Date: Tue, 10 Oct 2023 15:05:48 +0800
Subject: [PATCH] v4.2.2
---
.eslintrc.cjs | 1 +
CHANGELOG.md | 47 ++-
README-US.md => README-ZH.md | 96 ++---
README.md | 96 ++---
package.json | 2 +-
.../app/AppLockScreen/appLockVar.ts | 2 +
.../app/AppLockScreen/index.tsx | 2 +-
src/app-config/appConfig.ts | 2 +-
src/components/RChart/index.tsx | 91 +++--
src/components/RCollapseGrid/index.ts | 4 +-
src/components/RCollapseGrid/src/index.tsx | 10 +-
src/components/RIcon/index.tsx | 6 +-
src/components/RIframe/index.ts | 10 +-
src/components/RIframe/src/index.tsx | 101 +-----
src/components/RIframe/src/props.ts | 102 ++++++
src/components/RIframe/src/type.ts | 14 +
src/components/RQRCode/src/index.tsx | 10 +-
src/components/RTable/index.ts | 8 +-
src/components/RTable/src/Table.tsx | 184 ++++++++++
src/components/RTable/src/components/C.tsx | 244 +++++++++++++
.../RTable/src/components/Print.tsx | 66 ++++
.../RTable/src/components/Screenfull.tsx | 64 ++++
src/components/RTable/src/components/Size.tsx | 89 +++++
.../src/components/TableAction/index.tsx | 132 -------
.../src/components/TableScreenfull/index.scss | 0
.../src/components/TableScreenfull/index.tsx | 67 ----
.../src/components/TableSetting/hook.ts | 19 -
.../src/components/TableSetting/index.scss | 70 ----
.../src/components/TableSetting/index.tsx | 233 ------------
.../src/components/TableSize/index.scss | 47 ---
.../RTable/src/components/TableSize/index.tsx | 139 -------
src/components/RTable/src/config.ts | 14 +
src/components/RTable/src/index.scss | 36 +-
src/components/RTable/src/index.tsx | 340 ------------------
src/components/RTable/src/props.ts | 242 +++----------
src/components/RTable/src/type.ts | 84 ++---
src/components/RTransitionComponent/index.vue | 2 +-
src/directives/helper/combine.ts | 2 +-
src/directives/index.ts | 2 +-
src/directives/type.ts | 4 +-
src/icons/A_README.md | 4 +-
src/icons/row_end.svg | 9 +
src/icons/row_head.svg | 9 +
.../Menu/components/SiderBarLogo/index.tsx | 4 +-
src/layout/components/MenuTag/index.tsx | 20 +-
.../SiderBar/components/GlobalSeach/index.tsx | 10 +-
.../components/ThemeSwitch/index.tsx | 6 +-
.../SiderBar/components/TooltipIcon/index.tsx | 4 +-
src/layout/components/SiderBar/index.tsx | 6 +-
src/layout/layoutResize.ts | 2 +
src/locales/helper.ts | 2 +-
src/router/README.md | 2 +-
src/store/modules/menu/helper.ts | 4 +-
src/types/modules/element.ts | 8 +
src/types/modules/utils.ts | 6 +-
src/types/modules/vue.ts | 14 +
src/utils/hook.ts | 51 ++-
src/utils/vue/index.ts | 1 +
src/utils/vue/unrefElement.ts | 25 ++
src/views/dashboard/index.tsx | 6 +-
src/views/demo/mock-demo/index.tsx | 19 +-
.../router-demo/router-demo-home/index.tsx | 8 +-
src/views/demo/svg-icons/index.tsx | 6 +-
src/views/demo/table/index.tsx | 49 ++-
.../login/components/SSOSignin/index.tsx | 4 +-
src/views/login/index.tsx | 8 +-
unplugin/.eslintrc-auto-import.json | 211 +----------
unplugin/auto-imports.d.ts | 209 -----------
vite.pliugin.config.ts | 6 +-
69 files changed, 1300 insertions(+), 2097 deletions(-)
rename README-US.md => README-ZH.md (61%)
create mode 100644 src/components/RIframe/src/props.ts
create mode 100644 src/components/RIframe/src/type.ts
create mode 100644 src/components/RTable/src/Table.tsx
create mode 100644 src/components/RTable/src/components/C.tsx
create mode 100644 src/components/RTable/src/components/Print.tsx
create mode 100644 src/components/RTable/src/components/Screenfull.tsx
create mode 100644 src/components/RTable/src/components/Size.tsx
delete mode 100644 src/components/RTable/src/components/TableAction/index.tsx
delete mode 100644 src/components/RTable/src/components/TableScreenfull/index.scss
delete mode 100644 src/components/RTable/src/components/TableScreenfull/index.tsx
delete mode 100644 src/components/RTable/src/components/TableSetting/hook.ts
delete mode 100644 src/components/RTable/src/components/TableSetting/index.scss
delete mode 100644 src/components/RTable/src/components/TableSetting/index.tsx
delete mode 100644 src/components/RTable/src/components/TableSize/index.scss
delete mode 100644 src/components/RTable/src/components/TableSize/index.tsx
create mode 100644 src/components/RTable/src/config.ts
delete mode 100644 src/components/RTable/src/index.tsx
create mode 100644 src/icons/row_end.svg
create mode 100644 src/icons/row_head.svg
create mode 100644 src/types/modules/element.ts
create mode 100644 src/types/modules/vue.ts
create mode 100644 src/utils/vue/unrefElement.ts
diff --git a/.eslintrc.cjs b/.eslintrc.cjs
index 5a8d10e1..c711e9dc 100644
--- a/.eslintrc.cjs
+++ b/.eslintrc.cjs
@@ -35,6 +35,7 @@ module.exports = {
defineOptions: 'readonly',
},
rules: {
+ 'no-undefined': ['error'],
'linebreak-style': ['error', 'unix'],
'@typescript-eslint/no-explicit-any': [
'error',
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 988b6a33..7773b01a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,32 @@
# CHANGE LOG
+## 4.2.2
+
+重构了 RTable 组件。优化表格渲染逻辑,解决旧组件重复渲染问题。并且允许自定义拓展工具栏。
+
+为了项目未来的可维护性,将 hook 库自动导入方法移除。应该尽量避免滥用 `auto import`,否则项目规模庞大后,带来的项目可维护性是一个负担。
+
+新增了一个新的 `eslint` 规则,并且约定变量初始化的时不明确具体值时,尽量使用 `null` 或者 `void 0` 的方式进行赋值。而不是直接使用 `undefined` 直接赋值。
+
+### Feats
+
+- 优化 `RChart` 组件
+- 设置 `README.md` 默认为英文
+- 优化了一些错误类型的提示,现在报错信息会更加的详细、准确
+- 实现了新的文件下载函数 `downloadAnyFile`,支持 `blod, file, base64, arrayBuffer`
+- 更新 `naive-ui` 版本至 `2.35.0`
+- 新增了一些工具类型与工具方法
+- 新增规则 `no-undefined`,[点击查看](https://eslint.org/docs/latest/rules/no-undefined#rule-details) 具体规则
+
+```ts
+// 错误示例
+const demo = undefined
+
+// 正确示例
+const demo = void 0
+const demo2 = null
+```
+
## 4.2.1
经过综合考虑,还是给模板增加 `cdn` 的配置。基于 `vite-plugin-cdn2` 插件实现。
@@ -52,7 +79,7 @@
- 更新 `vite` 版本至 `v4.4.9`
- 更新 `vue-hooks-plus` 版本至 `v1.8.1`
- 更新了 RayTable 的一些事件的命名
-- `RayChart` 组件做了一些调整
+- `RChart` 组件做了一些调整
- 支持指定 observer 监听对象,默认为 chart 组件本身
- 默认开启 autoChangeTheme 功能
- 支持配置 throttleWait 节流等待时间,默认 500ms
@@ -73,7 +100,7 @@
### Fixes
-- 修复 RayCollapseGrid 组件显示问题,现在如果未存在溢出情况,不会显示 展开/收起 按钮
+- 修复 RCollapseGrid 组件显示问题,现在如果未存在溢出情况,不会显示 展开/收起 按钮
## 4.1.6
@@ -86,7 +113,7 @@
### Fixes
-- 修复 RayChart 组件不能根据内容区域尺寸变化更新 chart 图
+- 修复 RChart 组件不能根据内容区域尺寸变化更新 chart 图
## 4.1.5
@@ -95,7 +122,7 @@
- 修复 windows 平台下构建失败问题
- 修复换行符导致构建失败问题
- 修复特定 node pnpm 版本构建栈溢出问题
-- 修复 `RayCollapseGrid` 组件 open 属性歧义问题
+- 修复 `RCollapseGrid` 组件 open 属性歧义问题
## 4.1.4
@@ -149,7 +176,7 @@ request({
- `localConfig` 新增配置类型保护
- 将原 `AppComponent` 组件包移动至 `app-components` 包中,并且按照其功能拆分为 `sys` `provider`
- 现在将异步注册 `vue-router`
-- `RayChart` 组件新增 `macarons` 主题。现在支持便捷的自定义主题,在[主题编辑器](https://echarts.apache.org/zh/theme-builder.html)编辑主题后,下载主题(json)放置于对应主题包中即可被自动注册
+- `RChart` 组件新增 `macarons` 主题。现在支持便捷的自定义主题,在[主题编辑器](https://echarts.apache.org/zh/theme-builder.html)编辑主题后,下载主题(json)放置于对应主题包中即可被自动注册
- 兼容 `yarn` `npm` 包管理器的 `manualChunks` 配置
## 4.1.2
@@ -175,7 +202,7 @@ request({
### Feats
- 升级 vue 版本为 v3.3.4。并且配套升级了模板的一些插件
-- RayTransitionComponent 组件加入 Suspense 组件的支持(试验性加入,可能会移除)
+- RTransitionComponent 组件加入 Suspense 组件的支持(试验性加入,可能会移除)
- 更新部分组件的事件触发方式,类似 onUpdateValue、onupdate:value 方法改为 props 定义而非 emit(受控、非受控)
- 更新路由切换动画的透明度,视觉效果更友好
- App.tsx 组件内部逻辑抽离为 AppStyleProvider。将一些组件存放位置放在 AppComponents 文件包中
@@ -317,7 +344,7 @@ run('some value')
### Feats
-- Router Meta 属性支持自定义图标,不再局限于 RayIcon,支持自定义图标
+- Router Meta 属性支持自定义图标,不再局限于 RIcon,支持自定义图标
- 更改部分组件默认值,默认值统一为 `null`
- 调整 validRole 方法逻辑,将该方法以前逻辑拆分为 validRole 与 validMenuItemShow 两个方法
- 新增使用手册
@@ -405,7 +432,7 @@ useAppTheme key 类型: 'dark' | 'light'
### 补充
- 锁屏功能的设计并不理想,后期会进行破坏性更新。锁屏触发条件与管理方式目前并不理想,管理有点混乱
-- 后期会考虑补充 keepAlive 功能。目前没有实现是因为该功能实现的话,需要将所有路由提升为顶层路由(这是 KeepAlive 组件限制),目前并未实现该功能。后期会在权衡后增加该功能,实现时会在 RayTransitionComponent 进行拓展补充
+- 后期会考虑补充 keepAlive 功能。目前没有实现是因为该功能实现的话,需要将所有路由提升为顶层路由(这是 KeepAlive 组件限制),目前并未实现该功能。后期会在权衡后增加该功能,实现时会在 RTransitionComponent 进行拓展补充
## 3.2.2
@@ -468,7 +495,7 @@ useAppTheme key 类型: 'dark' | 'light'
- 现在可以直接配置首屏加载动画一些信息(cfg.ts)
- 新增对于 ejs 支持
- 补充一些细节注释
-- 新增 RayChart 组件 loading、loadingOptions 属性配置
+- 新增 RChart 组件 loading、loadingOptions 属性配置
- 新增反转色模式
- 修改 Menu 菜单过滤逻辑,现在如果权限不匹配或者设置了 hidden 属性,则会被过滤掉
@@ -523,7 +550,7 @@ useAppTheme key 类型: 'dark' | 'light'
### Feats
- 修改 demo 页面展示
-- 修改 RayCollapseGrid、RayTable 组件为默认不展示 border
+- 修改 RCollapseGrid、RayTable 组件为默认不展示 border
## 3.1.1
diff --git a/README-US.md b/README-ZH.md
similarity index 61%
rename from README-US.md
rename to README-ZH.md
index 997c5a71..fd83355e 100644
--- a/README-US.md
+++ b/README-ZH.md
@@ -7,115 +7,117 @@
# Ray Template
-A middle and backend template based on vite4.x & ts(x) & pinia & vue3.x
+简体中文 | [English](https://github.com/XiaoDaiGua-Ray/ray-template/blob/main/README.md)
+
+一个基于 vite4.x & ts(x) & pinia & vue3.x 的中后台模板
-## ✨ Feature
+## ✨ 特性
-- **Latest Technology Stack**:Developed using front-end cutting-edge technologies such as vue3.x/vite4.x/pinia
-- **TypeScript**:The language for application-level JavaScript
-- **App Theme**:Configurable themes
-- **Globalization**:Built-in complete internationalization solution
-- **Mock Data**:Built-in Mock data scheme
-- **Permissions**:Built-in complete dynamic routing permission generation solution
-- **Components**:Secondary encapsulation of multiple commonly used components
-- **Axios Request**:Secondary encapsulation of the axios library, supporting functions such as cancellation, anti-shake, automatic repeat cancellation, etc.
-- **Page Cache**:Arbitrarily deep page cache
-- **SVG**:Built-in svg icon solution
-- **Standalone Data Methods Views**:Decoupled management of data, methods, and views allows for secondary development with confidence
+- **最新技术栈**:使用 vue3.x/vite4.x/pinia 等前端前沿技术开发
+- **TypeScript**:应用程序级 JavaScript 的语言
+- **主题**:可配置的主题
+- **国际化**:内置完善的国际化方案
+- **Mock 数据**:内置 Mock 数据方案
+- **权限**:内置完善的动态路由权限生成方案
+- **组件**:二次封装了多个常用的组件
+- **Axios 请求**:二次封装 axios 库,支持:取消、防抖、自动重复取消等功能
+- **缓存**:任意深度页面缓存
+- **SVG**:内置 svg icon 解决方案
+- **独立的 Data Methods Views**:解耦管理的数据、方法、视图,放心二次开发
-## 🪄 Preview
+## 🪄 预览地址
-- [Click to preview](https://xiaodaigua-ray.github.io/ray-template/#/)
-- [Click to preview(Acceleration address)](https://ray-template.yunkuangao.com/#/)
+- [点击预览](https://xiaodaigua-ray.github.io/ray-template/#/)
+- [点击预览(加速地址)](https://ray-template.yunkuangao.com/#/)
-## 🦾 Document
+## 🦾 文档地址
-- [Document](https://xiaodaigua-ray.github.io/ray-template-doc/)
-- [Document(Acceleration address)](https://ray-template.yunkuangao.com/ray-template-doc/)
+- [文档](https://xiaodaigua-ray.github.io/ray-template-doc/)
+- [文档(加速地址)](https://ray-template.yunkuangao.com/ray-template-doc/)
-## 🔋 Change Log
+## 🔋 更新日志
-- [Change Log](https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io/blob/main/CHANGELOG.md)
+- [更新日志](https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io/blob/main/CHANGELOG.md)
-## 🪴 Prepare
+## 🪴 准备
-- [Node](http://nodejs.org/) and [git](https://git-scm.com/) - Project development environment
-- [Vite](https://vitejs.dev/) - Familiar with vite features
-- [Vue3](https://v3.vuejs.org/) - Familiar with Vue3.x basic syntax
-- [TypeScript](https://www.typescriptlang.org/) - Familiar with TypeScript basic syntax
-- [Es6+](http://es6.ruanyifeng.com/) - Familiar with es6 basic syntax
-- [Vue-Router-Next](https://next.router.vuejs.org/) - Familiar with the basic use of vue-router4.x
-- [Naive-UI](https://www.naiveui.com) - UI basic usage
-- [Mock.js](https://github.com/nuysoft/Mock) - Mockjs basic syntax
-- [Pinia](https://pinia.vuejs.org/zh/introduction.html) - State manager pinia uses
-- [TSX](https://github.com/vuejs/babel-plugin-jsx/blob/main/packages/babel-plugin-jsx/README-zh_CN.md) - TSX basic syntax
+- [Node](http://nodejs.org/) 和 [git](https://git-scm.com/) - 项目开发环境
+- [Vite](https://vitejs.dev/) - 熟悉 vite 特性
+- [Vue3](https://v3.vuejs.org/) - 熟悉 Vue 基础语法
+- [TypeScript](https://www.typescriptlang.org/) - 熟悉 TypeScript 基本语法
+- [Es6+](http://es6.ruanyifeng.com/) - 熟悉 es6 基本语法
+- [Vue-Router-Next](https://next.router.vuejs.org/) - 熟悉 vue-router4.x 基本使用
+- [Naive-UI](https://www.naiveui.com) - ui 基本使用
+- [Mock.js](https://github.com/nuysoft/Mock) - mockjs 基本语法
+- [Pinia](https://pinia.vuejs.org/zh/introduction.html) - 状态管理器 pinia 使用
+- [TSX](https://github.com/vuejs/babel-plugin-jsx/blob/main/packages/babel-plugin-jsx/README-zh_CN.md) - tsx 基本语法
-## 📦 Setup
+## 📦 起步
-### Get Project
+### 获取项目
```sh
# github
git clone https://github.com/XiaoDaiGua-Ray/ray-template.git
-# If your download speed is very slow, you can switch to the proxy address below
+# 如果你的下载速度很慢,可以切换到下面的代理地址
git clone https://gh.yka.moe/https://github.com/XiaoDaiGua-Ray/ray-template.git
```
-### Pull dependencies
+### 拉取依赖
```sh
pnpm i
```
-### Startup project
+### 启动项目
```sh
pnpm dev
```
-### Project packaging
+### 项目打包
```sh
pnpm build
```
-### Preview project
+### 预览项目
```sh
pnpm preview
```
-### Volumetric analysis
+### 体积分析
```sh
pnpm report
```
-### Develop
+### 开发
-Introduction and ease of use are the core ideas of this template. So you can safely delete all files under `views/demo` and `router/moduels/demo`, and you will have a clean project.
+简介、易上手是该模板的核心思路。所以你可以放心的直接删除 `views/demo` `router/moduels/demo` 下的所有文件,这样就是一个干净的项目了。
-## 🪴 Project Activities
+## 🪴 项目活动

-### Contributor
+### 贡献者
-Thanks for all their contributions 🐝!
+感谢他们的所做的一切贡献 🐝 !
-## Browser Support
+## 浏览器支持
| [
](http://godban.github.io/browsers-support-badges/)IE | [
](http://godban.github.io/browsers-support-badges/)Edge | [
](http://godban.github.io/browsers-support-badges/)Firefox | [
](http://godban.github.io/browsers-support-badges/)Chrome | [
](http://godban.github.io/browsers-support-badges/)Safari |
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
| not support | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
-## 📄 License
+## 📄 证书
[MIT License](https://github.com/XiaoDaiGua-Ray/ray-template/blob/main/LICENSE) © 2022-PRESENT [Ray](https://github.com/XiaoDaiGua-Ray)
diff --git a/README.md b/README.md
index c0702f8f..8be2fc95 100644
--- a/README.md
+++ b/README.md
@@ -7,117 +7,117 @@
# Ray Template
-简体中文 | [English](https://github.com/XiaoDaiGua-Ray/ray-template/blob/main/README-US.md)
+English | [简体中文](https://github.com/XiaoDaiGua-Ray/ray-template/blob/main/README-ZH.md)
-一个基于 vite4.x & ts(x) & pinia & vue3.x 的中后台模板
+A middle and backend template based on vite4.x & ts(x) & pinia & vue3.x
-## ✨ 特性
+## ✨ Feature
-- **最新技术栈**:使用 vue3.x/vite4.x/pinia 等前端前沿技术开发
-- **TypeScript**:应用程序级 JavaScript 的语言
-- **主题**:可配置的主题
-- **国际化**:内置完善的国际化方案
-- **Mock 数据**:内置 Mock 数据方案
-- **权限**:内置完善的动态路由权限生成方案
-- **组件**:二次封装了多个常用的组件
-- **Axios 请求**:二次封装 axios 库,支持:取消、防抖、自动重复取消等功能
-- **缓存**:任意深度页面缓存
-- **SVG**:内置 svg icon 解决方案
-- **独立的 Data Methods Views**:解耦管理的数据、方法、视图,放心二次开发
+- **Latest Technology Stack**:Developed using front-end cutting-edge technologies such as vue3.x/vite4.x/pinia
+- **TypeScript**:The language for application-level JavaScript
+- **App Theme**:Configurable themes
+- **Globalization**:Built-in complete internationalization solution
+- **Mock Data**:Built-in Mock data scheme
+- **Permissions**:Built-in complete dynamic routing permission generation solution
+- **Components**:Secondary encapsulation of multiple commonly used components
+- **Axios Request**:Secondary encapsulation of the axios library, supporting functions such as cancellation, anti-shake, automatic repeat cancellation, etc.
+- **Page Cache**:Arbitrarily deep page cache
+- **SVG**:Built-in svg icon solution
+- **Standalone Data Methods Views**:Decoupled management of data, methods, and views allows for secondary development with confidence
-## 🪄 预览地址
+## 🪄 Preview
-- [点击预览](https://xiaodaigua-ray.github.io/ray-template/#/)
-- [点击预览(加速地址)](https://ray-template.yunkuangao.com/#/)
+- [Click to preview](https://xiaodaigua-ray.github.io/ray-template/#/)
+- [Click to preview(Acceleration address)](https://ray-template.yunkuangao.com/#/)
-## 🦾 文档地址
+## 🦾 Document
-- [文档](https://xiaodaigua-ray.github.io/ray-template-doc/)
-- [文档(加速地址)](https://ray-template.yunkuangao.com/ray-template-doc/)
+- [Document](https://xiaodaigua-ray.github.io/ray-template-doc/)
+- [Document(Acceleration address)](https://ray-template.yunkuangao.com/ray-template-doc/)
-## 🔋 更新日志
+## 🔋 Change Log
-- [更新日志](https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io/blob/main/CHANGELOG.md)
+- [Change Log](https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io/blob/main/CHANGELOG.md)
-## 🪴 准备
+## 🪴 Prepare
-- [Node](http://nodejs.org/) 和 [git](https://git-scm.com/) - 项目开发环境
-- [Vite](https://vitejs.dev/) - 熟悉 vite 特性
-- [Vue3](https://v3.vuejs.org/) - 熟悉 Vue 基础语法
-- [TypeScript](https://www.typescriptlang.org/) - 熟悉 TypeScript 基本语法
-- [Es6+](http://es6.ruanyifeng.com/) - 熟悉 es6 基本语法
-- [Vue-Router-Next](https://next.router.vuejs.org/) - 熟悉 vue-router4.x 基本使用
-- [Naive-UI](https://www.naiveui.com) - ui 基本使用
-- [Mock.js](https://github.com/nuysoft/Mock) - mockjs 基本语法
-- [Pinia](https://pinia.vuejs.org/zh/introduction.html) - 状态管理器 pinia 使用
-- [TSX](https://github.com/vuejs/babel-plugin-jsx/blob/main/packages/babel-plugin-jsx/README-zh_CN.md) - tsx 基本语法
+- [Node](http://nodejs.org/) and [git](https://git-scm.com/) - Project development environment
+- [Vite](https://vitejs.dev/) - Familiar with vite features
+- [Vue3](https://v3.vuejs.org/) - Familiar with Vue3.x basic syntax
+- [TypeScript](https://www.typescriptlang.org/) - Familiar with TypeScript basic syntax
+- [Es6+](http://es6.ruanyifeng.com/) - Familiar with es6 basic syntax
+- [Vue-Router-Next](https://next.router.vuejs.org/) - Familiar with the basic use of vue-router4.x
+- [Naive-UI](https://www.naiveui.com) - UI basic usage
+- [Mock.js](https://github.com/nuysoft/Mock) - Mockjs basic syntax
+- [Pinia](https://pinia.vuejs.org/zh/introduction.html) - State manager pinia uses
+- [TSX](https://github.com/vuejs/babel-plugin-jsx/blob/main/packages/babel-plugin-jsx/README-zh_CN.md) - TSX basic syntax
-## 📦 起步
+## 📦 Setup
-### 获取项目
+### Get Project
```sh
# github
git clone https://github.com/XiaoDaiGua-Ray/ray-template.git
-# 如果你的下载速度很慢,可以切换到下面的代理地址
+# If your download speed is very slow, you can switch to the proxy address below
git clone https://gh.yka.moe/https://github.com/XiaoDaiGua-Ray/ray-template.git
```
-### 拉取依赖
+### Pull dependencies
```sh
pnpm i
```
-### 启动项目
+### Startup project
```sh
pnpm dev
```
-### 项目打包
+### Project packaging
```sh
pnpm build
```
-### 预览项目
+### Preview project
```sh
pnpm preview
```
-### 体积分析
+### Volumetric analysis
```sh
pnpm report
```
-### 开发
+### Develop
-简介、易上手是该模板的核心思路。所以你可以放心的直接删除 `views/demo` `router/moduels/demo` 下的所有文件,这样就是一个干净的项目了。
+Introduction and ease of use are the core ideas of this template. So you can safely delete all files under `views/demo` and `router/moduels/demo`, and you will have a clean project.
-## 🪴 项目活动
+## 🪴 Project Activities

-### 贡献者
+### Contributor
-感谢他们的所做的一切贡献 🐝 !
+Thanks for all their contributions 🐝!
-## 浏览器支持
+## Browser Support
| [
](http://godban.github.io/browsers-support-badges/)IE | [
](http://godban.github.io/browsers-support-badges/)Edge | [
](http://godban.github.io/browsers-support-badges/)Firefox | [
](http://godban.github.io/browsers-support-badges/)Chrome | [
](http://godban.github.io/browsers-support-badges/)Safari |
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
| not support | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
-## 📄 证书
+## 📄 License
[MIT License](https://github.com/XiaoDaiGua-Ray/ray-template/blob/main/LICENSE) © 2022-PRESENT [Ray](https://github.com/XiaoDaiGua-Ray)
diff --git a/package.json b/package.json
index 643bd8be..9320f204 100644
--- a/package.json
+++ b/package.json
@@ -34,7 +34,7 @@
"echarts": "^5.4.0",
"lodash-es": "^4.17.21",
"mockjs": "1.1.0",
- "naive-ui": "^2.34.4",
+ "naive-ui": "^2.35.0",
"pinia": "^2.1.4",
"pinia-plugin-persistedstate": "^3.1.0",
"print-js": "^1.6.0",
diff --git a/src/app-components/app/AppLockScreen/appLockVar.ts b/src/app-components/app/AppLockScreen/appLockVar.ts
index eb145d25..8d5825e1 100644
--- a/src/app-components/app/AppLockScreen/appLockVar.ts
+++ b/src/app-components/app/AppLockScreen/appLockVar.ts
@@ -16,6 +16,8 @@
* 可以根据后台接口进行替换该变量, 只要是一个响应式的变量值即可
*/
+import { useStorage } from '@vueuse/core'
+
const appLockScreen = useStorage('isAppLockScreen', false, sessionStorage, {
mergeDefaults: true,
})
diff --git a/src/app-components/app/AppLockScreen/index.tsx b/src/app-components/app/AppLockScreen/index.tsx
index 364cd076..0a2ea818 100644
--- a/src/app-components/app/AppLockScreen/index.tsx
+++ b/src/app-components/app/AppLockScreen/index.tsx
@@ -45,7 +45,7 @@ const AppLockScreen = defineComponent({
show
maskClosable={false}
closeOnEsc={false}
- preset={!this.getLockAppScreen() ? 'dialog' : undefined}
+ preset={!this.getLockAppScreen() ? 'dialog' : void 0}
title="锁定屏幕"
>
= (...args: P[]) => R
export type PartialCSSStyleDeclaration = Partial<
Record
- RayTable
+ RTable
组件有一个比较值得注意的地方就是,该组件会自动的按照数据量计算分页条数。所以你在异步获取数据的时候,一定要手动设置
remote 属性为 true,并且设置 itemCount 或者 pageCount。