Compare commits
100 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1ef6ce70db | ||
|
|
d5d7dd8e57 | ||
|
|
1a39d0962e | ||
|
|
86b77c2877 | ||
|
|
cf8e5897fb | ||
|
|
f1e6ddff18 | ||
|
|
059a704f53 | ||
|
|
4c29bcc49a | ||
|
|
47960bbaf9 | ||
|
|
b2ec77275d | ||
|
|
6fc12a2498 | ||
|
|
a72557f4e2 | ||
|
|
71d0ec8ba8 | ||
|
|
ee5d82c021 | ||
|
|
c7ab236e10 | ||
|
|
d2b1bd5b44 | ||
|
|
a22bc8622e | ||
|
|
fe9f6e5493 | ||
|
|
7f0354cd63 | ||
|
|
c437371db6 | ||
|
|
5734d0391f | ||
|
|
e81fb5bb10 | ||
|
|
0c5ecd0a4e | ||
|
|
1d76946968 | ||
|
|
297319f668 | ||
|
|
e23971b680 | ||
|
|
18927d4750 | ||
|
|
33bd64d9ff | ||
|
|
667ef918fc | ||
|
|
cc55de03ee | ||
|
|
4f786d6262 | ||
|
|
63f2540745 | ||
|
|
fde7f927df | ||
|
|
b4d1cff464 | ||
|
|
aedc10a6dc | ||
|
|
78820f1049 | ||
|
|
301356ebd7 | ||
|
|
ecba3c2e7f | ||
|
|
a4e4045abd | ||
|
|
0d0d33ca29 | ||
|
|
10fdb30e07 | ||
|
|
d7364d59a9 | ||
|
|
7d40e36574 | ||
|
|
3aad64746d | ||
|
|
b5215b33bf | ||
|
|
ab44405b52 | ||
|
|
c16ee6cf68 | ||
|
|
7472c25c0a | ||
|
|
27d9339a4c | ||
|
|
23c23bf02f | ||
|
|
5649f6216f | ||
|
|
4ed2bb9e57 | ||
|
|
46567cb15c | ||
|
|
90a61a1000 | ||
|
|
ad34c7b891 | ||
|
|
c5b107eab9 | ||
|
|
a8c59c5c36 | ||
|
|
0d4d3a301b | ||
|
|
b10c3eb1bb | ||
|
|
9b62d6ef1e | ||
|
|
8ff242ea45 | ||
|
|
867ef87a34 | ||
|
|
2235d9d7a8 | ||
|
|
5c82fdcd0f | ||
|
|
641355083c | ||
|
|
cadd611559 | ||
|
|
fb734f3394 | ||
|
|
e4a87e2138 | ||
|
|
12db42892d | ||
|
|
13a0db0180 | ||
|
|
facb09d779 | ||
|
|
617f8e936c | ||
|
|
6e48ad79a7 | ||
|
|
3984ab19c9 | ||
|
|
49a9259f2e | ||
|
|
867bbad1be | ||
|
|
ead4318163 | ||
|
|
bfa9203883 | ||
|
|
4f5f18f61c | ||
|
|
df71c7f75c | ||
|
|
c4839aa5f4 | ||
|
|
c19fbb1473 | ||
|
|
3cdebf4ee9 | ||
|
|
2bb433c3cd | ||
|
|
731e9b2f57 | ||
|
|
b606fa454d | ||
|
|
c6bd3f11b6 | ||
|
|
d11398274a | ||
|
|
b2081b3481 | ||
|
|
f5b7ee5a81 | ||
|
|
20a1293a55 | ||
|
|
504b45783f | ||
|
|
27bc135bd2 | ||
|
|
4d91d2017c | ||
|
|
523c979488 | ||
|
|
d2bba801d9 | ||
|
|
ceb1ec6e6d | ||
|
|
aa83ea83fa | ||
|
|
4a7d5d6573 | ||
|
|
b69db2ff2c |
@@ -1,14 +1,8 @@
|
|||||||
# 项目本地运行端口号
|
# 平台本地运行端口号
|
||||||
VITE_PORT = 8848
|
VITE_PORT = 8848
|
||||||
|
|
||||||
# 开发环境读取配置文件路径
|
# 开发环境读取配置文件路径
|
||||||
VITE_PUBLIC_PATH = /
|
VITE_PUBLIC_PATH = /
|
||||||
|
|
||||||
# 开发环境代理
|
# 开发环境路由历史模式(Hash模式传"hash"、HTML5模式传"h5"、Hash模式带base参数传"hash,base参数"、HTML5模式带base参数传"h5,base参数")
|
||||||
VITE_PROXY_DOMAIN = /api
|
|
||||||
|
|
||||||
# 开发环境路由历史模式
|
|
||||||
VITE_ROUTER_HISTORY = "hash"
|
VITE_ROUTER_HISTORY = "hash"
|
||||||
|
|
||||||
# 开发环境后端地址
|
|
||||||
VITE_PROXY_DOMAIN_REAL = "http://127.0.0.1:3000"
|
|
||||||
@@ -1,15 +1,9 @@
|
|||||||
# 线上环境项目打包路径
|
# 线上环境平台打包路径
|
||||||
VITE_PUBLIC_PATH = /
|
VITE_PUBLIC_PATH = /
|
||||||
|
|
||||||
# 线上环境路由历史模式
|
# 线上环境路由历史模式(Hash模式传"hash"、HTML5模式传"h5"、Hash模式带base参数传"hash,base参数"、HTML5模式带base参数传"h5,base参数")
|
||||||
VITE_ROUTER_HISTORY = "hash"
|
VITE_ROUTER_HISTORY = "hash"
|
||||||
|
|
||||||
# 线上环境后端地址
|
|
||||||
VITE_PROXY_DOMAIN_REAL = ""
|
|
||||||
|
|
||||||
# 是否为打包后的文件提供传统浏览器兼容性支持 支持 true 不支持 false
|
|
||||||
VITE_LEGACY = false
|
|
||||||
|
|
||||||
# 是否在打包时使用cdn替换本地库 替换 true 不替换 false
|
# 是否在打包时使用cdn替换本地库 替换 true 不替换 false
|
||||||
VITE_CDN = false
|
VITE_CDN = false
|
||||||
|
|
||||||
|
|||||||
12
.env.staging
@@ -4,19 +4,13 @@ NODE_ENV=production
|
|||||||
|
|
||||||
VITE_PUBLIC_PATH = /
|
VITE_PUBLIC_PATH = /
|
||||||
|
|
||||||
# 线上环境路由历史模式
|
# 预发布环境路由历史模式(Hash模式传"hash"、HTML5模式传"h5"、Hash模式带base参数传"hash,base参数"、HTML5模式带base参数传"h5,base参数")
|
||||||
VITE_ROUTER_HISTORY = "hash"
|
VITE_ROUTER_HISTORY = "hash"
|
||||||
|
|
||||||
# 线上环境后端地址
|
|
||||||
VITE_PROXY_DOMAIN_REAL = ""
|
|
||||||
|
|
||||||
# 是否为打包后的文件提供传统浏览器兼容性支持 支持 true 不支持 false
|
|
||||||
VITE_LEGACY = false
|
|
||||||
|
|
||||||
# 是否在打包时使用cdn替换本地库 替换 true 不替换 false
|
# 是否在打包时使用cdn替换本地库 替换 true 不替换 false
|
||||||
VITE_CDN = false
|
VITE_CDN = true
|
||||||
|
|
||||||
# 是否启用gzip压缩或brotli压缩(分两种情况,删除原始文件和不删除原始文件)
|
# 是否启用gzip压缩或brotli压缩(分两种情况,删除原始文件和不删除原始文件)
|
||||||
# 压缩时不删除原始文件的配置:gzip、brotli、both(同时开启 gzip 与 brotli 压缩)、none(不开启压缩,默认)
|
# 压缩时不删除原始文件的配置:gzip、brotli、both(同时开启 gzip 与 brotli 压缩)、none(不开启压缩,默认)
|
||||||
# 压缩时删除原始文件的配置:gzip-clear、brotli-clear、both-clear(同时开启 gzip 与 brotli 压缩)、none(不开启压缩,默认)
|
# 压缩时删除原始文件的配置:gzip-clear、brotli-clear、both-clear(同时开启 gzip 与 brotli 压缩)、none(不开启压缩,默认)
|
||||||
VITE_COMPRESSION = "none"
|
VITE_COMPRESSION = "both-clear"
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
public
|
public
|
||||||
dist
|
dist
|
||||||
*.d.ts
|
*.d.ts
|
||||||
|
/src/assets
|
||||||
package.json
|
package.json
|
||||||
.eslintrc.js
|
.eslintrc.js
|
||||||
.prettierrc.js
|
.prettierrc.js
|
||||||
@@ -8,3 +9,5 @@ commitlint.config.js
|
|||||||
postcss.config.js
|
postcss.config.js
|
||||||
tailwind.config.js
|
tailwind.config.js
|
||||||
stylelint.config.js
|
stylelint.config.js
|
||||||
|
src/components/ReSplitPane/iconfont
|
||||||
|
src/components/ReFlowChart/src/assets/iconfont
|
||||||
@@ -1,3 +1,127 @@
|
|||||||
|
# 3.9.1 (2022-12-02)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- Add `CachingAsyncRoutes` whether to enable dynamic route cache local global configuration, default `true`
|
||||||
|
- Add `TooltipEffect` global configuration, you can configure the `effect` attribute of all `el-tooltip` on the platform body, the default `light`, does not affect the business code
|
||||||
|
- Add directory, menu text exceeds display `Tooltip` text prompt demo
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- Optimize `initRouter` method, compatible with `sso` scenario
|
||||||
|
- Breadcrumb animation style optimization
|
||||||
|
|
||||||
|
# 3.9.0 (2022-11-30)
|
||||||
|
|
||||||
|
### 🐞 Bug fixes
|
||||||
|
|
||||||
|
- Fixed the jitter problem caused by the scroll bar on the page when the text is too long when exiting the full screen
|
||||||
|
- Fix some type errors
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- perf: Great optimization of the first screen loading. Compared with the version before `3.9.0`, the first screen requests are reduced by `71`, and the first screen loading resources are reduced by `4.1 MB`
|
||||||
|
|
||||||
|
# 3.8.7 (2022-11-28)
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- perf: Great package optimization, please be sure to upgrade! Use `unplugin-vue-define-options` to replace `unplugin-vue-macros`, the packaging speed is increased several times, use `unplugin-vue-macros` to take `mac` with moderate performance as an example, the packaging time of the full version is` 6` minutes😭, after replacing it with `unplugin-vue-define-options`, the packaging time on the same computer is `50` seconds☺️
|
||||||
|
|
||||||
|
# 3.8.6 (2022-11-27)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- Add `message` message prompt function, compatible with `Element Plus` and `Ant Design` two `Message` style styles, use and package size are extremely low cost and adapt to dark mode, really fragrant 😂
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- perf: No need to install `@vue/runtime-core`, compatible with `volar` hints of all `element-plus` components
|
||||||
|
|
||||||
|
# 3.8.5 (2022-11-26)
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- Great optimization, remove `@pureadmin/components` and use compatible writing, the package size of the platform is reduced by `0.4` MB before compression is not enabled, and the resource of `2.3` MB is reduced for the first screen request, which is for the [lite version ](https://github.com/xiaoxian521/pure-admin-thin) is a very big optimization, the streamlined version has synchronized code
|
||||||
|
|
||||||
|
# 3.8.0 (2022-11-26)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- Add `@pureadmin/table` multiple data format (deep structure) examples
|
||||||
|
- Add `@pureadmin/table` image preview example
|
||||||
|
- Add `@pureadmin/table` row and column drag example
|
||||||
|
- Add `@pureadmin/table` context menu example
|
||||||
|
- Add `@pureadmin/table` export `Excel` example
|
||||||
|
- Add `@pureadmin/table` edit cell example
|
||||||
|
- Add `@pureadmin/table` watermark example
|
||||||
|
- Add `@pureadmin/table` print example
|
||||||
|
- Add `@pureadmin/table` embedded `echarts` chart example
|
||||||
|
- Add `svgo` to compress all `svg` files on the platform to reduce the size
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- The static routing platform automatically imports without manual import
|
||||||
|
- Improved global type hints
|
||||||
|
- Optimize `vite` to rely on pre-built configurations in the platform, and the loading speed of page switching is significantly accelerated
|
||||||
|
|
||||||
|
# 3.7.1 (2022-11-22)
|
||||||
|
|
||||||
|
### 🔥 hotfix
|
||||||
|
|
||||||
|
- Fixed the problem that the tab page may not be reset when logging out when the tab page cache is not turned on
|
||||||
|
|
||||||
|
# 3.7.0 (2022-11-21)
|
||||||
|
|
||||||
|
### ✔️ refactor
|
||||||
|
|
||||||
|
- Replace `driver.js` with `intro.js`
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- Add front-end single sign-on, test address https://yiming_chang.gitee.io/vue-pure-admin/#/pure-table/index?username=sso&roles=admin&accessToken=eyJhbGciOiJIUzUxMiJ9.admin
|
||||||
|
- Add more examples for [@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table) and `element-plus` [table](https://element-plus.org /zh-CN/component/table.html) example remains the same
|
||||||
|
- Rich watermark function page (supports customizing various colors, shadows, text, additional attributes, setting undeletable watermarks and setting watermarks for specified elements)
|
||||||
|
- Optimize the menu, add `MenuArrowIconNoTransition` global configuration, configure it in `public/serverConfig.json`, for the left menu mode, the menu expansion can be set `MenuArrowIconNoTransition: true` to solve
|
||||||
|
- Replacement form designer component demo
|
||||||
|
|
||||||
|
### 🐞 Bug fixes
|
||||||
|
|
||||||
|
- Repair the in-page menu with parameters to jump to each other, the label is not selected and highlighted
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- Removed deprecated `$baseUrl`
|
||||||
|
- Compatible importing a certain library leads to `global is not defined` error, importing `src/utils/globalPolyfills.ts` file into `src/main.ts` can solve the problem
|
||||||
|
- Remove `@vitejs/plugin-legacy`, `vue3` cannot make it support `ie` through any tool
|
||||||
|
|
||||||
|
# 3.6.4 (2022-11-10)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- Menu icon `icon` supports using online icons
|
||||||
|
|
||||||
|
### 🐞 Bug fixes
|
||||||
|
|
||||||
|
- Fixed `vxe-button` font color issue after mouse overlay and some other style issues
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- Optimize the routing guard, if you have logged in and there is login information, you cannot jump to the routing whitelist, but continue to stay on the current page
|
||||||
|
- Removed `baseURL` and global environment proxy, and can be written directly in `vite.config.ts`, which is convenient and supports multiple proxy addresses
|
||||||
|
|
||||||
|
# 3.6.3 (2022-11-01)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- Static resource classification and packaging
|
||||||
|
- Add danmaku component `demo`
|
||||||
|
|
||||||
|
### 🐞 Bug fixes
|
||||||
|
|
||||||
|
- Fix the `collapse` property added in the latest version of `tailwindcss` conflicts with the platform `class` class name
|
||||||
|
- Fix that when the `token` expires, if the page has multiple requests, the `token` will be refreshed repeatedly
|
||||||
|
|
||||||
# 3.6.2 (2022-10-27)
|
# 3.6.2 (2022-10-27)
|
||||||
|
|
||||||
### ✔️ refactor
|
### ✔️ refactor
|
||||||
@@ -94,7 +218,7 @@
|
|||||||
|
|
||||||
- Secondary encapsulation of `Table` of `element-plus` into [@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table), providing flexible configuration items and integrating into the platform
|
- Secondary encapsulation of `Table` of `element-plus` into [@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table), providing flexible configuration items and integrating into the platform
|
||||||
- Secondary encapsulation of `Descriptions` of `element-plus` into [@pureadmin/descriptions](https://github.com/xiaoxian521/pure-admin-descriptions), providing flexible configuration items and integrating into the platform
|
- Secondary encapsulation of `Descriptions` of `element-plus` into [@pureadmin/descriptions](https://github.com/xiaoxian521/pure-admin-descriptions), providing flexible configuration items and integrating into the platform
|
||||||
- Centralize most of the tools and hooks of the platform to [@pureadmin/utils](https://pure-admin-utils-docs.vercel.app/), and delete the code concentrated in this library to reduce the size of the platform
|
- Centralize most of the tools and hooks of the platform to [@pureadmin/utils](https://pure-admin-utils.netlify.app), and delete the code concentrated in this library to reduce the size of the platform
|
||||||
- Add [unplugin-vue-define-options](https://www.npmjs.com/package/unplugin-vue-define-options) plugin, the page can directly write `defineOptions({name: custom name})`
|
- Add [unplugin-vue-define-options](https://www.npmjs.com/package/unplugin-vue-define-options) plugin, the page can directly write `defineOptions({name: custom name})`
|
||||||
- Add project files, language analysis tool [cloc](https://www.npmjs.com/package/cloc)
|
- Add project files, language analysis tool [cloc](https://www.npmjs.com/package/cloc)
|
||||||
- Added landing page internationalization
|
- Added landing page internationalization
|
||||||
@@ -255,7 +379,6 @@
|
|||||||
- Optimize the tab page to bring a better interactive experience
|
- Optimize the tab page to bring a better interactive experience
|
||||||
- Routing title supports direct writing in Chinese, which can be separated from internationalization
|
- Routing title supports direct writing in Chinese, which can be separated from internationalization
|
||||||
- Route history mode is read from env and supports base parameter
|
- Route history mode is read from env and supports base parameter
|
||||||
- Packaged files provide traditional browser compatibility support, configure VITE_LEGACY to true
|
|
||||||
|
|
||||||
# 2.6.0(2021-11-10)
|
# 2.6.0(2021-11-10)
|
||||||
|
|
||||||
|
|||||||
127
CHANGELOG.md
@@ -1,3 +1,127 @@
|
|||||||
|
# 3.9.1 (2022-12-02)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- Add `CachingAsyncRoutes` whether to enable dynamic route cache local global configuration, default `true`
|
||||||
|
- Add `TooltipEffect` global configuration, you can configure the `effect` attribute of all `el-tooltip` on the platform body, the default `light`, does not affect the business code
|
||||||
|
- Add directory, menu text exceeds display `Tooltip` text prompt demo
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- Optimize `initRouter` method, compatible with `sso` scenario
|
||||||
|
- Breadcrumb animation style optimization
|
||||||
|
|
||||||
|
# 3.9.0 (2022-11-30)
|
||||||
|
|
||||||
|
### 🐞 Bug fixes
|
||||||
|
|
||||||
|
- Fixed the jitter problem caused by the scroll bar on the page when the text is too long when exiting the full screen
|
||||||
|
- Fix some type errors
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- perf: Great optimization of the first screen loading. Compared with the version before `3.9.0`, the first screen requests are reduced by `71`, and the first screen loading resources are reduced by `4.1 MB`
|
||||||
|
|
||||||
|
# 3.8.7 (2022-11-28)
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- perf: Great package optimization, please be sure to upgrade! Use `unplugin-vue-define-options` to replace `unplugin-vue-macros`, the packaging speed is increased several times, use `unplugin-vue-macros` to take `mac` with moderate performance as an example, the packaging time of the full version is` 6` minutes😭, after replacing it with `unplugin-vue-define-options`, the packaging time on the same computer is `50` seconds☺️
|
||||||
|
|
||||||
|
# 3.8.6 (2022-11-27)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- Add `message` message prompt function, compatible with `Element Plus` and `Ant Design` two `Message` style styles, use and package size are extremely low cost and adapt to dark mode, really fragrant 😂
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- perf: No need to install `@vue/runtime-core`, compatible with `volar` hints of all `element-plus` components
|
||||||
|
|
||||||
|
# 3.8.5 (2022-11-26)
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- Great optimization, remove `@pureadmin/components` and use compatible writing, the package size of the platform is reduced by `0.4` MB before compression is not enabled, and the resource of `2.3` MB is reduced for the first screen request, which is for the [lite version ](https://github.com/xiaoxian521/pure-admin-thin) is a very big optimization, the streamlined version has synchronized code
|
||||||
|
|
||||||
|
# 3.8.0 (2022-11-26)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- Add `@pureadmin/table` multiple data format (deep structure) examples
|
||||||
|
- Add `@pureadmin/table` image preview example
|
||||||
|
- Add `@pureadmin/table` row and column drag example
|
||||||
|
- Add `@pureadmin/table` context menu example
|
||||||
|
- Add `@pureadmin/table` export `Excel` example
|
||||||
|
- Add `@pureadmin/table` edit cell example
|
||||||
|
- Add `@pureadmin/table` watermark example
|
||||||
|
- Add `@pureadmin/table` print example
|
||||||
|
- Add `@pureadmin/table` embedded `echarts` chart example
|
||||||
|
- Add `svgo` to compress all `svg` files on the platform to reduce the size
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- The static routing platform automatically imports without manual import
|
||||||
|
- Improved global type hints
|
||||||
|
- Optimize `vite` to rely on pre-built configurations in the platform, and the loading speed of page switching is significantly accelerated
|
||||||
|
|
||||||
|
# 3.7.1 (2022-11-22)
|
||||||
|
|
||||||
|
### 🔥 hotfix
|
||||||
|
|
||||||
|
- Fixed the problem that the tab page may not be reset when logging out when the tab page cache is not turned on
|
||||||
|
|
||||||
|
# 3.7.0 (2022-11-21)
|
||||||
|
|
||||||
|
### ✔️ refactor
|
||||||
|
|
||||||
|
- Replace `driver.js` with `intro.js`
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- Add front-end single sign-on, test address https://yiming_chang.gitee.io/vue-pure-admin/#/pure-table/index?username=sso&roles=admin&accessToken=eyJhbGciOiJIUzUxMiJ9.admin
|
||||||
|
- Add more examples for [@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table) and `element-plus` [table](https://element-plus.org /zh-CN/component/table.html) example remains the same
|
||||||
|
- Rich watermark function page (supports customizing various colors, shadows, text, additional attributes, setting undeletable watermarks and setting watermarks for specified elements)
|
||||||
|
- Optimize the menu, add `MenuArrowIconNoTransition` global configuration, configure it in `public/serverConfig.json`, for the left menu mode, the menu expansion can be set `MenuArrowIconNoTransition: true` to solve
|
||||||
|
- Replacement form designer component demo
|
||||||
|
|
||||||
|
### 🐞 Bug fixes
|
||||||
|
|
||||||
|
- Repair the in-page menu with parameters to jump to each other, the label is not selected and highlighted
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- Removed deprecated `$baseUrl`
|
||||||
|
- Compatible importing a certain library leads to `global is not defined` error, importing `src/utils/globalPolyfills.ts` file into `src/main.ts` can solve the problem
|
||||||
|
- Remove `@vitejs/plugin-legacy`, `vue3` cannot make it support `ie` through any tool
|
||||||
|
|
||||||
|
# 3.6.4 (2022-11-10)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- Menu icon `icon` supports using online icons
|
||||||
|
|
||||||
|
### 🐞 Bug fixes
|
||||||
|
|
||||||
|
- Fixed `vxe-button` font color issue after mouse overlay and some other style issues
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- Optimize the routing guard, if you have logged in and there is login information, you cannot jump to the routing whitelist, but continue to stay on the current page
|
||||||
|
- Removed `baseURL` and global environment proxy, and can be written directly in `vite.config.ts`, which is convenient and supports multiple proxy addresses
|
||||||
|
|
||||||
|
# 3.6.3 (2022-11-01)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- Static resource classification and packaging
|
||||||
|
- Add danmaku component `demo`
|
||||||
|
|
||||||
|
### 🐞 Bug fixes
|
||||||
|
|
||||||
|
- Fix the `collapse` property added in the latest version of `tailwindcss` conflicts with the platform `class` class name
|
||||||
|
- Fix that when the `token` expires, if the page has multiple requests, the `token` will be refreshed repeatedly
|
||||||
|
|
||||||
# 3.6.2 (2022-10-27)
|
# 3.6.2 (2022-10-27)
|
||||||
|
|
||||||
### ✔️ refactor
|
### ✔️ refactor
|
||||||
@@ -94,7 +218,7 @@
|
|||||||
|
|
||||||
- Secondary encapsulation of `Table` of `element-plus` into [@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table), providing flexible configuration items and integrating into the platform
|
- Secondary encapsulation of `Table` of `element-plus` into [@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table), providing flexible configuration items and integrating into the platform
|
||||||
- Secondary encapsulation of `Descriptions` of `element-plus` into [@pureadmin/descriptions](https://github.com/xiaoxian521/pure-admin-descriptions), providing flexible configuration items and integrating into the platform
|
- Secondary encapsulation of `Descriptions` of `element-plus` into [@pureadmin/descriptions](https://github.com/xiaoxian521/pure-admin-descriptions), providing flexible configuration items and integrating into the platform
|
||||||
- Centralize most of the tools and hooks of the platform to [@pureadmin/utils](https://pure-admin-utils-docs.vercel.app/), and delete the code concentrated in this library to reduce the size of the platform
|
- Centralize most of the tools and hooks of the platform to [@pureadmin/utils](https://pure-admin-utils.netlify.app), and delete the code concentrated in this library to reduce the size of the platform
|
||||||
- Add [unplugin-vue-define-options](https://www.npmjs.com/package/unplugin-vue-define-options) plugin, the page can directly write `defineOptions({name: custom name})`
|
- Add [unplugin-vue-define-options](https://www.npmjs.com/package/unplugin-vue-define-options) plugin, the page can directly write `defineOptions({name: custom name})`
|
||||||
- Add project files, language analysis tool [cloc](https://www.npmjs.com/package/cloc)
|
- Add project files, language analysis tool [cloc](https://www.npmjs.com/package/cloc)
|
||||||
- Added landing page internationalization
|
- Added landing page internationalization
|
||||||
@@ -255,7 +379,6 @@
|
|||||||
- Optimize the tab page to bring a better interactive experience
|
- Optimize the tab page to bring a better interactive experience
|
||||||
- Routing title supports direct writing in Chinese, which can be separated from internationalization
|
- Routing title supports direct writing in Chinese, which can be separated from internationalization
|
||||||
- Route history mode is read from env and supports base parameter
|
- Route history mode is read from env and supports base parameter
|
||||||
- Packaged files provide traditional browser compatibility support, configure VITE_LEGACY to true
|
|
||||||
|
|
||||||
# 2.6.0(2021-11-10)
|
# 2.6.0(2021-11-10)
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,127 @@
|
|||||||
|
# 3.9.1 (2022-12-02)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- 添加 `CachingAsyncRoutes` 是否开启动态路由缓存本地的全局配置,默认 `true`
|
||||||
|
- 添加 `TooltipEffect` 全局配置,可配置平台主体所有 `el-tooltip` 的 `effect` 属性,默认 `light`,不影响业务代码
|
||||||
|
- 添加目录、菜单文字超出显示 `Tooltip` 文字提示演示
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- 优化 `initRouter` 方法,兼容 `sso` 场景
|
||||||
|
- 面包屑动画样式优化
|
||||||
|
|
||||||
|
# 3.9.0 (2022-11-30)
|
||||||
|
|
||||||
|
### 🐞 Bug fixes
|
||||||
|
|
||||||
|
- 修复退出全屏时文字过长导致页面出现滚动条后带来的抖动问题
|
||||||
|
- 修复一些类型错误
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- perf: 首屏加载大优化,对比 `3.9.0` 之前版本,首屏请求减少 `71` 个,首屏加载资源减少 `4.1 MB`
|
||||||
|
|
||||||
|
# 3.8.7 (2022-11-28)
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- perf: 打包大优化,请务必升级!使用 `unplugin-vue-define-options` 替换 `unplugin-vue-macros` ,打包速度提升数倍,使用 `unplugin-vue-macros` 以性能中等偏上的 `mac` 为例完整版打包时长为 `6` 分钟 😭,使用 `unplugin-vue-define-options` 替换后,相同电脑下打包时长为 `50` 秒 ☺️
|
||||||
|
|
||||||
|
# 3.8.6 (2022-11-27)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- 添加 `message` 消息提示函数,兼容 `Element Plus` 和 `Ant Design` 两种 `Message` 样式风格,使用和打包大小成本极低并适配暗黑模式,真香 😂
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- perf: 无需安装 `@vue/runtime-core` ,兼容所有 `element-plus` 组件的 `volar` 提示
|
||||||
|
|
||||||
|
# 3.8.5 (2022-11-26)
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- 大优化,移除 `@pureadmin/components` 并采用兼容写法,平台打包大小在未启用压缩前对比优化前减少 `0.4` MB , 首屏请求减少 `2.3` MB 的资源,这对于 [精简版](https://github.com/xiaoxian521/pure-admin-thin) 来说是非常大的优化,精简版已经同步代码
|
||||||
|
|
||||||
|
# 3.8.0 (2022-11-26)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- 添加 `@pureadmin/table` 多种数据格式(深层结构)示例
|
||||||
|
- 添加 `@pureadmin/table` 图像预览示例
|
||||||
|
- 添加 `@pureadmin/table` 行、列拖拽示例
|
||||||
|
- 添加 `@pureadmin/table` 右键菜单示例
|
||||||
|
- 添加 `@pureadmin/table` 导出 `Excel` 示例
|
||||||
|
- 添加 `@pureadmin/table` 编辑单元格示例
|
||||||
|
- 添加 `@pureadmin/table` 水印示例
|
||||||
|
- 添加 `@pureadmin/table` 打印示例
|
||||||
|
- 添加 `@pureadmin/table` 内嵌 `echarts` 图表示例
|
||||||
|
- 添加 `svgo` 压缩平台所有 `svg` 文件,减少体积
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- 静态路由平台自动导入,无需手动引入
|
||||||
|
- 更完善的全局类型提示
|
||||||
|
- 优化 `vite` 依赖预构建在平台里的配置,页面切换加载速度显著加快
|
||||||
|
|
||||||
|
# 3.7.1 (2022-11-22)
|
||||||
|
|
||||||
|
### 🔥 hotfix
|
||||||
|
|
||||||
|
- 修复在未开启标签页缓存时退出登录,可能存在标签页未重置的问题
|
||||||
|
|
||||||
|
# 3.7.0 (2022-11-21)
|
||||||
|
|
||||||
|
### ✔️ refactor
|
||||||
|
|
||||||
|
- 使用 `intro.js` 替换 `driver.js`
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- 添加前端单点登录,测试地址 https://yiming_chang.gitee.io/vue-pure-admin/#/pure-table/index?username=sso&roles=admin&accessToken=eyJhbGciOiJIUzUxMiJ9.admin
|
||||||
|
- 为 [@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table) 添加更多的示例和 `element-plus` 的 [table](https://element-plus.org/zh-CN/component/table.html) 示例保持一致
|
||||||
|
- 丰富水印功能页面(支持自定义各种颜色、阴影、文字、额外属性、设置不可删除水印以及给指定元素设置水印)
|
||||||
|
- 优化菜单,添加 `MenuArrowIconNoTransition` 全局配置,在 `public/serverConfig.json` 中配置即可,对于出现左侧菜单模式,菜单展开卡顿的可设置 `MenuArrowIconNoTransition: true` 即可解决
|
||||||
|
- 更换表单设计器组件演示
|
||||||
|
|
||||||
|
### 🐞 Bug fixes
|
||||||
|
|
||||||
|
- 修复页内菜单带参互相跳转,标签没有选中高亮
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- 删除已废弃的 `$baseUrl`
|
||||||
|
- 兼容引入某个库导致 `global is not defined` 报错,将 `src/utils/globalPolyfills.ts` 文件引入 `src/main.ts` 即可解决
|
||||||
|
- 删除 `@vitejs/plugin-legacy`,`vue3` 无法通过任何工具使其支持 `ie`
|
||||||
|
|
||||||
|
# 3.6.4 (2022-11-10)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- 菜单图标 `icon` 支持使用在线图标
|
||||||
|
|
||||||
|
### 🐞 Bug fixes
|
||||||
|
|
||||||
|
- 修复 `vxe-button` 鼠标覆盖后字体颜色问题以及一些别的样式问题
|
||||||
|
|
||||||
|
### 🍏 Perf
|
||||||
|
|
||||||
|
- 优化路由守卫,如果已经登录并存在登录信息后不能跳转到路由白名单,而是继续保持在当前页面
|
||||||
|
- 将 `baseURL` 和全局环境代理删除,可直接在 `vite.config.ts` 编写,即方便又支持多个代理地址
|
||||||
|
|
||||||
|
# 3.6.3 (2022-11-01)
|
||||||
|
|
||||||
|
### 🎫 Feat
|
||||||
|
|
||||||
|
- 静态资源分类打包
|
||||||
|
- 添加弹幕组件 `demo`
|
||||||
|
|
||||||
|
### 🐞 Bug fixes
|
||||||
|
|
||||||
|
- 修复 `tailwindcss` 最新版新增的 `collapse` 属性与平台 `class` 类名冲突
|
||||||
|
- 修复当 `token` 过期后,如果页面有多个请求会重复刷新 `token`
|
||||||
|
|
||||||
# 3.6.2 (2022-10-27)
|
# 3.6.2 (2022-10-27)
|
||||||
|
|
||||||
### ✔️ refactor
|
### ✔️ refactor
|
||||||
@@ -56,7 +180,7 @@
|
|||||||
|
|
||||||
### ✔️ refactor
|
### ✔️ refactor
|
||||||
|
|
||||||
- 使用 `tailwindcss` 替换 `unocss`,新增 `tailwindcss` [使用文档](http://yiming_chang.gitee.io/pure-admin-doc/pages/39156f/)
|
- 使用 `tailwindcss` 替换 `unocss`,新增 `tailwindcss` [使用文档](https://yiming_chang.gitee.io/pure-admin-doc/pages/tailwindcss/)
|
||||||
|
|
||||||
### 🐞 Bug fixes
|
### 🐞 Bug fixes
|
||||||
|
|
||||||
@@ -94,7 +218,7 @@
|
|||||||
|
|
||||||
- 将 `element-plus` 的 `Table` 二次封装到[@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table),提供灵活的配置项并集成到平台里
|
- 将 `element-plus` 的 `Table` 二次封装到[@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table),提供灵活的配置项并集成到平台里
|
||||||
- 将 `element-plus` 的 `Descriptions` 二次封装到[@pureadmin/descriptions](https://github.com/xiaoxian521/pure-admin-descriptions),提供灵活的配置项并集成到平台里
|
- 将 `element-plus` 的 `Descriptions` 二次封装到[@pureadmin/descriptions](https://github.com/xiaoxian521/pure-admin-descriptions),提供灵活的配置项并集成到平台里
|
||||||
- 将平台的大部分工具以及 hooks 都集中到[@pureadmin/utils](https://pure-admin-utils-docs.vercel.app/),并删除集中到这个库里的代码,减少平台体积
|
- 将平台的大部分工具以及 `hooks` 都集中到[@pureadmin/utils](https://pure-admin-utils.netlify.app),并删除集中到这个库里的代码,减少平台体积
|
||||||
- 添加[unplugin-vue-define-options](https://www.npmjs.com/package/unplugin-vue-define-options)插件,页面可直接写 `defineOptions({name: 自定义名称})`
|
- 添加[unplugin-vue-define-options](https://www.npmjs.com/package/unplugin-vue-define-options)插件,页面可直接写 `defineOptions({name: 自定义名称})`
|
||||||
- 添加项目文件、语言分析工具 [cloc](https://www.npmjs.com/package/cloc)
|
- 添加项目文件、语言分析工具 [cloc](https://www.npmjs.com/package/cloc)
|
||||||
- 添加登录页国际化
|
- 添加登录页国际化
|
||||||
@@ -255,7 +379,6 @@
|
|||||||
- 优化标签页,带来更好的交互体验
|
- 优化标签页,带来更好的交互体验
|
||||||
- 路由 title 支持直接写中文,可脱离国际化
|
- 路由 title 支持直接写中文,可脱离国际化
|
||||||
- 路由历史模式从 env 读取并支持 base 参数
|
- 路由历史模式从 env 读取并支持 base 参数
|
||||||
- 打包后的文件提供传统浏览器兼容性支持,配置 VITE_LEGACY 为 true
|
|
||||||
|
|
||||||
# 2.6.0(2021-11-10)
|
# 2.6.0(2021-11-10)
|
||||||
|
|
||||||
|
|||||||
@@ -8,32 +8,37 @@
|
|||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
vue-pure-admin is a free and open source middle and back-end template. Using the latest `vue3` `vite2` `Element-Plus` `TypeScript` and other mainstream technology development, the out-of-the-box middle and back-end front-end solutions can also be used for learning reference.
|
`vue-pure-admin` is an open source free and out-of-the-box middle and background management system template. Developed using the latest mainstream technologies such as `Vue3`, `Vite`, `Element-Plus`, `TypeScript`, `Pinia`, `Tailwindcss`
|
||||||
|
|
||||||
|
## Thin version (offering non-internationalized and internationalized versions)
|
||||||
|
|
||||||
|
The simplified version is based on the shelf extracted from [vue-pure-admin](https://github.com/xiaoxian521/vue-pure-admin), which contains main functions and is more suitable for actual project development. The packaged size is introduced globally [element-plus](https://element-plus.org) is still below `2.3MB`, and the full version of the code will be permanently synchronized. After enabling `brotli` compression and `cdn` to replace the local library mode, the package size is less than `350kb`
|
||||||
|
|
||||||
|
- [Click me to view the non-internationalized version](https://github.com/xiaoxian521/pure-admin-thin)
|
||||||
|
- [Click me to view Internationalization version](https://github.com/xiaoxian521/pure-admin-thin/tree/i18n)
|
||||||
|
|
||||||
## Supporting Video
|
## Supporting Video
|
||||||
|
|
||||||
- [Click Watch Tutorial](https://www.bilibili.com/video/BV1534y1S7HV)
|
- [Click Watch Tutorial](https://www.bilibili.com/video/BV1kg411v7QT)
|
||||||
- [Click Watch UI Design](https://www.bilibili.com/video/BV17g411T7rq)
|
- [Click Watch UI Design](https://www.bilibili.com/video/BV17g411T7rq)
|
||||||
|
|
||||||
## Docs
|
## Docs (support `PWA` fast, offline access)
|
||||||
|
|
||||||
- [Click me to view the domestic documentation site](http://yiming_chang.gitee.io/pure-admin-doc)
|
- [Click me to view the domestic documentation site](https://yiming_chang.gitee.io/pure-admin-doc)
|
||||||
- [Click me to view foreign document site 1](https://xiaoxian521.github.io/pure-admin-doc)
|
- [Click me to view foreign document site](https://xiaoxian521.github.io/pure-admin-doc)
|
||||||
- [Click me to view foreign document site 2](https://pure-admin-doc.vercel.app)
|
|
||||||
|
|
||||||
## Thin
|
|
||||||
|
|
||||||
- [Click Watch Thin](https://github.com/xiaoxian521/pure-admin-thin)
|
|
||||||
|
|
||||||
## Tauri
|
## Tauri
|
||||||
|
|
||||||
- [Click Watch Tauri](https://github.com/xiaoxian521/tauri-pure-admin)
|
- [Click Watch Tauri](https://github.com/xiaoxian521/tauri-pure-admin)
|
||||||
|
|
||||||
|
## Electron
|
||||||
|
|
||||||
|
- [Click Watch Electron](https://github.com/xiaoxian521/electron-pure-admin)
|
||||||
|
|
||||||
## Preview
|
## Preview
|
||||||
|
|
||||||
- [Click me to view the domestic preview station](http://yiming_chang.gitee.io/vue-pure-admin)
|
- [Click me to view the domestic preview station](https://yiming_chang.gitee.io/vue-pure-admin)
|
||||||
- [Click me to view foreign preview site 1](https://xiaoxian521.github.io/vue-pure-admin)
|
- [Click me to view foreign preview site](https://xiaoxian521.github.io/vue-pure-admin)
|
||||||
- [Click me to view foreign preview station 2](https://vue-pure-admin.vercel.app)
|
|
||||||
|
|
||||||
- PC
|
- PC
|
||||||
<p align="center">
|
<p align="center">
|
||||||
@@ -159,6 +164,18 @@ Thank you very much for your support, I believe the project will get better and
|
|||||||
|
|
||||||
## Contributors
|
## Contributors
|
||||||
|
|
||||||
This project exists thanks to all the people who contribute :heart:
|
Thanks to all the people who contribute :heart:
|
||||||
|
|
||||||
<a href="https://github.com/xiaoxian521/vue-pure-admin/graphs/contributors"><img src="https://contrib.rocks/image?repo=xiaoxian521/vue-pure-admin" /></a>
|
<a href="https://github.com/xiaoxian521/vue-pure-admin/graphs/contributors"><img src="https://contrib.rocks/image?repo=xiaoxian521/vue-pure-admin" /></a>
|
||||||
|
|
||||||
|
## `Star`
|
||||||
|
|
||||||
|
Many thanks to the kind individuals who leave a star. Your support is much appreciated :heart:
|
||||||
|
|
||||||
|
[](https://github.com/xiaoxian521/vue-pure-admin/stargazers)
|
||||||
|
|
||||||
|
## `Fork`
|
||||||
|
|
||||||
|
It's so cool that you study hard :heart:
|
||||||
|
|
||||||
|
[](https://github.com/xiaoxian521/vue-pure-admin/network/members)
|
||||||
|
|||||||
65
README.md
@@ -8,32 +8,37 @@
|
|||||||
|
|
||||||
## 简介
|
## 简介
|
||||||
|
|
||||||
vue-pure-admin 是一个免费开源的中后台模版。使用了最新的`vue3` `vite2` `Element-Plus` `TypeScript`等主流技术开发,开箱即用的中后台前端解决方案,也可用于学习参考。
|
`vue-pure-admin` 是一款开源免费且开箱即用的中后台管理系统模版。使用了最新的 `Vue3`、`Vite`、`Element-Plus`、`TypeScript`、`Pinia`、`Tailwindcss` 等主流技术开发
|
||||||
|
|
||||||
|
## 精简版(实际项目开发请用精简版,提供 `非国际化` 、`国际化` 两个版本选择)
|
||||||
|
|
||||||
|
精简版是基于 [vue-pure-admin](https://github.com/xiaoxian521/vue-pure-admin) 提炼出的架子,包含主体功能,更适合实际项目开发,打包后的大小在全局引入 [element-plus](https://element-plus.org) 的情况下仍然低于 `2.3MB`,并且会永久同步完整版的代码。开启 `brotli` 压缩和 `cdn` 替换本地库模式后,打包大小低于 `350kb`
|
||||||
|
|
||||||
|
- [点我查看非国际化精简版](https://github.com/xiaoxian521/pure-admin-thin)
|
||||||
|
- [点我查看国际化精简版](https://github.com/xiaoxian521/pure-admin-thin/tree/i18n)
|
||||||
|
|
||||||
## 配套视频
|
## 配套视频
|
||||||
|
|
||||||
- [点我查看教程](https://www.bilibili.com/video/BV1534y1S7HV)
|
- [点我查看快速开发教程](https://www.bilibili.com/video/BV1kg411v7QT)
|
||||||
- [点我查看 UI 设计](https://www.bilibili.com/video/BV17g411T7rq)
|
- [点我查看 UI 设计](https://www.bilibili.com/video/BV17g411T7rq)
|
||||||
|
|
||||||
## 配套文档
|
## 配套文档(支持 `PWA` 快速、离线访问)
|
||||||
|
|
||||||
- [点我查看国内文档站](http://yiming_chang.gitee.io/pure-admin-doc)
|
- [点我查看国内文档站](https://yiming_chang.gitee.io/pure-admin-doc)
|
||||||
- [点我查看国外文档站 1](https://xiaoxian521.github.io/pure-admin-doc)
|
- [点我查看国外文档站](https://xiaoxian521.github.io/pure-admin-doc)
|
||||||
- [点我查看国外文档站 2](https://pure-admin-doc.vercel.app)
|
|
||||||
|
|
||||||
## 精简版
|
## `Tauri` 版
|
||||||
|
|
||||||
- [点我查看精简版](https://github.com/xiaoxian521/pure-admin-thin)
|
|
||||||
|
|
||||||
## Tauri 版
|
|
||||||
|
|
||||||
- [点我查看 Tauri 版](https://github.com/xiaoxian521/tauri-pure-admin)
|
- [点我查看 Tauri 版](https://github.com/xiaoxian521/tauri-pure-admin)
|
||||||
|
|
||||||
|
## `Electron` 版
|
||||||
|
|
||||||
|
- [点我查看 Electron 版](https://github.com/xiaoxian521/electron-pure-admin)
|
||||||
|
|
||||||
## 预览
|
## 预览
|
||||||
|
|
||||||
- [点我查看国内预览站](http://yiming_chang.gitee.io/vue-pure-admin)
|
- [点我查看国内预览站](https://yiming_chang.gitee.io/vue-pure-admin)
|
||||||
- [点我查看国外预览站 1](https://xiaoxian521.github.io/vue-pure-admin)
|
- [点我查看国外预览站](https://xiaoxian521.github.io/vue-pure-admin)
|
||||||
- [点我查看国外预览站 2](https://vue-pure-admin.vercel.app)
|
|
||||||
|
|
||||||
- PC 端
|
- PC 端
|
||||||
<p align="center">
|
<p align="center">
|
||||||
@@ -50,7 +55,7 @@ vue-pure-admin 是一个免费开源的中后台模版。使用了最新的`vue3
|
|||||||
<img alt="PureAdmin Logo" width="100%" src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/3061c7b92f6d4cb4bcdf227d966ac696~tplv-k3u1fbpfcp-zoom-in-crop-mark:3024:0:0:0.awebp?">
|
<img alt="PureAdmin Logo" width="100%" src="https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/3061c7b92f6d4cb4bcdf227d966ac696~tplv-k3u1fbpfcp-zoom-in-crop-mark:3024:0:0:0.awebp?">
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
### 使用 Gitpod
|
### 使用 `Gitpod`
|
||||||
|
|
||||||
在 Gitpod(适用于 GitHub 的免费在线开发环境)中打开项目,并立即开始编码.
|
在 Gitpod(适用于 GitHub 的免费在线开发环境)中打开项目,并立即开始编码.
|
||||||
|
|
||||||
@@ -93,17 +98,17 @@ pnpm build
|
|||||||
|
|
||||||
## 如何贡献
|
## 如何贡献
|
||||||
|
|
||||||
非常欢迎你的加入 或者提交一个 Pull Request
|
非常欢迎您的加入 或者提交一个 `Pull Request`
|
||||||
|
|
||||||
**Pull Request:**
|
**Pull Request:**
|
||||||
|
|
||||||
1. Fork 代码!
|
1. Fork 代码!
|
||||||
2. 创建自己的分支: `git checkout -b feat/xxxx`
|
2. 创建自己的分支: `git checkout -b feat/xxxx`
|
||||||
3. 提交你的修改: `git commit -am 'feat(function): add xxxxx'`
|
3. 提交您的修改: `git commit -am 'feat(function): add xxxxx'`
|
||||||
4. 推送您的分支: `git push origin feat/xxxx`
|
4. 推送您的分支: `git push origin feat/xxxx`
|
||||||
5. 提交`pull request`
|
5. 提交`pull request`
|
||||||
|
|
||||||
## Git 贡献提交规范
|
## `Git` 贡献提交规范
|
||||||
|
|
||||||
- 参考 [vue](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md) 规范 ([Angular](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular))
|
- 参考 [vue](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md) 规范 ([Angular](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular))
|
||||||
|
|
||||||
@@ -125,7 +130,7 @@ pnpm build
|
|||||||
|
|
||||||
本地开发推荐使用 `Chrome 80+` 浏览器
|
本地开发推荐使用 `Chrome 80+` 浏览器
|
||||||
|
|
||||||
支持现代浏览器, 不支持 IE
|
支持现代浏览器, 不支持 `IE`
|
||||||
|
|
||||||
| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt=" Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>IE | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt=" Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Safari |
|
| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt=" Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>IE | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt=" Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Safari |
|
||||||
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
|
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
|
||||||
@@ -137,15 +142,15 @@ pnpm build
|
|||||||
|
|
||||||
## 捐赠
|
## 捐赠
|
||||||
|
|
||||||
如果你觉得这个项目对您有帮助,可以帮作者买一杯果汁 🍹 表示支持
|
如果您觉得这个项目对您有帮助,可以帮作者买一杯果汁 🍹 表示支持
|
||||||
|
|
||||||
<img src="https://p9-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/f69bf13c5b854ed5b699807cafa0e3ce~tplv-k3u1fbpfcp-zoom-in-crop-mark:1304:0:0:0.awebp?" width="150px" height="150px" />
|
<img src="https://p9-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/f69bf13c5b854ed5b699807cafa0e3ce~tplv-k3u1fbpfcp-zoom-in-crop-mark:1304:0:0:0.awebp?" width="150px" height="150px" />
|
||||||
|
|
||||||
## QQ 交流群
|
## `QQ` 交流群
|
||||||
|
|
||||||
一群已满,下面是二群,群里严禁`黄`、`赌`、`毒`、`vpn`等违法行为!
|
一群已满,下面是二群,群里严禁`黄`、`赌`、`毒`、`vpn`等违法行为!
|
||||||
|
|
||||||
<img src="http://yiming_chang.gitee.io/pure-admin-doc/img/support/qq.png" width="150px" height="225px" />
|
<img src="https://yiming_chang.gitee.io/pure-admin-doc/img/support/qq.png" width="150px" height="225px" />
|
||||||
|
|
||||||
## 许可证
|
## 许可证
|
||||||
|
|
||||||
@@ -155,7 +160,7 @@ pnpm build
|
|||||||
|
|
||||||
## 捐赠者
|
## 捐赠者
|
||||||
|
|
||||||
非常感谢你们的支持,相信项目会越来越好 :heart:
|
非常感谢您们的支持,相信项目会越来越好 :heart:
|
||||||
|
|
||||||
| xueyuheng | taolei1990 | hang-kim | madwolfcrazy | limuen | BenLakes |
|
| xueyuheng | taolei1990 | hang-kim | madwolfcrazy | limuen | BenLakes |
|
||||||
| :--------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: |
|
| :--------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: |
|
||||||
@@ -165,6 +170,18 @@ pnpm build
|
|||||||
|
|
||||||
## 贡献者
|
## 贡献者
|
||||||
|
|
||||||
这个项目的存在感谢所有做出贡献的人 :heart:
|
感谢所有做出贡献的人 :heart:
|
||||||
|
|
||||||
<a href="https://github.com/xiaoxian521/vue-pure-admin/graphs/contributors"><img src="https://contrib.rocks/image?repo=xiaoxian521/vue-pure-admin" /></a>
|
<a href="https://github.com/xiaoxian521/vue-pure-admin/graphs/contributors"><img src="https://contrib.rocks/image?repo=xiaoxian521/vue-pure-admin" /></a>
|
||||||
|
|
||||||
|
## `Star`
|
||||||
|
|
||||||
|
非常感谢留下星星的好心人,感谢您的支持 :heart:
|
||||||
|
|
||||||
|
[](https://github.com/xiaoxian521/vue-pure-admin/stargazers)
|
||||||
|
|
||||||
|
## `Fork`
|
||||||
|
|
||||||
|
瞧,那些 `小哥哥` 、`小姐姐` 认真 `学习` 的样子真滴是 `哎呦不错哦` :heart:
|
||||||
|
|
||||||
|
[](https://github.com/xiaoxian521/vue-pure-admin/network/members)
|
||||||
|
|||||||
@@ -1,13 +1,10 @@
|
|||||||
/** 处理环境变量 */
|
/** 处理环境变量 */
|
||||||
const warpperEnv = (envConf: Recordable): ViteEnv => {
|
const warpperEnv = (envConf: Recordable): ViteEnv => {
|
||||||
/** 此处为默认值,无需修改 */
|
/** 此处为默认值 */
|
||||||
const ret: ViteEnv = {
|
const ret: ViteEnv = {
|
||||||
VITE_PORT: 8848,
|
VITE_PORT: 8848,
|
||||||
VITE_PUBLIC_PATH: "",
|
VITE_PUBLIC_PATH: "",
|
||||||
VITE_PROXY_DOMAIN: "",
|
|
||||||
VITE_PROXY_DOMAIN_REAL: "",
|
|
||||||
VITE_ROUTER_HISTORY: "",
|
VITE_ROUTER_HISTORY: "",
|
||||||
VITE_LEGACY: false,
|
|
||||||
VITE_CDN: false,
|
VITE_CDN: false,
|
||||||
VITE_COMPRESSION: "none"
|
VITE_COMPRESSION: "none"
|
||||||
};
|
};
|
||||||
@@ -30,14 +27,9 @@ const warpperEnv = (envConf: Recordable): ViteEnv => {
|
|||||||
return ret;
|
return ret;
|
||||||
};
|
};
|
||||||
|
|
||||||
/** 跨域代理重写 */
|
/** 获取环境变量 */
|
||||||
const regExps = (value: string, reg: string): string => {
|
|
||||||
return value.replace(new RegExp(`^${reg}`, "g"), "");
|
|
||||||
};
|
|
||||||
|
|
||||||
/** 环境变量 */
|
|
||||||
const loadEnv = (): ViteEnv => {
|
const loadEnv = (): ViteEnv => {
|
||||||
return import.meta.env;
|
return import.meta.env;
|
||||||
};
|
};
|
||||||
|
|
||||||
export { warpperEnv, regExps, loadEnv };
|
export { warpperEnv, loadEnv };
|
||||||
|
|||||||
65
build/optimize.ts
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
/**
|
||||||
|
* 此文件作用于 `vite.config.ts` 的 `optimizeDeps.include` 依赖预构建配置项
|
||||||
|
* 依赖预构建,`vite` 启动时会将下面 include 里的模块,编译成 esm 格式并缓存到 node_modules/.vite 文件夹,页面加载到对应模块时如果浏览器有缓存就读取浏览器缓存,如果没有会读取本地缓存并按需加载
|
||||||
|
* 尤其当您禁用浏览器缓存时(这种情况只应该发生在调试阶段)必须将对应模块加入到 include里,否则会遇到开发环境切换页面卡顿的问题(vite 会认为它是一个新的依赖包会重新加载并强制刷新页面),因为它既无法使用浏览器缓存,又没有在本地 node_modules/.vite 里缓存
|
||||||
|
* 温馨提示:如果您使用的第三方库是全局引入,也就是引入到 src/main.ts 文件里,就不需要再添加到 include 里了,因为 vite 会自动将它们缓存到 node_modules/.vite
|
||||||
|
*/
|
||||||
|
const include = [
|
||||||
|
"qs",
|
||||||
|
"mitt",
|
||||||
|
"xlsx",
|
||||||
|
"dayjs",
|
||||||
|
"axios",
|
||||||
|
"pinia",
|
||||||
|
"swiper",
|
||||||
|
"lodash",
|
||||||
|
"echarts",
|
||||||
|
"intro.js",
|
||||||
|
"vue-i18n",
|
||||||
|
"xe-utils",
|
||||||
|
"vxe-table",
|
||||||
|
"js-cookie",
|
||||||
|
"lodash-es",
|
||||||
|
"cropperjs",
|
||||||
|
"jsbarcode",
|
||||||
|
"sortablejs",
|
||||||
|
"swiper/vue",
|
||||||
|
"md-editor-v3",
|
||||||
|
"@vueuse/core",
|
||||||
|
"vue3-danmaku",
|
||||||
|
"v-contextmenu",
|
||||||
|
"vue-pdf-embed",
|
||||||
|
"lodash-unified",
|
||||||
|
"@ctrl/tinycolor",
|
||||||
|
"china-area-data",
|
||||||
|
"vue-json-pretty",
|
||||||
|
"@logicflow/core",
|
||||||
|
"@pureadmin/utils",
|
||||||
|
"@wangeditor/editor",
|
||||||
|
"responsive-storage",
|
||||||
|
"@howdyjs/mouse-menu",
|
||||||
|
"@logicflow/extension",
|
||||||
|
"vue-virtual-scroller",
|
||||||
|
"element-resize-detector",
|
||||||
|
"@amap/amap-jsapi-loader",
|
||||||
|
"el-table-infinite-scroll",
|
||||||
|
"@wangeditor/editor-for-vue",
|
||||||
|
"xgplayer/dist/simple_player",
|
||||||
|
"xgplayer/es/controls/volume",
|
||||||
|
"vuedraggable/src/vuedraggable",
|
||||||
|
"xgplayer/es/controls/screenShot",
|
||||||
|
"xgplayer/es/controls/playbackRate"
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 在预构建中强制排除的依赖项
|
||||||
|
* 温馨提示:所有以 `@iconify-icons/` 开头引入的的本地图标模块,都应该加入到下面的 `exclude` 里,因为平台推荐的使用方式是哪里需要哪里引入而且都是单个的引入,不需要预构建,直接让浏览器加载就好
|
||||||
|
*/
|
||||||
|
const exclude = [
|
||||||
|
"@iconify-icons/ep",
|
||||||
|
"@iconify-icons/ri",
|
||||||
|
"@iconify-icons/mdi",
|
||||||
|
"@pureadmin/theme/dist/browser-utils"
|
||||||
|
];
|
||||||
|
|
||||||
|
export { include, exclude };
|
||||||
@@ -3,7 +3,6 @@ import { resolve } from "path";
|
|||||||
import vue from "@vitejs/plugin-vue";
|
import vue from "@vitejs/plugin-vue";
|
||||||
import { viteBuildInfo } from "./info";
|
import { viteBuildInfo } from "./info";
|
||||||
import svgLoader from "vite-svg-loader";
|
import svgLoader from "vite-svg-loader";
|
||||||
import legacy from "@vitejs/plugin-legacy";
|
|
||||||
import vueJsx from "@vitejs/plugin-vue-jsx";
|
import vueJsx from "@vitejs/plugin-vue-jsx";
|
||||||
import { viteMockServe } from "vite-plugin-mock";
|
import { viteMockServe } from "vite-plugin-mock";
|
||||||
import { configCompressPlugin } from "./compress";
|
import { configCompressPlugin } from "./compress";
|
||||||
@@ -16,7 +15,6 @@ import { genScssMultipleScopeVars } from "../src/layout/theme";
|
|||||||
|
|
||||||
export function getPluginsList(
|
export function getPluginsList(
|
||||||
command: string,
|
command: string,
|
||||||
VITE_LEGACY: boolean,
|
|
||||||
VITE_CDN: boolean,
|
VITE_CDN: boolean,
|
||||||
VITE_COMPRESSION: ViteCompression
|
VITE_COMPRESSION: ViteCompression
|
||||||
) {
|
) {
|
||||||
@@ -65,13 +63,6 @@ export function getPluginsList(
|
|||||||
`,
|
`,
|
||||||
logger: false
|
logger: false
|
||||||
}),
|
}),
|
||||||
// 是否为打包后的文件提供传统浏览器兼容性支持
|
|
||||||
VITE_LEGACY
|
|
||||||
? legacy({
|
|
||||||
targets: ["ie >= 11"],
|
|
||||||
additionalLegacyPolyfills: ["regenerator-runtime/runtime"]
|
|
||||||
})
|
|
||||||
: null,
|
|
||||||
// 打包分析
|
// 打包分析
|
||||||
lifecycle === "report"
|
lifecycle === "report"
|
||||||
? visualizer({ open: true, brotliSize: true, filename: "report.html" })
|
? visualizer({ open: true, brotliSize: true, filename: "report.html" })
|
||||||
|
|||||||
@@ -18,8 +18,8 @@ buttons:
|
|||||||
hscloseRightTabs: Close RightTabs
|
hscloseRightTabs: Close RightTabs
|
||||||
hscloseOtherTabs: Close OtherTabs
|
hscloseOtherTabs: Close OtherTabs
|
||||||
hscloseAllTabs: Close AllTabs
|
hscloseAllTabs: Close AllTabs
|
||||||
hswholeFullScreen: Whole FullScreen
|
hswholeFullScreen: FullScreen
|
||||||
hswholeExitFullScreen: Whole ExitFullScreen
|
hswholeExitFullScreen: ExitFull
|
||||||
hscontentFullScreen: Content FullScreen
|
hscontentFullScreen: Content FullScreen
|
||||||
hscontentExitFullScreen: Content ExitFullScreen
|
hscontentExitFullScreen: Content ExitFullScreen
|
||||||
menus:
|
menus:
|
||||||
@@ -37,6 +37,7 @@ menus:
|
|||||||
hsfourZeroOne: "403"
|
hsfourZeroOne: "403"
|
||||||
hsFive: "500"
|
hsFive: "500"
|
||||||
hscomponents: Components
|
hscomponents: Components
|
||||||
|
hsmessage: Message Tips Components
|
||||||
hsvideo: Video Components
|
hsvideo: Video Components
|
||||||
hsmap: Map Components
|
hsmap: Map Components
|
||||||
hsdraggable: Draggable Components
|
hsdraggable: Draggable Components
|
||||||
@@ -72,6 +73,11 @@ menus:
|
|||||||
hsPureDocument: Pure Doc(Embedded)
|
hsPureDocument: Pure Doc(Embedded)
|
||||||
externalLink: Pure Doc(External)
|
externalLink: Pure Doc(External)
|
||||||
hsEpDocument: Element Plus Doc(Embedded)
|
hsEpDocument: Element Plus Doc(Embedded)
|
||||||
|
hsVueDocument: Vue3 Doc(Embedded)
|
||||||
|
hsViteDocument: Vite Doc(Embedded)
|
||||||
|
hsPiniaDocument: Pinia Doc(Embedded)
|
||||||
|
hsRouterDocument: Vue Router Doc(Embedded)
|
||||||
|
hsTailwindcssDocument: Tailwindcss Doc(Embedded)
|
||||||
hsAbout: About
|
hsAbout: About
|
||||||
hsResult: Result Page
|
hsResult: Result Page
|
||||||
hsSuccess: Success Page
|
hsSuccess: Success Page
|
||||||
@@ -79,9 +85,6 @@ menus:
|
|||||||
hsIconSelect: Icon Select
|
hsIconSelect: Icon Select
|
||||||
hsTimeline: Time Line
|
hsTimeline: Time Line
|
||||||
hsLineTree: LineTree
|
hsLineTree: LineTree
|
||||||
hsAntTabs: Imitate Antdv Tabs
|
|
||||||
hsAntAnchor: Imitate Antdv Anchor
|
|
||||||
hsAntTreeSelect: Imitate Antdv TreeSelector
|
|
||||||
hsList: List Page
|
hsList: List Page
|
||||||
hsListCard: Card List Page
|
hsListCard: Card List Page
|
||||||
hsDebounce: Debounce & Throttle
|
hsDebounce: Debounce & Throttle
|
||||||
@@ -94,6 +97,12 @@ menus:
|
|||||||
hsPdf: PDF Preview
|
hsPdf: PDF Preview
|
||||||
hsExecl: Export Excel
|
hsExecl: Export Excel
|
||||||
hsInfiniteScroll: Table Infinite Scroll
|
hsInfiniteScroll: Table Infinite Scroll
|
||||||
|
hsdanmaku: Danmaku Components
|
||||||
|
hsPureTableBase: Base Usage
|
||||||
|
hsPureTableHigh: High Usage
|
||||||
|
hsTree: Big Data Tree
|
||||||
|
hsMenuoverflow: Menu Overflow Show Tooltip Text
|
||||||
|
hsChildMenuoverflow: Child Menu Overflow Show Tooltip Text
|
||||||
status:
|
status:
|
||||||
hsLoad: Loading...
|
hsLoad: Loading...
|
||||||
login:
|
login:
|
||||||
|
|||||||
@@ -18,8 +18,8 @@ buttons:
|
|||||||
hscloseRightTabs: 关闭右侧标签页
|
hscloseRightTabs: 关闭右侧标签页
|
||||||
hscloseOtherTabs: 关闭其他标签页
|
hscloseOtherTabs: 关闭其他标签页
|
||||||
hscloseAllTabs: 关闭全部标签页
|
hscloseAllTabs: 关闭全部标签页
|
||||||
hswholeFullScreen: 整体页面全屏
|
hswholeFullScreen: 全屏
|
||||||
hswholeExitFullScreen: 整体页面退出全屏
|
hswholeExitFullScreen: 退出全屏
|
||||||
hscontentFullScreen: 内容区全屏
|
hscontentFullScreen: 内容区全屏
|
||||||
hscontentExitFullScreen: 内容区退出全屏
|
hscontentExitFullScreen: 内容区退出全屏
|
||||||
menus:
|
menus:
|
||||||
@@ -37,6 +37,7 @@ menus:
|
|||||||
hsfourZeroOne: "403"
|
hsfourZeroOne: "403"
|
||||||
hsFive: "500"
|
hsFive: "500"
|
||||||
hscomponents: 组件
|
hscomponents: 组件
|
||||||
|
hsmessage: 消息提示组件
|
||||||
hsvideo: 视频组件
|
hsvideo: 视频组件
|
||||||
hsmap: 地图组件
|
hsmap: 地图组件
|
||||||
hsdraggable: 拖拽组件
|
hsdraggable: 拖拽组件
|
||||||
@@ -69,9 +70,14 @@ menus:
|
|||||||
hsPrint: 打印
|
hsPrint: 打印
|
||||||
hsDownload: 下载
|
hsDownload: 下载
|
||||||
hsExternalPage: 外部页面
|
hsExternalPage: 外部页面
|
||||||
hsPureDocument: 平台文档(内嵌)
|
hsPureDocument: 平台文档(内嵌)
|
||||||
externalLink: 平台文档(外链)
|
externalLink: 平台文档(外链)
|
||||||
hsEpDocument: Element Plus文档(内嵌)
|
hsEpDocument: Element Plus 文档(内嵌)
|
||||||
|
hsVueDocument: Vue3 文档(内嵌)
|
||||||
|
hsViteDocument: Vite 文档(内嵌)
|
||||||
|
hsPiniaDocument: Pinia 文档(内嵌)
|
||||||
|
hsRouterDocument: Vue Router 文档(内嵌)
|
||||||
|
hsTailwindcssDocument: Tailwindcss 文档(内嵌)
|
||||||
hsAbout: 关于
|
hsAbout: 关于
|
||||||
hsResult: 结果页面
|
hsResult: 结果页面
|
||||||
hsSuccess: 成功页面
|
hsSuccess: 成功页面
|
||||||
@@ -79,9 +85,6 @@ menus:
|
|||||||
hsIconSelect: 图标选择器
|
hsIconSelect: 图标选择器
|
||||||
hsTimeline: 时间线
|
hsTimeline: 时间线
|
||||||
hsLineTree: 树形连接线
|
hsLineTree: 树形连接线
|
||||||
hsAntTabs: 仿antdv标签页
|
|
||||||
hsAntAnchor: 仿antdv锚点
|
|
||||||
hsAntTreeSelect: 仿antdv树型选择器
|
|
||||||
hsList: 列表页
|
hsList: 列表页
|
||||||
hsListCard: 卡片列表页
|
hsListCard: 卡片列表页
|
||||||
hsDebounce: 防抖节流
|
hsDebounce: 防抖节流
|
||||||
@@ -94,6 +97,12 @@ menus:
|
|||||||
hsPdf: PDF预览
|
hsPdf: PDF预览
|
||||||
hsExecl: 导出Excel
|
hsExecl: 导出Excel
|
||||||
hsInfiniteScroll: 表格无限滚动
|
hsInfiniteScroll: 表格无限滚动
|
||||||
|
hsdanmaku: 弹幕组件
|
||||||
|
hsPureTableBase: 基础用法(23个示例)
|
||||||
|
hsPureTableHigh: 高级用法(8个示例)
|
||||||
|
hsTree: 大数据树业务组件
|
||||||
|
hsMenuoverflow: 目录超出显示 Tooltip 文字提示
|
||||||
|
hsChildMenuoverflow: 菜单超出显示 Tooltip 文字提示
|
||||||
status:
|
status:
|
||||||
hsLoad: 加载中...
|
hsLoad: 加载中...
|
||||||
login:
|
login:
|
||||||
|
|||||||
@@ -1,5 +1,14 @@
|
|||||||
// 模拟后端动态生成路由
|
// 模拟后端动态生成路由
|
||||||
import { MockMethod } from "vite-plugin-mock";
|
import { MockMethod } from "vite-plugin-mock";
|
||||||
|
import { system, permission, frame, tabs } from "@/router/enums";
|
||||||
|
|
||||||
|
import FlUser from "@iconify-icons/ri/admin-line";
|
||||||
|
import Role from "@iconify-icons/ri/admin-fill";
|
||||||
|
import Dict from "@iconify-icons/ri/git-repository-line";
|
||||||
|
import Setting from "@iconify-icons/ri/settings-3-line";
|
||||||
|
import Dept from "@iconify-icons/ri/git-branch-line";
|
||||||
|
import Lollipop from "@iconify-icons/ep/lollipop";
|
||||||
|
import Monitor from "@iconify-icons/ep/monitor";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* roles:页面级别权限,这里模拟二种 "admin"、"common"
|
* roles:页面级别权限,这里模拟二种 "admin"、"common"
|
||||||
@@ -10,16 +19,16 @@ import { MockMethod } from "vite-plugin-mock";
|
|||||||
const systemRouter = {
|
const systemRouter = {
|
||||||
path: "/system",
|
path: "/system",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "setting",
|
icon: Setting,
|
||||||
title: "menus.hssysManagement",
|
title: "menus.hssysManagement",
|
||||||
rank: 11
|
rank: system
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: "/system/user/index",
|
path: "/system/user/index",
|
||||||
name: "User",
|
name: "User",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "flUser",
|
icon: FlUser,
|
||||||
title: "menus.hsUser",
|
title: "menus.hsUser",
|
||||||
roles: ["admin"]
|
roles: ["admin"]
|
||||||
}
|
}
|
||||||
@@ -28,7 +37,7 @@ const systemRouter = {
|
|||||||
path: "/system/role/index",
|
path: "/system/role/index",
|
||||||
name: "Role",
|
name: "Role",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "role",
|
icon: Role,
|
||||||
title: "menus.hsRole",
|
title: "menus.hsRole",
|
||||||
roles: ["admin"]
|
roles: ["admin"]
|
||||||
}
|
}
|
||||||
@@ -37,7 +46,7 @@ const systemRouter = {
|
|||||||
path: "/system/dept/index",
|
path: "/system/dept/index",
|
||||||
name: "Dept",
|
name: "Dept",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "dept",
|
icon: Dept,
|
||||||
title: "menus.hsDept",
|
title: "menus.hsDept",
|
||||||
roles: ["admin"]
|
roles: ["admin"]
|
||||||
}
|
}
|
||||||
@@ -47,7 +56,7 @@ const systemRouter = {
|
|||||||
component: "/system/dict/index",
|
component: "/system/dict/index",
|
||||||
name: "Dict",
|
name: "Dict",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "dict",
|
icon: Dict,
|
||||||
title: "menus.hsDict",
|
title: "menus.hsDict",
|
||||||
keepAlive: true,
|
keepAlive: true,
|
||||||
roles: ["admin"]
|
roles: ["admin"]
|
||||||
@@ -60,16 +69,16 @@ const permissionRouter = {
|
|||||||
path: "/permission",
|
path: "/permission",
|
||||||
meta: {
|
meta: {
|
||||||
title: "menus.permission",
|
title: "menus.permission",
|
||||||
icon: "lollipop",
|
icon: Lollipop,
|
||||||
rank: 10
|
rank: permission
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: "/permission/page/index",
|
path: "/permission/page/index",
|
||||||
name: "PermissionPage",
|
name: "PermissionPage",
|
||||||
meta: {
|
meta: {
|
||||||
roles: ["admin", "common"],
|
title: "menus.permissionPage",
|
||||||
title: "menus.permissionPage"
|
roles: ["admin", "common"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -87,25 +96,25 @@ const permissionRouter = {
|
|||||||
const frameRouter = {
|
const frameRouter = {
|
||||||
path: "/iframe",
|
path: "/iframe",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "monitor",
|
icon: Monitor,
|
||||||
title: "menus.hsExternalPage",
|
title: "menus.hsExternalPage",
|
||||||
rank: 7
|
rank: frame
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
|
{
|
||||||
|
path: "/external",
|
||||||
|
name: "https://yiming_chang.gitee.io/pure-admin-doc",
|
||||||
|
meta: {
|
||||||
|
title: "menus.externalLink",
|
||||||
|
roles: ["admin", "common"]
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: "/iframe/pure",
|
path: "/iframe/pure",
|
||||||
name: "FramePure",
|
name: "FramePure",
|
||||||
meta: {
|
meta: {
|
||||||
title: "menus.hsPureDocument",
|
title: "menus.hsPureDocument",
|
||||||
frameSrc: "http://yiming_chang.gitee.io/pure-admin-doc",
|
frameSrc: "https://yiming_chang.gitee.io/pure-admin-doc",
|
||||||
roles: ["admin", "common"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/external",
|
|
||||||
name: "http://yiming_chang.gitee.io/pure-admin-doc",
|
|
||||||
meta: {
|
|
||||||
title: "menus.externalLink",
|
|
||||||
roles: ["admin", "common"]
|
roles: ["admin", "common"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -117,6 +126,51 @@ const frameRouter = {
|
|||||||
frameSrc: "https://element-plus.org/zh-CN/",
|
frameSrc: "https://element-plus.org/zh-CN/",
|
||||||
roles: ["admin", "common"]
|
roles: ["admin", "common"]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: "/iframe/vue3",
|
||||||
|
name: "FrameVue",
|
||||||
|
meta: {
|
||||||
|
title: "menus.hsVueDocument",
|
||||||
|
frameSrc: "https://cn.vuejs.org/",
|
||||||
|
roles: ["admin", "common"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: "/iframe/vite",
|
||||||
|
name: "FrameVite",
|
||||||
|
meta: {
|
||||||
|
title: "menus.hsViteDocument",
|
||||||
|
frameSrc: "https://cn.vitejs.dev/",
|
||||||
|
roles: ["admin", "common"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: "/iframe/pinia",
|
||||||
|
name: "FramePinia",
|
||||||
|
meta: {
|
||||||
|
title: "menus.hsPiniaDocument",
|
||||||
|
frameSrc: "https://pinia.vuejs.org/zh/index.html",
|
||||||
|
roles: ["admin", "common"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: "/iframe/vue-router",
|
||||||
|
name: "FrameRouter",
|
||||||
|
meta: {
|
||||||
|
title: "menus.hsRouterDocument",
|
||||||
|
frameSrc: "https://router.vuejs.org/zh/",
|
||||||
|
roles: ["admin", "common"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: "/iframe/tailwindcss",
|
||||||
|
name: "FrameTailwindcss",
|
||||||
|
meta: {
|
||||||
|
title: "menus.hsTailwindcssDocument",
|
||||||
|
frameSrc: "https://tailwindcss.com/docs/installation",
|
||||||
|
roles: ["admin", "common"]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
@@ -126,7 +180,7 @@ const tabsRouter = {
|
|||||||
meta: {
|
meta: {
|
||||||
icon: "IF-team-icontabs",
|
icon: "IF-team-icontabs",
|
||||||
title: "menus.hstabs",
|
title: "menus.hstabs",
|
||||||
rank: 13
|
rank: tabs
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
@@ -137,6 +191,7 @@ const tabsRouter = {
|
|||||||
roles: ["admin", "common"]
|
roles: ["admin", "common"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
// query 传参模式
|
||||||
{
|
{
|
||||||
path: "/tabs/query-detail",
|
path: "/tabs/query-detail",
|
||||||
name: "TabQueryDetail",
|
name: "TabQueryDetail",
|
||||||
@@ -146,11 +201,13 @@ const tabsRouter = {
|
|||||||
roles: ["admin", "common"]
|
roles: ["admin", "common"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
// params 传参模式
|
||||||
{
|
{
|
||||||
path: "/tabs/params-detail/:id",
|
path: "/tabs/params-detail/:id",
|
||||||
component: "params-detail",
|
component: "params-detail",
|
||||||
name: "TabParamsDetail",
|
name: "TabParamsDetail",
|
||||||
meta: {
|
meta: {
|
||||||
|
// 不在menu菜单中显示
|
||||||
showLink: false,
|
showLink: false,
|
||||||
roles: ["admin", "common"]
|
roles: ["admin", "common"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ export default [
|
|||||||
return {
|
return {
|
||||||
success: true,
|
success: true,
|
||||||
data: {
|
data: {
|
||||||
accessToken: "eyJhbGciOiJIUzUxMiJ9.admin",
|
accessToken: "eyJhbGciOiJIUzUxMiJ9.newAdmin",
|
||||||
refreshToken: "eyJhbGciOiJIUzUxMiJ9.adminRefresh",
|
refreshToken: "eyJhbGciOiJIUzUxMiJ9.newAdminRefresh",
|
||||||
// `expires`选择这种日期格式是为了方便调试,后端直接设置时间戳或许更方便(每次都应该递增)。如果后端返回的是时间戳格式,前端开发请来到这个目录`src/utils/auth.ts`,把第`38`行的代码换成expires = data.expires即可。
|
// `expires`选择这种日期格式是为了方便调试,后端直接设置时间戳或许更方便(每次都应该递增)。如果后端返回的是时间戳格式,前端开发请来到这个目录`src/utils/auth.ts`,把第`38`行的代码换成expires = data.expires即可。
|
||||||
expires: "2023/10/30 23:59:59"
|
expires: "2023/10/30 23:59:59"
|
||||||
}
|
}
|
||||||
|
|||||||
100
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "vue-pure-admin",
|
"name": "vue-pure-admin",
|
||||||
"version": "3.6.2",
|
"version": "3.9.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "NODE_OPTIONS=--max-old-space-size=4096 vite",
|
"dev": "NODE_OPTIONS=--max-old-space-size=4096 vite",
|
||||||
@@ -11,6 +11,7 @@
|
|||||||
"preview": "vite preview",
|
"preview": "vite preview",
|
||||||
"preview:build": "pnpm build && vite preview",
|
"preview:build": "pnpm build && vite preview",
|
||||||
"typecheck": "tsc --noEmit && vue-tsc --noEmit --skipLibCheck",
|
"typecheck": "tsc --noEmit && vue-tsc --noEmit --skipLibCheck",
|
||||||
|
"svgo": "svgo -f src/assets/svg -o src/assets/svg",
|
||||||
"cloc": "NODE_OPTIONS=--max-old-space-size=4096 cloc . --exclude-dir=node_modules --exclude-lang=YAML",
|
"cloc": "NODE_OPTIONS=--max-old-space-size=4096 cloc . --exclude-dir=node_modules --exclude-lang=YAML",
|
||||||
"clean:cache": "rm -rf node_modules && rm -rf .eslintcache && pnpm install",
|
"clean:cache": "rm -rf node_modules && rm -rf .eslintcache && pnpm install",
|
||||||
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock,build}/**/*.{vue,js,ts,tsx}\" --fix",
|
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock,build}/**/*.{vue,js,ts,tsx}\" --fix",
|
||||||
@@ -30,55 +31,54 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@amap/amap-jsapi-loader": "^1.0.1",
|
"@amap/amap-jsapi-loader": "^1.0.1",
|
||||||
"@ctrl/tinycolor": "^3.4.1",
|
"@ctrl/tinycolor": "^3.4.1",
|
||||||
"@logicflow/core": "^1.1.24",
|
"@howdyjs/mouse-menu": "^2.0.5",
|
||||||
"@logicflow/extension": "^1.1.24",
|
"@logicflow/core": "^1.1.30",
|
||||||
"@pureadmin/components": "^1.1.0",
|
"@logicflow/extension": "^1.1.30",
|
||||||
"@pureadmin/descriptions": "^1.1.0",
|
"@pureadmin/descriptions": "^1.1.0",
|
||||||
"@pureadmin/table": "^1.2.0",
|
"@pureadmin/table": "^1.8.1",
|
||||||
"@pureadmin/utils": "^1.1.5",
|
"@pureadmin/utils": "^1.7.1",
|
||||||
"@vueuse/core": "^9.4.0",
|
"@vueuse/core": "^9.6.0",
|
||||||
"@vueuse/motion": "^2.0.0-beta.12",
|
"@vueuse/motion": "2.0.0-beta.12",
|
||||||
"@vueuse/shared": "^9.4.0",
|
|
||||||
"@wangeditor/editor": "^5.1.21",
|
"@wangeditor/editor": "^5.1.21",
|
||||||
"@wangeditor/editor-for-vue": "^5.1.12",
|
"@wangeditor/editor-for-vue": "^5.1.12",
|
||||||
"animate.css": "^4.1.1",
|
"animate.css": "^4.1.1",
|
||||||
"axios": "^1.1.3",
|
"axios": "^1.2.0",
|
||||||
"china-area-data": "^5.0.1",
|
"china-area-data": "^5.0.1",
|
||||||
"cropperjs": "^1.5.12",
|
"cropperjs": "^1.5.12",
|
||||||
"dayjs": "^1.11.5",
|
"dayjs": "^1.11.6",
|
||||||
"driver.js": "^0.9.8",
|
|
||||||
"echarts": "^5.4.0",
|
"echarts": "^5.4.0",
|
||||||
"el-table-infinite-scroll": "^3.0.1",
|
"el-table-infinite-scroll": "^3.0.1",
|
||||||
"element-plus": "^2.2.18",
|
"element-plus": "^2.2.26",
|
||||||
"element-resize-detector": "^1.2.3",
|
"element-resize-detector": "^1.2.4",
|
||||||
|
"intro.js": "^6.0.0",
|
||||||
"js-cookie": "^3.0.1",
|
"js-cookie": "^3.0.1",
|
||||||
"jsbarcode": "^3.11.5",
|
"jsbarcode": "^3.11.5",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "^4.17.21",
|
||||||
"lodash-unified": "^1.0.2",
|
"lodash-unified": "^1.0.2",
|
||||||
|
"md-editor-v3": "^2.4.2",
|
||||||
"mitt": "^3.0.0",
|
"mitt": "^3.0.0",
|
||||||
"mockjs": "^1.1.0",
|
"mockjs": "^1.1.0",
|
||||||
"nprogress": "^0.2.0",
|
"nprogress": "^0.2.0",
|
||||||
"path": "^0.12.7",
|
"path": "^0.12.7",
|
||||||
"pinia": "^2.0.23",
|
"pinia": "^2.0.26",
|
||||||
"qrcode": "^1.5.1",
|
"qrcode": "^1.5.1",
|
||||||
"qs": "^6.11.0",
|
"qs": "^6.11.0",
|
||||||
"resize-observer-polyfill": "^1.5.1",
|
|
||||||
"responsive-storage": "^2.1.0",
|
"responsive-storage": "^2.1.0",
|
||||||
"sortablejs": "^1.15.0",
|
"sortablejs": "^1.15.0",
|
||||||
"swiper": "^8.4.4",
|
"swiper": "^8.4.4",
|
||||||
"typeit": "^8.7.0",
|
"typeit": "^8.7.0",
|
||||||
"v-contextmenu": "3.0.0",
|
"v-contextmenu": "3.0.0",
|
||||||
"vue": "^3.2.40",
|
"vue": "^3.2.45",
|
||||||
"vue-form-create2": "^1.2.8",
|
|
||||||
"vue-i18n": "^9.2.2",
|
"vue-i18n": "^9.2.2",
|
||||||
"vue-json-pretty": "^2.2.2",
|
"vue-json-pretty": "^2.2.2",
|
||||||
"vue-pdf-embed": "^1.1.4",
|
"vue-pdf-embed": "^1.1.4",
|
||||||
"vue-router": "^4.1.6",
|
"vue-router": "^4.1.6",
|
||||||
"vue-types": "^4.2.1",
|
"vue-types": "^4.2.1",
|
||||||
"vue-virtual-scroller": "^2.0.0-alpha.1",
|
"vue-virtual-scroller": "^2.0.0-alpha.1",
|
||||||
|
"vue3-danmaku": "^1.0.0",
|
||||||
"vuedraggable": "^4.1.0",
|
"vuedraggable": "^4.1.0",
|
||||||
"vxe-table": "^4.3.5",
|
"vxe-table": "^4.3.6",
|
||||||
"xe-utils": "^3.5.7",
|
"xe-utils": "^3.5.7",
|
||||||
"xgplayer": "^2.32.1",
|
"xgplayer": "^2.32.1",
|
||||||
"xlsx": "^0.18.5"
|
"xlsx": "^0.18.5"
|
||||||
@@ -86,74 +86,68 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@commitlint/cli": "13.1.0",
|
"@commitlint/cli": "13.1.0",
|
||||||
"@commitlint/config-conventional": "13.1.0",
|
"@commitlint/config-conventional": "13.1.0",
|
||||||
"@faker-js/faker": "^7.5.0",
|
|
||||||
"@iconify-icons/carbon": "^1.2.8",
|
|
||||||
"@iconify-icons/ep": "^1.2.7",
|
"@iconify-icons/ep": "^1.2.7",
|
||||||
"@iconify-icons/fa": "^1.2.3",
|
|
||||||
"@iconify-icons/fa-solid": "^1.2.3",
|
|
||||||
"@iconify-icons/fluent": "^1.2.16",
|
|
||||||
"@iconify-icons/mdi": "^1.2.8",
|
"@iconify-icons/mdi": "^1.2.8",
|
||||||
"@iconify-icons/ri": "^1.2.3",
|
"@iconify-icons/ri": "^1.2.3",
|
||||||
"@iconify-icons/uil": "^1.2.2",
|
"@iconify/vue": "^4.0.0",
|
||||||
"@iconify/vue": "^3.2.1",
|
|
||||||
"@intlify/vite-plugin-vue-i18n": "^6.0.3",
|
"@intlify/vite-plugin-vue-i18n": "^6.0.3",
|
||||||
"@pureadmin/theme": "^2.4.0",
|
"@pureadmin/theme": "^2.4.0",
|
||||||
"@types/element-resize-detector": "1.1.3",
|
"@types/element-resize-detector": "1.1.3",
|
||||||
|
"@types/intro.js": "^5.1.0",
|
||||||
"@types/js-cookie": "^3.0.1",
|
"@types/js-cookie": "^3.0.1",
|
||||||
"@types/lodash": "^4.14.180",
|
"@types/lodash": "^4.14.180",
|
||||||
"@types/lodash-es": "^4.17.6",
|
"@types/lodash-es": "^4.17.6",
|
||||||
"@types/mockjs": "1.0.3",
|
"@types/mockjs": "^1.0.7",
|
||||||
"@types/node": "14.14.14",
|
"@types/node": "^18.11.9",
|
||||||
"@types/nprogress": "0.2.0",
|
"@types/nprogress": "0.2.0",
|
||||||
"@types/qrcode": "^1.4.2",
|
"@types/qrcode": "^1.4.2",
|
||||||
"@types/qs": "^6.9.7",
|
"@types/qs": "^6.9.7",
|
||||||
"@types/sortablejs": "^1.13.0",
|
"@types/sortablejs": "^1.15.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.10.2",
|
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
||||||
"@typescript-eslint/parser": "^5.10.2",
|
"@typescript-eslint/parser": "^5.43.0",
|
||||||
"@vitejs/plugin-legacy": "^2.2.0",
|
"@vitejs/plugin-vue": "^3.2.0",
|
||||||
"@vitejs/plugin-vue": "^3.1.2",
|
"@vitejs/plugin-vue-jsx": "^2.1.1",
|
||||||
"@vitejs/plugin-vue-jsx": "^2.0.1",
|
|
||||||
"@vue/eslint-config-prettier": "^7.0.0",
|
"@vue/eslint-config-prettier": "^7.0.0",
|
||||||
"@vue/eslint-config-typescript": "^10.0.0",
|
"@vue/eslint-config-typescript": "^11.0.2",
|
||||||
"@vue/runtime-core": "^3.2.40",
|
"autoprefixer": "^10.4.13",
|
||||||
"autoprefixer": "^10.4.12",
|
|
||||||
"cloc": "^2.10.0",
|
"cloc": "^2.10.0",
|
||||||
"cssnano": "^5.1.13",
|
"cssnano": "^5.1.14",
|
||||||
"eslint": "^8.8.0",
|
"eslint": "^8.8.0",
|
||||||
"eslint-plugin-prettier": "^4.0.0",
|
"eslint-plugin-prettier": "^4.0.0",
|
||||||
"eslint-plugin-vue": "^8.4.1",
|
"eslint-plugin-vue": "^9.7.0",
|
||||||
"font-awesome": "^4.7.0",
|
"font-awesome": "^4.7.0",
|
||||||
"husky": "^7.0.4",
|
"husky": "^7.0.4",
|
||||||
"lint-staged": "11.1.2",
|
"lint-staged": "11.1.2",
|
||||||
"picocolors": "^1.0.0",
|
"picocolors": "^1.0.0",
|
||||||
"postcss": "^8.4.17",
|
"postcss": "^8.4.18",
|
||||||
"postcss-html": "^1.5.0",
|
"postcss-html": "^1.5.0",
|
||||||
"postcss-import": "^15.0.0",
|
"postcss-import": "^15.0.0",
|
||||||
"postcss-scss": "^4.0.5",
|
"postcss-scss": "^4.0.5",
|
||||||
"prettier": "^2.5.1",
|
"prettier": "^2.5.1",
|
||||||
"pretty-quick": "3.1.1",
|
"pretty-quick": "3.1.1",
|
||||||
"rimraf": "3.0.2",
|
"rimraf": "3.0.2",
|
||||||
"rollup-plugin-visualizer": "^5.8.2",
|
"rollup-plugin-visualizer": "^5.8.3",
|
||||||
"sass": "^1.53.0",
|
"sass": "^1.56.1",
|
||||||
"sass-loader": "^13.0.2",
|
"sass-loader": "^13.2.0",
|
||||||
"stylelint": "^14.3.0",
|
"stylelint": "^14.3.0",
|
||||||
"stylelint-config-html": "^1.0.0",
|
"stylelint-config-html": "^1.0.0",
|
||||||
"stylelint-config-prettier": "^9.0.3",
|
"stylelint-config-prettier": "^9.0.3",
|
||||||
"stylelint-config-recommended": "^6.0.0",
|
"stylelint-config-recommended": "^9.0.0",
|
||||||
"stylelint-config-standard": "^24.0.0",
|
"stylelint-config-standard": "^29.0.0",
|
||||||
"stylelint-order": "^5.0.0",
|
"stylelint-order": "^5.0.0",
|
||||||
"tailwindcss": "^3.2.1",
|
"svgo": "^3.0.2",
|
||||||
"terser": "^5.15.0",
|
"tailwindcss": "^3.2.4",
|
||||||
"typescript": "^4.7.4",
|
"terser": "^5.15.1",
|
||||||
"unplugin-vue-define-options": "0.7.3",
|
"typescript": "^4.9.3",
|
||||||
"vite": "^3.1.8",
|
"unplugin-vue-define-options": "^1.0.0",
|
||||||
|
"vite": "3.1.8",
|
||||||
"vite-plugin-cdn-import": "^0.3.5",
|
"vite-plugin-cdn-import": "^0.3.5",
|
||||||
"vite-plugin-compression": "^0.5.1",
|
"vite-plugin-compression": "^0.5.1",
|
||||||
"vite-plugin-mock": "^2.9.6",
|
"vite-plugin-mock": "^2.9.6",
|
||||||
"vite-plugin-remove-console": "^1.1.0",
|
"vite-plugin-remove-console": "^1.3.0",
|
||||||
"vite-svg-loader": "^3.6.0",
|
"vite-svg-loader": "^3.6.0",
|
||||||
"vue-eslint-parser": "^8.2.0",
|
"vue-eslint-parser": "^9.1.0",
|
||||||
"vue-tsc": "^0.40.13"
|
"vue-tsc": "^1.0.9"
|
||||||
},
|
},
|
||||||
"pnpm": {
|
"pnpm": {
|
||||||
"peerDependencyRules": {
|
"peerDependencyRules": {
|
||||||
|
|||||||
2572
pnpm-lock.yaml
generated
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"Version": "3.6.2",
|
"Version": "3.9.1",
|
||||||
"Title": "PureAdmin",
|
"Title": "PureAdmin",
|
||||||
"FixedHeader": true,
|
"FixedHeader": true,
|
||||||
"HiddenSideBar": false,
|
"HiddenSideBar": false,
|
||||||
@@ -16,6 +16,9 @@
|
|||||||
"EpThemeColor": "#409EFF",
|
"EpThemeColor": "#409EFF",
|
||||||
"ShowLogo": true,
|
"ShowLogo": true,
|
||||||
"ShowModel": "smart",
|
"ShowModel": "smart",
|
||||||
|
"MenuArrowIconNoTransition": true,
|
||||||
|
"CachingAsyncRoutes": true,
|
||||||
|
"TooltipEffect": "light",
|
||||||
"MapConfigure": {
|
"MapConfigure": {
|
||||||
"amapKey": "97b3248d1553172e81f168cf94ea667e",
|
"amapKey": "97b3248d1553172e81f168cf94ea667e",
|
||||||
"options": {
|
"options": {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { http } from "../utils/http";
|
import { http } from "@/utils/http";
|
||||||
|
|
||||||
type Result = {
|
type Result = {
|
||||||
success: boolean;
|
success: boolean;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { http } from "../utils/http";
|
import { http } from "@/utils/http";
|
||||||
|
|
||||||
type Result = {
|
type Result = {
|
||||||
success: boolean;
|
success: boolean;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { http } from "../utils/http";
|
import { http } from "@/utils/http";
|
||||||
|
|
||||||
type Result = {
|
type Result = {
|
||||||
success: boolean;
|
success: boolean;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { http } from "../utils/http";
|
import { http } from "@/utils/http";
|
||||||
|
|
||||||
type Result = {
|
type Result = {
|
||||||
success: boolean;
|
success: boolean;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { http } from "../utils/http";
|
import { http } from "@/utils/http";
|
||||||
|
|
||||||
export type UserResult = {
|
export type UserResult = {
|
||||||
success: boolean;
|
success: boolean;
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 23 KiB |
@@ -1 +1 @@
|
|||||||
<svg t="1636193306629" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1847" width="32" height="32"><path d="M410.558481 0.10861C410.558481 211.083075 109.682285 361.860579 109.682285 633.656511c0 174.943176 134.703259 316.787527 300.876196 316.787527s300.876197-141.817198 300.876197-316.787527C711.407525 361.751969 410.558481 210.974465 410.558481 0.10861z" fill="#386BF3" p-id="1848"></path><path d="M613.468671 73.664572c0 211.055922-300.876197 361.914883-300.876196 633.547901 0 174.943176 134.703259 316.787527 300.876196 316.787527s300.876197-141.817198 300.876197-316.787527c-0.054305-271.633018-300.876197-422.491979-300.876197-633.547901z" fill="#C3D2FB" p-id="1849"></path><path d="M312.592475 707.212473c0-183.713414 137.635722-312.171612 226.72288-441.390078 81.701694 106.111739 172.119322 218.740063 172.119323 367.725506a309.755045 309.755045 0 0 1-291.074166 316.516003 323.114046 323.114046 0 0 1-107.768037-242.851431z" fill="#303F5B" p-id="1850"></path></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" class="icon" viewBox="0 0 1024 1024"><path fill="#386BF3" d="M410.558.109c0 210.974-300.876 361.752-300.876 633.548 0 174.943 134.704 316.787 300.876 316.787s300.877-141.817 300.877-316.787C711.408 361.752 410.558 210.974 410.558.109z"/><path fill="#C3D2FB" d="M613.469 73.665c0 211.055-300.877 361.914-300.877 633.547C312.592 882.156 447.296 1024 613.47 1024s300.876-141.817 300.876-316.788C914.29 435.58 613.469 284.72 613.469 73.665z"/><path fill="#303F5B" d="M312.592 707.212c0-183.713 137.636-312.171 226.723-441.39 81.702 106.112 172.12 218.74 172.12 367.726A309.755 309.755 0 0 1 420.36 950.064a323.114 323.114 0 0 1-107.769-242.852z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 712 B |
1
src/assets/login/illustration.svg
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 17 KiB |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" width="500" height="380" viewBox="0 0 896 529.1129" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M832.06729,623.22778s-26.37759,9.89441-38.806,32.94348S787.06,706.69574,787.06,706.69574s26.37759-9.89447,38.806-32.94348S832.06729,623.22778,832.06729,623.22778Z" transform="translate(-158 -185.8871)" fill="#3f3d56"/><path d="M867.5,657.59637s-8.64182,26.814-31.0802,40.31373-50.17651,8.57293-50.17651,8.57293,8.64175-26.81408,31.08017-40.31378S867.5,657.59637,867.5,657.59637Z" transform="translate(-158 -185.8871)" fill="#5392f0"/><rect y="527.1129" width="896" height="2" fill="#2f2e41"/><path d="M519.87238,620.97461a95.44448,95.44448,0,0,1-35.748-14.44629L485.306,604.915a93.36283,93.36283,0,0,0,34.999,14.10547c18.93164,3.40137,47.26075,1.73144,74.707-25.52735,53.41358-53.04785,104.39307-58.39062,104.90186-58.43847l.18652,1.99219c-.50146.04687-50.76806,5.31738-103.67822,57.86621-21.61328,21.46386-43.792,27.40234-61.71777,27.40234A83.49962,83.49962,0,0,1,519.87238,620.97461Z" transform="translate(-158 -185.8871)" fill="#2f2e41"/><circle cx="515.15271" cy="381.1129" r="12" fill="#2f2e41"/><circle cx="430.15271" cy="437.1129" r="12" fill="#2f2e41"/><path d="M841.5,714s-17.46191-5.41315-52.26129-10.84192L790,692.5c6-60-34-150-34-150a401.561,401.561,0,0,1,21.4693,139.0246C772.13214,672.2124,761.82056,662.16638,742,656c0,0,25.77765,22.106,33.15918,45.10175a997.84042,997.84042,0,0,0-102.02258-8.21589L682,672.5l-17,17s-7-51-22-53l11,50s-13-10-16-9l7.39746,14.79486c-49.819-.51654-109.08453,1.7356-177.76581,8.95227L476,682l-17,17s-7-51-22-53l11,50s-13-10-16-9l8.64288,17.28583Q406.9763,708.2897,370.5,714Z" transform="translate(-158 -185.8871)" fill="#3f3d56"/><path d="M565.64813,230.37817c-10.89964,11.74783,17.59745,40.25959,17.59745,40.25959s-57.70662,9.73051-53.12783,9.14083,2.20622-49.13151,2.20622-49.13151S576.54777,218.63035,565.64813,230.37817Z" transform="translate(-158 -185.8871)" fill="#a0616a"/><path d="M605.81236,356.10945l-50.139,25.6141-27.22969,15.6059s-32.09862,40.43116-38.08709,64.39234,25.92963,68.247,29.54371,72.82286a54.36088,54.36088,0,0,1,4.98908,7.42355c1.24727,1.85589,12.02944-.541,23.80342-3.06554S547.13,518.93875,547.13,518.93875s-15.02732-38.39505-16.14686-39.25912c-1.04554-.807-4.60093-7.44631-2.04309-10.35234a25.94993,25.94993,0,0,0,5.44489-8.89825,30.09064,30.09064,0,0,1,4.18709-7.94151s45.361-36.83645,59.52776-49.37835,51.82952-4.65839,51.82952-4.65839-17.78167,68.20027-22.22979,72.80616-4.929,8.70085-2.91535,16.50759,28.28157.39078,28.28157.39078L662.766,461.6996s15.74879-34.2925,24.29946-69.67451c4.27533-17.691-3.88828-28.23462-13.12073-34.35549a41.39094,41.39094,0,0,0-30.02983-5.97766l-46.34848,8.1308,32.14706-13.84923Z" transform="translate(-158 -185.8871)" fill="#2f2e41"/><path d="M420.87777,290.19133,361.02366,271.685s-24.179-31.16689-12.78824-36.6669,25.65172,26.94419,25.65172,26.94419l41.686,2.69751Z" transform="translate(-158 -185.8871)" fill="#a0616a"/><path d="M672.49431,257.78673l53.2121-33.06768s15.49333-36.27612,3.0807-38.71059-17.98787,32.56435-17.98787,32.56435l-39.64232,13.17143Z" transform="translate(-158 -185.8871)" fill="#a0616a"/><path d="M682.45318,220.40023l1.01427,39.19147-89.68779,16.025c13.19231,28.22441,9.84118,60.34675,43.04725,74.4259L524.9027,404.78717c4.9871-43.03806-15.81748-75.456-35.263-115.75876-23.68547-8.58589-51.19594-2.29078-80.33649,10.34619l-5.237-40.66416,123.87841-8.896,20.34848,7.77932,21.81842-9.17677C602.17891,238.88953,648.22076,220.77584,682.45318,220.40023Z" transform="translate(-158 -185.8871)" fill="#5392f0"/><path d="M626.64006,486.51727c-2.72,2.36681-5.25213,21.84984-5.34982,28.92023s9.21178,8.89624,14.29855,9.2494,4.47816,3.45631,7.83678,6.04854,14.39625,2.179,28.89019-2.71238-9.75274-20.92568-11.86409-21.662-11-22.78156-11-22.78156S629.36,484.15046,626.64006,486.51727Z" transform="translate(-158 -185.8871)" fill="#2f2e41"/><path d="M547.368,531.00717c3.23089,1.60043,10.61681,19.80614,12.50274,26.62107s-6.65716,10.93994-11.48848,12.5704-3.45631,4.47816-6.04855,7.83678-13.3744,5.75546-28.63472,4.696,4.13258-22.71391,5.98847-23.96118,4.86893-24.82526,4.86893-24.82526S544.13715,529.40674,547.368,531.00717Z" transform="translate(-158 -185.8871)" fill="#2f2e41"/><circle cx="389.47074" cy="35.42904" r="23.99585" fill="#a0616a"/><path d="M519.73448,218.90923a22.82668,22.82668,0,0,1-.83378-18.59281c2.35891-5.8153,7.59174-11.65569,18.87309-13.4,24.61387-3.80572,37.71267,13.43543,37.02452,19.07449s-3.99294,19.27051-3.99294,19.27051,1.47587-12.90619-4.85883-13.362-30.90178-2.37835-37.12217,4.145a14.23268,14.23268,0,0,0-3.71042,13.82977Z" transform="translate(-158 -185.8871)" fill="#2f2e41"/></svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 13 KiB |
@@ -1 +1 @@
|
|||||||
<svg width="32" height="32" viewBox="0 0 48 48"><path fill="#2F88FF" fill-rule="evenodd" stroke="#000" stroke-linejoin="round" stroke-width="4" d="M44 40.8361C39.1069 34.8632 34.7617 31.4739 30.9644 30.6682C27.1671 29.8625 23.5517 29.7408 20.1182 30.303V41L4 23.5453L20.1182 7V17.167C26.4667 17.2172 31.8638 19.4948 36.3095 24C40.7553 28.5052 43.3187 34.1172 44 40.8361Z" clip-rule="evenodd"/></svg>
|
<svg width="32" height="32" viewBox="0 0 48 48"><path fill="#2F88FF" fill-rule="evenodd" stroke="#000" stroke-linejoin="round" stroke-width="4" d="M44 40.836c-4.893-5.973-9.238-9.362-13.036-10.168-3.797-.805-7.412-.927-10.846-.365V41L4 23.545 20.118 7v10.167c6.349.05 11.746 2.328 16.192 6.833 4.445 4.505 7.009 10.117 7.69 16.836Z" clip-rule="evenodd"/></svg>
|
||||||
|
Before Width: | Height: | Size: 399 B After Width: | Height: | Size: 360 B |
@@ -1 +1 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="none" d="M0 0h24v24H0z"/><path d="M2.88 18.054a35.897 35.897 0 0 1 8.531-16.32.8.8 0 0 1 1.178 0c.166.18.304.332.413.455a35.897 35.897 0 0 1 8.118 15.865c-2.141.451-4.34.747-6.584.874l-2.089 4.178a.5.5 0 0 1-.894 0l-2.089-4.178a44.019 44.019 0 0 1-6.584-.874zm6.698-1.123l1.157.066L12 19.527l1.265-2.53 1.157-.066a42.137 42.137 0 0 0 4.227-.454A33.913 33.913 0 0 0 12 4.09a33.913 33.913 0 0 0-6.649 12.387c1.395.222 2.805.374 4.227.454zM12 15a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0-2a1 1 0 1 0 0-2 1 1 0 0 0 0 2z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path fill="none" d="M0 0h24v24H0z"/><path d="M2.88 18.054a35.897 35.897 0 0 1 8.531-16.32.8.8 0 0 1 1.178 0c.166.18.304.332.413.455a35.897 35.897 0 0 1 8.118 15.865c-2.141.451-4.34.747-6.584.874l-2.089 4.178a.5.5 0 0 1-.894 0l-2.089-4.178a44.019 44.019 0 0 1-6.584-.874zm6.698-1.123 1.157.066L12 19.527l1.265-2.53 1.157-.066a42.137 42.137 0 0 0 4.227-.454A33.913 33.913 0 0 0 12 4.09a33.913 33.913 0 0 0-6.649 12.387c1.395.222 2.805.374 4.227.454zM12 15a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0-2a1 1 0 1 0 0-2 1 1 0 0 0 0 2z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 608 B After Width: | Height: | Size: 588 B |
@@ -1 +1 @@
|
|||||||
<svg fill="none" viewBox="0 0 16 16" width="1em" height="1em" class="t-icon t-icon-calendar" data-v-7be81122=""><path fill="currentColor" d="M10 3H6V1.5H5V3H3a1 1 0 00-1 1v9a1 1 0 001 1h10a1 1 0 001-1V4a1 1 0 00-1-1h-2V1.5h-1V3zM5 5h1V4h4v1h1V4h2v2H3V4h2v1zM3 7h10v6H3V7z" fillOpacity="0.9"></path></svg>
|
<svg width="1em" height="1em" fill="none" class="t-icon t-icon-calendar" viewBox="0 0 16 16"><path fill="currentColor" d="M10 3H6V1.5H5V3H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-2V1.5h-1V3zM5 5h1V4h4v1h1V4h2v2H3V4h2v1zM3 7h10v6H3V7z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 304 B After Width: | Height: | Size: 267 B |
@@ -1 +1 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16"><path fill="none" d="M0 0h24v24H0z"/><path d="M11.38 2.019a7.5 7.5 0 1 0 10.6 10.6C21.662 17.854 17.316 22 12.001 22 6.477 22 2 17.523 2 12c0-5.315 4.146-9.661 9.38-9.981z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M11.38 2.019a7.5 7.5 0 1 0 10.6 10.6C21.662 17.854 17.316 22 12.001 22 6.477 22 2 17.523 2 12c0-5.315 4.146-9.661 9.38-9.981z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 263 B After Width: | Height: | Size: 263 B |
@@ -1 +1 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16"><path fill="none" d="M0 0h24v24H0z"/><path d="M12 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12zM11 1h2v3h-2V1zm0 19h2v3h-2v-3zM3.515 4.929l1.414-1.414L7.05 5.636 5.636 7.05 3.515 4.93zM16.95 18.364l1.414-1.414 2.121 2.121-1.414 1.414-2.121-2.121zm2.121-14.85l1.414 1.415-2.121 2.121-1.414-1.414 2.121-2.121zM5.636 16.95l1.414 1.414-2.121 2.121-1.414-1.414 2.121-2.121zM23 11v2h-3v-2h3zM4 11v2H1v-2h3z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M12 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12zM11 1h2v3h-2V1zm0 19h2v3h-2v-3zM3.515 4.929l1.414-1.414L7.05 5.636 5.636 7.05 3.515 4.93zM16.95 18.364l1.414-1.414 2.121 2.121-1.414 1.414-2.121-2.121zm2.121-14.85 1.414 1.415-2.121 2.121-1.414-1.414 2.121-2.121zM5.636 16.95l1.414 1.414-2.121 2.121-1.414-1.414 2.121-2.121zM23 11v2h-3v-2h3zM4 11v2H1v-2h3z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 480 B After Width: | Height: | Size: 480 B |
@@ -1 +1 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--ant-design" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 1024 1024"><path fill="currentColor" d="M864 170h-60c-4.4 0-8 3.6-8 8v518H310v-73c0-6.7-7.8-10.5-13-6.3l-141.9 112a8 8 0 0 0 0 12.6l141.9 112c5.3 4.2 13 .4 13-6.3v-75h498c35.3 0 64-28.7 64-64V178c0-4.4-3.6-8-8-8z"></path></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" aria-hidden="true" class="iconify iconify--ant-design" viewBox="0 0 1024 1024"><path fill="currentColor" d="M864 170h-60c-4.4 0-8 3.6-8 8v518H310v-73c0-6.7-7.8-10.5-13-6.3l-141.9 112a8 8 0 0 0 0 12.6l141.9 112c5.3 4.2 13 .4 13-6.3v-75h498c35.3 0 64-28.7 64-64V178c0-4.4-3.6-8-8-8z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 448 B After Width: | Height: | Size: 352 B |
@@ -1 +1 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" class="re-screen" color="#00000073" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"><g fill="currentColor"><path d="M3.5 4H1V3h2V1h1v2.5l-.5.5zM13 3V1h-1v2.5l.5.5H15V3h-2zm-1 9.5V15h1v-2h2v-1h-2.5l-.5.5zM1 12v1h2v2h1v-2.5l-.5-.5H1zm11-1.5l-.5.5h-7l-.5-.5v-5l.5-.5h7l.5.5v5zM10 7H6v2h4V7z"></path></g></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" aria-hidden="true" class="re-screen" color="#00000073" viewBox="0 0 16 16"><path fill="currentColor" d="M3.5 4H1V3h2V1h1v2.5l-.5.5zM13 3V1h-1v2.5l.5.5H15V3h-2zm-1 9.5V15h1v-2h2v-1h-2.5l-.5.5zM1 12v1h2v2h1v-2.5l-.5-.5H1zm11-1.5-.5.5h-7l-.5-.5v-5l.5-.5h7l.5.5v5zM10 7H6v2h4V7z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 452 B After Width: | Height: | Size: 348 B |
@@ -1 +1 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" class="re-screen" color="#00000073" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"><g fill="currentColor"><path d="M3 12h10V4H3v8zm2-6h6v4H5V6zM2 6H1V2.5l.5-.5H5v1H2v3zm13-3.5V6h-1V3h-3V2h3.5l.5.5zM14 10h1v3.5l-.5.5H11v-1h3v-3zM2 13h3v1H1.5l-.5-.5V10h1v3z"></path></g></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" aria-hidden="true" class="re-screen" color="#00000073" viewBox="0 0 16 16"><path fill="currentColor" d="M3 12h10V4H3v8zm2-6h6v4H5V6zM2 6H1V2.5l.5-.5H5v1H2v3zm13-3.5V6h-1V3h-3V2h3.5l.5.5zM14 10h1v3.5l-.5.5H11v-1h3v-3zM2 13h3v1H1.5l-.5-.5V10h1v3z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 421 B After Width: | Height: | Size: 318 B |
@@ -1 +1 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="globalization" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 512 512"><path d="M478.33 433.6l-90-218a22 22 0 0 0-40.67 0l-90 218a22 22 0 1 0 40.67 16.79L316.66 406h102.67l18.33 44.39A22 22 0 0 0 458 464a22 22 0 0 0 20.32-30.4zM334.83 362L368 281.65L401.17 362z" fill="currentColor"></path><path d="M267.84 342.92a22 22 0 0 0-4.89-30.7c-.2-.15-15-11.13-36.49-34.73c39.65-53.68 62.11-114.75 71.27-143.49H330a22 22 0 0 0 0-44H214V70a22 22 0 0 0-44 0v20H54a22 22 0 0 0 0 44h197.25c-9.52 26.95-27.05 69.5-53.79 108.36c-31.41-41.68-43.08-68.65-43.17-68.87a22 22 0 0 0-40.58 17c.58 1.38 14.55 34.23 52.86 83.93c.92 1.19 1.83 2.35 2.74 3.51c-39.24 44.35-77.74 71.86-93.85 80.74a22 22 0 1 0 21.07 38.63c2.16-1.18 48.6-26.89 101.63-85.59c22.52 24.08 38 35.44 38.93 36.1a22 22 0 0 0 30.75-4.9z" fill="currentColor"></path></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" aria-hidden="true" class="globalization" viewBox="0 0 512 512"><path fill="currentColor" d="m478.33 433.6-90-218a22 22 0 0 0-40.67 0l-90 218a22 22 0 1 0 40.67 16.79L316.66 406h102.67l18.33 44.39A22 22 0 0 0 458 464a22 22 0 0 0 20.32-30.4zM334.83 362 368 281.65 401.17 362zm-66.99-19.08a22 22 0 0 0-4.89-30.7c-.2-.15-15-11.13-36.49-34.73 39.65-53.68 62.11-114.75 71.27-143.49H330a22 22 0 0 0 0-44H214V70a22 22 0 0 0-44 0v20H54a22 22 0 0 0 0 44h197.25c-9.52 26.95-27.05 69.5-53.79 108.36-31.41-41.68-43.08-68.65-43.17-68.87a22 22 0 0 0-40.58 17c.58 1.38 14.55 34.23 52.86 83.93.92 1.19 1.83 2.35 2.74 3.51-39.24 44.35-77.74 71.86-93.85 80.74a22 22 0 1 0 21.07 38.63c2.16-1.18 48.6-26.89 101.63-85.59 22.52 24.08 38 35.44 38.93 36.1a22 22 0 0 0 30.75-4.9z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 965 B After Width: | Height: | Size: 826 B |
1
src/assets/svg/hot.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 1024 1024"><path fill="#FF5D50" d="M428.698 107.315c-6.503 72.192-36.352 207.258-160.256 337.408 3.686-48.025-7.117-83.763-19.047-107.673-6.605-13.159-26.06-10.599-28.877 3.84-5.734 29.44-20.582 75.059-57.6 137.779-71.628 121.395-62.566 459.878 340.736 459.878S934.093 585.728 876.8 442.522c-37.376-93.44-93.952-152.525-128.82-182.324-11.417-9.779-29.132-1.945-29.593 13.056-.921 30.464-7.321 73.37-33.075 102.144-.666-52.787-38.144-208.384-202.445-296.857-23.296-12.544-51.763 2.457-54.17 28.774z"/><path fill="#FFDF99" d="M702.26 678.4c-4.2-45.056-60.673-166.554-212.634-246.426-10.599-5.58-23.092 3.124-21.504 15.002 6.246 46.848 12.953 140.493-24.064 184.73 4.044-40.397-18.125-73.83-36.66-94.31-8.396-9.217-23.552-4.66-25.497 7.68-3.533 22.322-12.851 56.268-36.557 97.945-42.086 74.035-86.989 188.672 124.57 294.656 10.956.563 22.17.87 33.74.87a617.97 617.97 0 0 0 32.717-.87C694.631 878.182 709.837 759.706 702.26 678.4z"/></svg>
|
||||||
|
After Width: | Height: | Size: 1011 B |
1
src/assets/svg/keyboard_esc.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" aria-hidden="true" class="iconify iconify--mdi" viewBox="0 0 24 24"><path fill="currentColor" d="M1 7h6v2H3v2h4v2H3v2h4v2H1V7m10 0h4v2h-4v2h2a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2H9v-2h4v-2h-2a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2m8 0h2a2 2 0 0 1 2 2v1h-2V9h-2v6h2v-1h2v1c0 1.11-.89 2-2 2h-2a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2Z"/></svg>
|
||||||
|
After Width: | Height: | Size: 381 B |
@@ -1 +1 @@
|
|||||||
<svg fill="none" viewBox="0 0 16 16" width="1em" height="1em" class="t-icon t-icon-laptop" data-v-7be81122=""><path fill="currentColor" d="M2.5 12a1 1 0 01-1-1V4a1 1 0 011-1h11a1 1 0 011 1v7a1 1 0 01-1 1h-11zm0-1h11V4h-11v7zM15 13H1v1h14v-1z" fillOpacity="0.9"></path></svg>
|
<svg width="1em" height="1em" fill="none" class="t-icon t-icon-laptop" viewBox="0 0 16 16"><path fill="currentColor" d="M2.5 12a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h11a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-11zm0-1h11V4h-11v7zM15 13H1v1h14v-1z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 274 B After Width: | Height: | Size: 237 B |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--mdi" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M1 7h6v2H3v2h4v2H3v2h4v2H1V7m10 0h4v2h-4v2h2a2 2 0 0 1 2 2v2c0 1.11-.89 2-2 2H9v-2h4v-2h-2a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2m8 0h2a2 2 0 0 1 2 2v1h-2V9h-2v6h2v-1h2v1c0 1.11-.89 2-2 2h-2a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2Z"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 477 B |
@@ -1 +1 @@
|
|||||||
<svg fill="none" viewBox="0 0 16 16" width="1em" height="1em" class="t-icon t-icon-service" data-v-7be81122=""><path fill="currentColor" d="M2.52 6.37a5.5 5.5 0 0110.98.13v4c0 .05 0 .1-.02.15A4.5 4.5 0 019 14.7H8v-1h1a3.5 3.5 0 003.4-2.7h-1.9a.5.5 0 01-.5-.5v-4c0-.28.22-.5.5-.5h1.93a4.5 4.5 0 00-8.86 0H5.5c.28 0 .5.22.5.5v4a.5.5 0 01-.5.5H3a.5.5 0 01-.5-.5v-4c0-.04 0-.09.02-.13zM12.5 7H11v3h1.5V7zm-9 0v3H5V7H3.5z" fillOpacity="0.9"></path></svg>
|
<svg width="1em" height="1em" fill="none" class="t-icon t-icon-service" viewBox="0 0 16 16"><path fill="currentColor" d="M2.52 6.37a5.5 5.5 0 0 1 10.98.13v4c0 .05 0 .1-.02.15A4.5 4.5 0 0 1 9 14.7H8v-1h1a3.5 3.5 0 0 0 3.4-2.7h-1.9a.5.5 0 0 1-.5-.5v-4c0-.28.22-.5.5-.5h1.93a4.5 4.5 0 0 0-8.86 0H5.5c.28 0 .5.22.5.5v4a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5v-4c0-.04 0-.09.02-.13zM12.5 7H11v3h1.5V7zm-9 0v3H5V7H3.5z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 449 B After Width: | Height: | Size: 416 B |
@@ -1 +1 @@
|
|||||||
<svg fill="none" viewBox="0 0 16 16" width="1em" height="1em" class="t-icon t-icon-shop" data-v-7be81122=""><path fill="currentColor" d="M8 1a2.5 2.5 0 00-2.5 2.5V5h-2a.5.5 0 00-.5.5v9c0 .28.22.5.5.5h9a.5.5 0 00.5-.5v-9a.5.5 0 00-.5-.5h-2V3.5A2.5 2.5 0 008 1zm1.5 5v2h1V6H12v8H4V6h1.5v2h1V6h3zm0-1h-3V3.5a1.5 1.5 0 113 0V5z" fillOpacity="0.9"></path></svg>
|
<svg width="1em" height="1em" fill="none" class="t-icon t-icon-shop" viewBox="0 0 16 16"><path fill="currentColor" d="M8 1a2.5 2.5 0 0 0-2.5 2.5V5h-2a.5.5 0 0 0-.5.5v9c0 .28.22.5.5.5h9a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-2V3.5A2.5 2.5 0 0 0 8 1zm1.5 5v2h1V6H12v8H4V6h1.5v2h1V6h3zm0-1h-3V3.5a1.5 1.5 0 1 1 3 0V5z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 356 B After Width: | Height: | Size: 322 B |
@@ -1 +1 @@
|
|||||||
<svg fill="none" viewBox="0 0 16 16" width="1em" height="1em" class="t-icon t-icon-user-avatar" data-v-7be81122=""><path fill="currentColor" d="M8 10.5c1.24 0 2.42.31 3.5.88v1.12h1v-1.14a.94.94 0 00-.49-.84 8.48 8.48 0 00-8.02 0 .94.94 0 00-.49.84v1.14h1v-1.12A7.47 7.47 0 018 10.5zM10.5 6a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm-1 0a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0z"></path><path fill="currentColor" d="M2.5 1.5a1 1 0 00-1 1v11a1 1 0 001 1h11a1 1 0 001-1v-11a1 1 0 00-1-1h-11zm11 1v11h-11v-11h11z"></path></svg>
|
<svg width="1em" height="1em" fill="none" class="t-icon t-icon-user-avatar" viewBox="0 0 16 16"><path fill="currentColor" d="M8 10.5c1.24 0 2.42.31 3.5.88v1.12h1v-1.14a.94.94 0 0 0-.49-.84 8.48 8.48 0 0 0-8.02 0 .94.94 0 0 0-.49.84v1.14h1v-1.12A7.47 7.47 0 0 1 8 10.5zM10.5 6a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0zm-1 0a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0z"/><path fill="currentColor" d="M2.5 1.5a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1v-11a1 1 0 0 0-1-1h-11zm11 1v11h-11v-11h11z"/></svg>
|
||||||
|
Before Width: | Height: | Size: 508 B After Width: | Height: | Size: 494 B |
@@ -8,7 +8,6 @@ import {
|
|||||||
computed,
|
computed,
|
||||||
PropType
|
PropType
|
||||||
} from "vue";
|
} from "vue";
|
||||||
import { templateRef } from "@vueuse/core";
|
|
||||||
import { useAttrs } from "@pureadmin/utils";
|
import { useAttrs } from "@pureadmin/utils";
|
||||||
|
|
||||||
import Cropper from "cropperjs";
|
import Cropper from "cropperjs";
|
||||||
@@ -78,7 +77,7 @@ export default defineComponent({
|
|||||||
props,
|
props,
|
||||||
setup(props) {
|
setup(props) {
|
||||||
const cropper: any = ref<Nullable<Cropper>>(null);
|
const cropper: any = ref<Nullable<Cropper>>(null);
|
||||||
const imgElRef = templateRef<HTMLImageElement | null>("imgElRef", null);
|
const imgElRef = ref();
|
||||||
|
|
||||||
const isReady = ref<boolean>(false);
|
const isReady = ref<boolean>(false);
|
||||||
|
|
||||||
|
|||||||
@@ -1,22 +1,21 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, unref, nextTick, onUnmounted } from "vue";
|
import { ref, unref, nextTick, onUnmounted } from "vue";
|
||||||
import { templateRef } from "@vueuse/core";
|
|
||||||
import flippers from "./filpper";
|
import flippers from "./filpper";
|
||||||
|
|
||||||
let timer = ref(null);
|
const timer = ref(null);
|
||||||
let flipObjs = ref([]);
|
const flipObjs = ref([]);
|
||||||
|
|
||||||
const flipperHour1 = templateRef<HTMLElement | null>("flipperHour1", null);
|
const flipperHour1 = ref();
|
||||||
const flipperHour2 = templateRef<HTMLElement | null>("flipperHour2", null);
|
const flipperHour2 = ref();
|
||||||
const flipperMinute1 = templateRef<HTMLElement | null>("flipperMinute1", null);
|
const flipperMinute1 = ref();
|
||||||
const flipperMinute2 = templateRef<HTMLElement | null>("flipperMinute2", null);
|
const flipperMinute2 = ref();
|
||||||
const flipperSecond1 = templateRef<HTMLElement | null>("flipperSecond1", null);
|
const flipperSecond1 = ref();
|
||||||
const flipperSecond2 = templateRef<HTMLElement | null>("flipperSecond2", null);
|
const flipperSecond2 = ref();
|
||||||
|
|
||||||
// 初始化数字
|
// 初始化数字
|
||||||
const init = () => {
|
const init = () => {
|
||||||
let now = new Date();
|
const now = new Date();
|
||||||
let nowTimeStr = formatDate(new Date(now.getTime()), "hhiiss");
|
const nowTimeStr = formatDate(new Date(now.getTime()), "hhiiss");
|
||||||
for (let i = 0; i < flipObjs.value.length; i++) {
|
for (let i = 0; i < flipObjs.value.length; i++) {
|
||||||
flipObjs?.value[i]?.setFront(nowTimeStr[i]);
|
flipObjs?.value[i]?.setFront(nowTimeStr[i]);
|
||||||
}
|
}
|
||||||
@@ -26,9 +25,9 @@ const init = () => {
|
|||||||
const run = () => {
|
const run = () => {
|
||||||
timer.value = setInterval(() => {
|
timer.value = setInterval(() => {
|
||||||
// 获取当前时间
|
// 获取当前时间
|
||||||
let now = new Date();
|
const now = new Date();
|
||||||
let nowTimeStr = formatDate(new Date(now.getTime() - 1000), "hhiiss");
|
const nowTimeStr = formatDate(new Date(now.getTime() - 1000), "hhiiss");
|
||||||
let nextTimeStr = formatDate(now, "hhiiss");
|
const nextTimeStr = formatDate(now, "hhiiss");
|
||||||
for (let i = 0; i < flipObjs.value.length; i++) {
|
for (let i = 0; i < flipObjs.value.length; i++) {
|
||||||
if (nowTimeStr[i] === nextTimeStr[i]) {
|
if (nowTimeStr[i] === nextTimeStr[i]) {
|
||||||
continue;
|
continue;
|
||||||
@@ -52,17 +51,17 @@ const formatDate = (date: Date, dateFormat: string) => {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
// 格式化月、日、时、分、秒
|
// 格式化月、日、时、分、秒
|
||||||
let o = {
|
const o = {
|
||||||
"m+": date.getMonth() + 1,
|
"m+": date.getMonth() + 1,
|
||||||
"d+": date.getDate(),
|
"d+": date.getDate(),
|
||||||
"h+": date.getHours(),
|
"h+": date.getHours(),
|
||||||
"i+": date.getMinutes(),
|
"i+": date.getMinutes(),
|
||||||
"s+": date.getSeconds()
|
"s+": date.getSeconds()
|
||||||
};
|
};
|
||||||
for (let k in o) {
|
for (const k in o) {
|
||||||
if (new RegExp(`(${k})`).test(dateFormat)) {
|
if (new RegExp(`(${k})`).test(dateFormat)) {
|
||||||
// 取出对应的值
|
// 取出对应的值
|
||||||
let str = o[k] + "";
|
const str = o[k] + "";
|
||||||
/* 根据设置的格式,输出对应的字符
|
/* 根据设置的格式,输出对应的字符
|
||||||
* 例如: 早上8时,hh => 08,h => 8
|
* 例如: 早上8时,hh => 08,h => 8
|
||||||
* 但是,当数字>=10时,无论格式为一位还是多位,不做截取,这是与年份格式化不一致的地方
|
* 但是,当数字>=10时,无论格式为一位还是多位,不做截取,这是与年份格式化不一致的地方
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, unref, onMounted } from "vue";
|
import { ref, unref, onMounted } from "vue";
|
||||||
import { templateRef } from "@vueuse/core";
|
|
||||||
import { LogicFlow } from "@logicflow/core";
|
import { LogicFlow } from "@logicflow/core";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
@@ -16,11 +15,11 @@ const emit = defineEmits<{
|
|||||||
(e: "catData"): void;
|
(e: "catData"): void;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
const controlButton3 = templateRef<HTMLElement | any>("controlButton3", null);
|
const controlButton3 = ref();
|
||||||
const controlButton4 = templateRef<HTMLElement | any>("controlButton4", null);
|
const controlButton4 = ref();
|
||||||
|
|
||||||
let focusIndex = ref<Number>(-1);
|
const focusIndex = ref<Number>(-1);
|
||||||
let titleLists = ref([
|
const titleLists = ref([
|
||||||
{
|
{
|
||||||
icon: "icon-zoom-out-hs",
|
icon: "icon-zoom-out-hs",
|
||||||
text: "缩小",
|
text: "缩小",
|
||||||
@@ -68,7 +67,7 @@ let titleLists = ref([
|
|||||||
const onControl = (item, key) => {
|
const onControl = (item, key) => {
|
||||||
["zoom", "zoom", "resetZoom", "undo", "redo", "getSnapshot"].forEach(
|
["zoom", "zoom", "resetZoom", "undo", "redo", "getSnapshot"].forEach(
|
||||||
(v, i) => {
|
(v, i) => {
|
||||||
let domControl = props.lf;
|
const domControl = props.lf;
|
||||||
if (key === 1) {
|
if (key === 1) {
|
||||||
domControl.zoom(true);
|
domControl.zoom(true);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ const props = withDefaults(defineProps<Props>(), {
|
|||||||
nodeList: null
|
nodeList: null
|
||||||
});
|
});
|
||||||
|
|
||||||
let properties = ref({
|
const properties = ref({
|
||||||
a: "efrwe",
|
a: "efrwe",
|
||||||
b: "wewe"
|
b: "wewe"
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,15 +1,12 @@
|
|||||||
import iconifyIconOffline from "./src/iconifyIconOffline";
|
import iconifyIconOffline from "./src/iconifyIconOffline";
|
||||||
import iconifyIconOnline from "./src/iconifyIconOnline";
|
import iconifyIconOnline from "./src/iconifyIconOnline";
|
||||||
import iconSelect from "./src/Select.vue";
|
|
||||||
import fontIcon from "./src/iconfont";
|
import fontIcon from "./src/iconfont";
|
||||||
|
|
||||||
/** 离线图标组件 */
|
/** 本地图标组件 */
|
||||||
const IconifyIconOffline = iconifyIconOffline;
|
const IconifyIconOffline = iconifyIconOffline;
|
||||||
/** 在线图标组件 */
|
/** 在线图标组件 */
|
||||||
const IconifyIconOnline = iconifyIconOnline;
|
const IconifyIconOnline = iconifyIconOnline;
|
||||||
/** 图标选择器组件 */
|
|
||||||
const IconSelect = iconSelect;
|
|
||||||
/** iconfont组件 */
|
/** iconfont组件 */
|
||||||
const FontIcon = fontIcon;
|
const FontIcon = fontIcon;
|
||||||
|
|
||||||
export { IconifyIconOffline, IconifyIconOnline, IconSelect, FontIcon };
|
export { IconifyIconOffline, IconifyIconOnline, FontIcon };
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { cloneDeep } from "lodash-unified";
|
import { cloneDeep } from "lodash-unified";
|
||||||
import { ref, computed, CSSProperties, toRef, watch } from "vue";
|
|
||||||
import { IconJson } from "@/components/ReIcon/data";
|
import { IconJson } from "@/components/ReIcon/data";
|
||||||
|
import { ref, computed, CSSProperties, toRef, watch } from "vue";
|
||||||
type ParameterCSSProperties = (item?: string) => CSSProperties | undefined;
|
type ParameterCSSProperties = (item?: string) => CSSProperties | undefined;
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
@@ -16,21 +16,21 @@ const props = defineProps({
|
|||||||
});
|
});
|
||||||
const emit = defineEmits<{ (e: "update:modelValue", v: string) }>();
|
const emit = defineEmits<{ (e: "update:modelValue", v: string) }>();
|
||||||
|
|
||||||
let visible = ref(false);
|
const visible = ref(false);
|
||||||
let inputValue = toRef(props, "modelValue");
|
const inputValue = toRef(props, "modelValue");
|
||||||
let iconList = ref(IconJson);
|
const iconList = ref(IconJson);
|
||||||
let icon = ref("add-location");
|
const icon = ref("add-location");
|
||||||
let currentActiveType = ref("ep:");
|
const currentActiveType = ref("ep:");
|
||||||
// 深拷贝图标数据,前端做搜索
|
// 深拷贝图标数据,前端做搜索
|
||||||
let copyIconList = cloneDeep(iconList.value);
|
const copyIconList = cloneDeep(iconList.value);
|
||||||
|
|
||||||
let pageSize = ref(96);
|
const pageSize = ref(96);
|
||||||
let currentPage = ref(1);
|
const currentPage = ref(1);
|
||||||
|
|
||||||
// 搜索条件
|
// 搜索条件
|
||||||
let filterValue = ref("");
|
const filterValue = ref("");
|
||||||
|
|
||||||
let tabsList = [
|
const tabsList = [
|
||||||
{
|
{
|
||||||
label: "Element Plus",
|
label: "Element Plus",
|
||||||
name: "ep:"
|
name: "ep:"
|
||||||
@@ -45,7 +45,7 @@ let tabsList = [
|
|||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
let pageList = computed(() => {
|
const pageList = computed(() => {
|
||||||
if (currentPage.value === 1) {
|
if (currentPage.value === 1) {
|
||||||
return copyIconList[currentActiveType.value]
|
return copyIconList[currentActiveType.value]
|
||||||
.filter(v => v.includes(filterValue.value))
|
.filter(v => v.includes(filterValue.value))
|
||||||
|
|||||||
@@ -3,7 +3,8 @@ import { h, defineComponent, Component } from "vue";
|
|||||||
import { IconifyIconOnline, IconifyIconOffline, FontIcon } from "../index";
|
import { IconifyIconOnline, IconifyIconOffline, FontIcon } from "../index";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 支持fontawesome4、5+、iconfont、remixicon、element-plus的icons、自定义svg
|
* 支持 `iconfont`、自定义 `svg` 以及 `iconify` 中所有的图标
|
||||||
|
* @see 点击查看文档图标篇 {@link https://yiming_chang.gitee.io/pure-admin-doc/pages/icon/}
|
||||||
* @param icon 必传 图标
|
* @param icon 必传 图标
|
||||||
* @param attrs 可选 iconType 属性
|
* @param attrs 可选 iconType 属性
|
||||||
* @returns Component
|
* @returns Component
|
||||||
@@ -33,12 +34,23 @@ export function useRenderIcon(icon: any, attrs?: iconType): Component {
|
|||||||
} else if (typeof icon === "function" || typeof icon?.render === "function") {
|
} else if (typeof icon === "function" || typeof icon?.render === "function") {
|
||||||
// svg
|
// svg
|
||||||
return icon;
|
return icon;
|
||||||
|
} else if (typeof icon === "object") {
|
||||||
|
return defineComponent({
|
||||||
|
name: "OfflineIcon",
|
||||||
|
render() {
|
||||||
|
return h(IconifyIconOffline, {
|
||||||
|
icon: icon,
|
||||||
|
...attrs
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
|
// 通过是否存在 : 符号来判断是在线还是本地图标,存在即是在线图标,反之
|
||||||
return defineComponent({
|
return defineComponent({
|
||||||
name: "Icon",
|
name: "Icon",
|
||||||
render() {
|
render() {
|
||||||
const IconifyIcon =
|
const IconifyIcon =
|
||||||
attrs && attrs["online"] ? IconifyIconOnline : IconifyIconOffline;
|
icon && icon.includes(":") ? IconifyIconOnline : IconifyIconOffline;
|
||||||
return h(IconifyIcon, {
|
return h(IconifyIcon, {
|
||||||
icon: icon,
|
icon: icon,
|
||||||
...attrs
|
...attrs
|
||||||
|
|||||||
@@ -1,182 +1,22 @@
|
|||||||
import { h, defineComponent } from "vue";
|
import { h, defineComponent } from "vue";
|
||||||
import { Icon as IconifyIcon, addIcon } from "@iconify/vue/dist/offline";
|
import { Icon as IconifyIcon, addIcon } from "@iconify/vue/dist/offline";
|
||||||
|
|
||||||
// element-plus icon
|
// Iconify Icon在Vue里本地使用(用于内网环境)https://docs.iconify.design/icon-components/vue/offline.html
|
||||||
import Check from "@iconify-icons/ep/check";
|
|
||||||
import Menu from "@iconify-icons/ep/menu";
|
|
||||||
import HomeFilled from "@iconify-icons/ep/home-filled";
|
|
||||||
import SetUp from "@iconify-icons/ep/set-up";
|
|
||||||
import Edit from "@iconify-icons/ep/edit";
|
|
||||||
import Lollipop from "@iconify-icons/ep/lollipop";
|
|
||||||
import Link from "@iconify-icons/ep/link";
|
|
||||||
import Position from "@iconify-icons/ep/position";
|
|
||||||
import Histogram from "@iconify-icons/ep/histogram";
|
|
||||||
import RefreshRight from "@iconify-icons/ep/refresh-right";
|
|
||||||
import Close from "@iconify-icons/ep/close";
|
|
||||||
import CloseBold from "@iconify-icons/ep/close-bold";
|
|
||||||
import Bell from "@iconify-icons/ep/bell";
|
|
||||||
import Guide from "@iconify-icons/ep/guide";
|
|
||||||
import Iphone from "@iconify-icons/ep/iphone";
|
|
||||||
import Location from "@iconify-icons/ep/location";
|
|
||||||
import Tickets from "@iconify-icons/ep/tickets";
|
|
||||||
import OfficeBuilding from "@iconify-icons/ep/office-building";
|
|
||||||
import Notebook from "@iconify-icons/ep/notebook";
|
|
||||||
import Rank from "@iconify-icons/ep/rank";
|
|
||||||
import VideoPlay from "@iconify-icons/ep/video-play";
|
|
||||||
import Monitor from "@iconify-icons/ep/monitor";
|
|
||||||
import Search from "@iconify-icons/ep/search";
|
|
||||||
import Refresh from "@iconify-icons/ep/refresh";
|
|
||||||
import EditPen from "@iconify-icons/ep/edit-pen";
|
|
||||||
import Delete from "@iconify-icons/ep/delete";
|
|
||||||
import More from "@iconify-icons/ep/more-filled";
|
|
||||||
addIcon("check", Check);
|
|
||||||
addIcon("menu", Menu);
|
|
||||||
addIcon("home-filled", HomeFilled);
|
|
||||||
addIcon("set-up", SetUp);
|
|
||||||
addIcon("edit", Edit);
|
|
||||||
addIcon("lollipop", Lollipop);
|
|
||||||
addIcon("link", Link);
|
|
||||||
addIcon("position", Position);
|
|
||||||
addIcon("histogram", Histogram);
|
|
||||||
addIcon("refresh-right", RefreshRight);
|
|
||||||
addIcon("close", Close);
|
|
||||||
addIcon("close-bold", CloseBold);
|
|
||||||
addIcon("bell", Bell);
|
|
||||||
addIcon("guide", Guide);
|
|
||||||
addIcon("iphone", Iphone);
|
|
||||||
addIcon("location", Location);
|
|
||||||
addIcon("tickets", Tickets);
|
|
||||||
addIcon("office-building", OfficeBuilding);
|
|
||||||
addIcon("notebook", Notebook);
|
|
||||||
addIcon("video-play", VideoPlay);
|
|
||||||
addIcon("rank", Rank);
|
|
||||||
addIcon("monitor", Monitor);
|
|
||||||
addIcon("search", Search);
|
|
||||||
addIcon("refresh", Refresh);
|
|
||||||
addIcon("edits", EditPen);
|
|
||||||
addIcon("delete", Delete);
|
|
||||||
addIcon("more", More);
|
|
||||||
|
|
||||||
// remixicon
|
|
||||||
import ArrowRightSLine from "@iconify-icons/ri/arrow-right-s-line";
|
|
||||||
import ArrowLeftSLine from "@iconify-icons/ri/arrow-left-s-line";
|
|
||||||
import LogoutCircleRLine from "@iconify-icons/ri/logout-circle-r-line";
|
|
||||||
import NodeTree from "@iconify-icons/ri/node-tree";
|
|
||||||
import UbuntuFill from "@iconify-icons/ri/ubuntu-fill";
|
|
||||||
import QuestionLine from "@iconify-icons/ri/question-line";
|
|
||||||
import CheckboxCircleLine from "@iconify-icons/ri/checkbox-circle-line";
|
|
||||||
import InformationLine from "@iconify-icons/ri/information-line";
|
|
||||||
import CloseCircleLine from "@iconify-icons/ri/close-circle-line";
|
|
||||||
import ArrowUpLine from "@iconify-icons/ri/arrow-up-line";
|
|
||||||
import ArrowDownLine from "@iconify-icons/ri/arrow-down-line";
|
|
||||||
import Bookmark2Line from "@iconify-icons/ri/bookmark-2-line";
|
|
||||||
import AddFill from "@iconify-icons/ri/add-circle-line";
|
|
||||||
import ListCheck from "@iconify-icons/ri/list-check";
|
|
||||||
import More2Fill from "@iconify-icons/ri/more-2-fill";
|
|
||||||
import Database from "@iconify-icons/ri/database-2-line";
|
|
||||||
import Dict from "@iconify-icons/ri/git-repository-line";
|
|
||||||
import Card from "@iconify-icons/ri/bank-card-line";
|
|
||||||
import Reset from "@iconify-icons/ri/restart-line";
|
|
||||||
import Dept from "@iconify-icons/ri/git-branch-line";
|
|
||||||
import Password from "@iconify-icons/ri/lock-password-line";
|
|
||||||
import Ppt from "@iconify-icons/ri/file-ppt-2-line";
|
|
||||||
import TerminalWindowLine from "@iconify-icons/ri/terminal-window-line";
|
|
||||||
import User from "@iconify-icons/ri/user-3-fill";
|
|
||||||
import Lock from "@iconify-icons/ri/lock-fill";
|
|
||||||
import MenuUnfold from "@iconify-icons/ri/menu-unfold-fill";
|
|
||||||
import MenuFold from "@iconify-icons/ri/menu-fold-fill";
|
|
||||||
import Setting from "@iconify-icons/ri/settings-3-line";
|
|
||||||
import ArrowDown from "@iconify-icons/ri/arrow-down-s-line";
|
|
||||||
import CloseLeftTags from "@iconify-icons/ri/text-direction-r";
|
|
||||||
import CloseRightTags from "@iconify-icons/ri/text-direction-l";
|
|
||||||
import CloseOtherTags from "@iconify-icons/ri/text-spacing";
|
|
||||||
import CloseAllTags from "@iconify-icons/ri/subtract-line";
|
|
||||||
import Fullscreen from "@iconify-icons/ri/fullscreen-fill";
|
|
||||||
import ExitFullscreen from "@iconify-icons/ri/fullscreen-exit-fill";
|
|
||||||
addIcon("arrow-right-s-line", ArrowRightSLine);
|
|
||||||
addIcon("arrow-left-s-line", ArrowLeftSLine);
|
|
||||||
addIcon("logout-circle-r-line", LogoutCircleRLine);
|
|
||||||
addIcon("node-tree", NodeTree);
|
|
||||||
addIcon("ubuntu-fill", UbuntuFill);
|
|
||||||
addIcon("question-line", QuestionLine);
|
|
||||||
addIcon("checkbox-circle-line", CheckboxCircleLine);
|
|
||||||
addIcon("information-line", InformationLine);
|
|
||||||
addIcon("close-circle-line", CloseCircleLine);
|
|
||||||
addIcon("arrow-up-line", ArrowUpLine);
|
|
||||||
addIcon("arrow-down-line", ArrowDownLine);
|
|
||||||
addIcon("bookmark-2-line", Bookmark2Line);
|
|
||||||
addIcon("add", AddFill);
|
|
||||||
addIcon("list-check", ListCheck);
|
|
||||||
addIcon("more-vertical", More2Fill);
|
|
||||||
addIcon("database", Database);
|
|
||||||
addIcon("dict", Dict);
|
|
||||||
addIcon("card", Card);
|
|
||||||
addIcon("reset", Reset);
|
|
||||||
addIcon("dept", Dept);
|
|
||||||
addIcon("password", Password);
|
|
||||||
addIcon("ppt", Ppt);
|
|
||||||
addIcon("terminal-window-line", TerminalWindowLine);
|
|
||||||
addIcon("user", User);
|
|
||||||
addIcon("lock", Lock);
|
|
||||||
addIcon("menu-unfold", MenuUnfold);
|
|
||||||
addIcon("menu-fold", MenuFold);
|
|
||||||
addIcon("setting", Setting);
|
|
||||||
addIcon("arrow-down", ArrowDown);
|
|
||||||
addIcon("close-left-tags", CloseLeftTags);
|
|
||||||
addIcon("close-right-tags", CloseRightTags);
|
|
||||||
addIcon("close-other-tags", CloseOtherTags);
|
|
||||||
addIcon("close-all-tags", CloseAllTags);
|
|
||||||
addIcon("fullscreen", Fullscreen);
|
|
||||||
addIcon("exit-fullscreen", ExitFullscreen);
|
|
||||||
|
|
||||||
// Font Awesome 4
|
|
||||||
import FaUser from "@iconify-icons/fa/user";
|
|
||||||
import FaLock from "@iconify-icons/fa/lock";
|
|
||||||
import FaSignOut from "@iconify-icons/fa/sign-out";
|
|
||||||
addIcon("fa-user", FaUser);
|
|
||||||
addIcon("fa-lock", FaLock);
|
|
||||||
addIcon("fa-sign-out", FaSignOut);
|
|
||||||
|
|
||||||
// Unicons
|
|
||||||
import Import from "@iconify-icons/uil/import";
|
|
||||||
import Export from "@iconify-icons/uil/export";
|
|
||||||
import ArrowsShrinkV from "@iconify-icons/uil/arrows-shrink-v";
|
|
||||||
addIcon("import", Import);
|
|
||||||
addIcon("export", Export);
|
|
||||||
addIcon("density", ArrowsShrinkV);
|
|
||||||
|
|
||||||
// fluent
|
|
||||||
import Role from "@iconify-icons/fluent/people-swap-28-filled";
|
|
||||||
import FlUser from "@iconify-icons/fluent/person-12-filled";
|
|
||||||
addIcon("role", Role);
|
|
||||||
addIcon("flUser", FlUser);
|
|
||||||
|
|
||||||
// Material Design Icons
|
|
||||||
import Expand from "@iconify-icons/mdi/arrow-expand-down";
|
|
||||||
import UnExpand from "@iconify-icons/mdi/arrow-expand-right";
|
|
||||||
addIcon("expand", Expand);
|
|
||||||
addIcon("unExpand", UnExpand);
|
|
||||||
|
|
||||||
// carbon
|
|
||||||
import LocationCompany from "@iconify-icons/carbon/location-company";
|
|
||||||
addIcon("location-company", LocationCompany);
|
|
||||||
|
|
||||||
// Iconify Icon在Vue里离线使用(用于内网环境)https://docs.iconify.design/icon-components/vue/offline.html
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: "IconifyIconOffline",
|
name: "IconifyIconOffline",
|
||||||
components: { IconifyIcon },
|
components: { IconifyIcon },
|
||||||
props: {
|
props: {
|
||||||
icon: {
|
icon: {
|
||||||
type: String,
|
default: null
|
||||||
default: ""
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
|
if (typeof this.icon === "object") addIcon(this.icon, this.icon);
|
||||||
const attrs = this.$attrs;
|
const attrs = this.$attrs;
|
||||||
return h(
|
return h(
|
||||||
IconifyIcon,
|
IconifyIcon,
|
||||||
{
|
{
|
||||||
icon: `${this.icon}`,
|
icon: this.icon,
|
||||||
style: attrs?.style
|
style: attrs?.style
|
||||||
? Object.assign(attrs.style, { outline: "none" })
|
? Object.assign(attrs.style, { outline: "none" })
|
||||||
: { outline: "none" },
|
: { outline: "none" },
|
||||||
|
|||||||
@@ -11,7 +11,6 @@ export interface iconType {
|
|||||||
horizontalAlign?: boolean;
|
horizontalAlign?: boolean;
|
||||||
verticalAlign?: boolean;
|
verticalAlign?: boolean;
|
||||||
align?: string;
|
align?: string;
|
||||||
online?: boolean;
|
|
||||||
onLoad?: Function;
|
onLoad?: Function;
|
||||||
includes?: Function;
|
includes?: Function;
|
||||||
|
|
||||||
|
|||||||
@@ -39,8 +39,8 @@ const complete = (): void => {
|
|||||||
|
|
||||||
onBeforeMount(() => {
|
onBeforeMount(() => {
|
||||||
if (!instance) return;
|
if (!instance) return;
|
||||||
let { MapConfigure } = instance.appContext.config.globalProperties.$config;
|
const { MapConfigure } = instance.appContext.config.globalProperties.$config;
|
||||||
let { options } = MapConfigure;
|
const { options } = MapConfigure;
|
||||||
|
|
||||||
AMapLoader.load({
|
AMapLoader.load({
|
||||||
key: MapConfigure.amapKey,
|
key: MapConfigure.amapKey,
|
||||||
@@ -67,10 +67,10 @@ onBeforeMount(() => {
|
|||||||
gridSize: 80,
|
gridSize: 80,
|
||||||
maxZoom: 14,
|
maxZoom: 14,
|
||||||
renderMarker(ctx) {
|
renderMarker(ctx) {
|
||||||
let { marker, data } = ctx;
|
const { marker, data } = ctx;
|
||||||
if (Array.isArray(data) && data[0]) {
|
if (Array.isArray(data) && data[0]) {
|
||||||
var { driver, plateNumber, orientation } = data[0];
|
const { driver, plateNumber, orientation } = data[0];
|
||||||
var content = `<img style="transform: scale(1) rotate(${
|
const content = `<img style="transform: scale(1) rotate(${
|
||||||
360 - Number(orientation)
|
360 - Number(orientation)
|
||||||
}deg);" src='${car}' />`;
|
}deg);" src='${car}' />`;
|
||||||
marker.setContent(content);
|
marker.setContent(content);
|
||||||
@@ -93,7 +93,7 @@ onBeforeMount(() => {
|
|||||||
// 获取模拟车辆信息
|
// 获取模拟车辆信息
|
||||||
mapJson()
|
mapJson()
|
||||||
.then(({ data }) => {
|
.then(({ data }) => {
|
||||||
let points: object = data.map(v => {
|
const points: object = data.map(v => {
|
||||||
return {
|
return {
|
||||||
lnglat: [v.lng, v.lat],
|
lnglat: [v.lng, v.lat],
|
||||||
...v
|
...v
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ import { isString } from "@pureadmin/utils";
|
|||||||
import { propTypes } from "@/utils/propTypes";
|
import { propTypes } from "@/utils/propTypes";
|
||||||
import { IconifyIconOffline } from "../../ReIcon";
|
import { IconifyIconOffline } from "../../ReIcon";
|
||||||
import QRCode, { QRCodeRenderersOptions } from "qrcode";
|
import QRCode, { QRCodeRenderersOptions } from "qrcode";
|
||||||
|
import RefreshRight from "@iconify-icons/ep/refresh-right";
|
||||||
|
|
||||||
interface QrcodeLogo {
|
interface QrcodeLogo {
|
||||||
src?: string;
|
src?: string;
|
||||||
@@ -247,7 +248,7 @@ export default defineComponent({
|
|||||||
<div class="absolute top-[50%] left-[50%] font-bold">
|
<div class="absolute top-[50%] left-[50%] font-bold">
|
||||||
<IconifyIconOffline
|
<IconifyIconOffline
|
||||||
class="cursor-pointer"
|
class="cursor-pointer"
|
||||||
icon="refresh-right"
|
icon={RefreshRight}
|
||||||
width="30"
|
width="30"
|
||||||
color="var(--el-color-primary)"
|
color="var(--el-color-primary)"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -28,16 +28,16 @@ const emit = defineEmits<{
|
|||||||
(e: "scrollEnd"): void;
|
(e: "scrollEnd"): void;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
let xPos = ref<number>(0);
|
const xPos = ref<number>(0);
|
||||||
let yPos = ref<number>(0);
|
const yPos = ref<number>(0);
|
||||||
let delay = ref<number>(0);
|
const delay = ref<number>(0);
|
||||||
let height = ref<number>(0);
|
const height = ref<number>(0);
|
||||||
// 外容器宽度
|
// 外容器宽度
|
||||||
let width = ref<number>(0);
|
const width = ref<number>(0);
|
||||||
// 内容实际宽度
|
// 内容实际宽度
|
||||||
let realBoxWidth = ref<number>(0);
|
const realBoxWidth = ref<number>(0);
|
||||||
let realBoxHeight = ref<number>(0);
|
const realBoxHeight = ref<number>(0);
|
||||||
let copyHtml = ref("");
|
const copyHtml = ref("");
|
||||||
// single 单步滚动的定时器
|
// single 单步滚动的定时器
|
||||||
let singleWaitTime = null;
|
let singleWaitTime = null;
|
||||||
// move动画的animationFrame定时器
|
// move动画的animationFrame定时器
|
||||||
@@ -52,7 +52,7 @@ let isHover = false;
|
|||||||
let ease = "ease-in";
|
let ease = "ease-in";
|
||||||
|
|
||||||
// eslint-disable-next-line vue/no-setup-props-destructure
|
// eslint-disable-next-line vue/no-setup-props-destructure
|
||||||
let { classOption } = props;
|
const { classOption } = props;
|
||||||
|
|
||||||
if (classOption["key"] === undefined) {
|
if (classOption["key"] === undefined) {
|
||||||
classOption["key"] = 0;
|
classOption["key"] = 0;
|
||||||
@@ -68,15 +68,15 @@ const realBox = templateRef<HTMLElement | null>(
|
|||||||
null
|
null
|
||||||
);
|
);
|
||||||
|
|
||||||
let leftSwitchState = computed(() => {
|
const leftSwitchState = computed(() => {
|
||||||
return unref(xPos) < 0;
|
return unref(xPos) < 0;
|
||||||
});
|
});
|
||||||
|
|
||||||
let rightSwitchState = computed(() => {
|
const rightSwitchState = computed(() => {
|
||||||
return Math.abs(unref(xPos)) < unref(realBoxWidth) - unref(width);
|
return Math.abs(unref(xPos)) < unref(realBoxWidth) - unref(width);
|
||||||
});
|
});
|
||||||
|
|
||||||
let defaultOption = computed(() => {
|
const defaultOption = computed(() => {
|
||||||
return {
|
return {
|
||||||
//步长
|
//步长
|
||||||
step: 1,
|
step: 1,
|
||||||
@@ -105,7 +105,7 @@ let defaultOption = computed(() => {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
let options = computed(() => {
|
const options = computed(() => {
|
||||||
// @ts-expect-error
|
// @ts-expect-error
|
||||||
return copyObj({}, unref(defaultOption), classOption);
|
return copyObj({}, unref(defaultOption), classOption);
|
||||||
});
|
});
|
||||||
@@ -114,11 +114,11 @@ const leftSwitchClass = computed(() => {
|
|||||||
return unref(leftSwitchState) ? "" : unref(options).switchDisabledClass;
|
return unref(leftSwitchState) ? "" : unref(options).switchDisabledClass;
|
||||||
});
|
});
|
||||||
|
|
||||||
let rightSwitchClass = computed(() => {
|
const rightSwitchClass = computed(() => {
|
||||||
return unref(rightSwitchState) ? "" : unref(options).switchDisabledClass;
|
return unref(rightSwitchState) ? "" : unref(options).switchDisabledClass;
|
||||||
});
|
});
|
||||||
|
|
||||||
let leftSwitch = computed((): CSSProperties => {
|
const leftSwitch = computed((): CSSProperties => {
|
||||||
return {
|
return {
|
||||||
position: "absolute",
|
position: "absolute",
|
||||||
margin: `${unref(height) / 2}px 0 0 -${unref(options).switchOffset}px`,
|
margin: `${unref(height) / 2}px 0 0 -${unref(options).switchOffset}px`,
|
||||||
@@ -126,7 +126,7 @@ let leftSwitch = computed((): CSSProperties => {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
let rightSwitch = computed((): CSSProperties => {
|
const rightSwitch = computed((): CSSProperties => {
|
||||||
return {
|
return {
|
||||||
position: "absolute",
|
position: "absolute",
|
||||||
margin: `${unref(height) / 2}px 0 0 ${
|
margin: `${unref(height) / 2}px 0 0 ${
|
||||||
@@ -136,19 +136,19 @@ let rightSwitch = computed((): CSSProperties => {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
let isHorizontal = computed(() => {
|
const isHorizontal = computed(() => {
|
||||||
return (
|
return (
|
||||||
unref(options).direction !== "bottom" && unref(options).direction !== "top"
|
unref(options).direction !== "bottom" && unref(options).direction !== "top"
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
let float = computed((): CSSProperties => {
|
const float = computed((): CSSProperties => {
|
||||||
return unref(isHorizontal)
|
return unref(isHorizontal)
|
||||||
? { float: "left", overflow: "hidden" }
|
? { float: "left", overflow: "hidden" }
|
||||||
: { overflow: "hidden" };
|
: { overflow: "hidden" };
|
||||||
});
|
});
|
||||||
|
|
||||||
let pos = computed(() => {
|
const pos = computed(() => {
|
||||||
return {
|
return {
|
||||||
transform: `translate(${unref(xPos)}px,${unref(yPos)}px)`,
|
transform: `translate(${unref(xPos)}px,${unref(yPos)}px)`,
|
||||||
transition: `all ${ease} ${unref(delay)}ms`,
|
transition: `all ${ease} ${unref(delay)}ms`,
|
||||||
@@ -156,45 +156,45 @@ let pos = computed(() => {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
let navigation = computed(() => {
|
const navigation = computed(() => {
|
||||||
return unref(options).navigation;
|
return unref(options).navigation;
|
||||||
});
|
});
|
||||||
|
|
||||||
let autoPlay = computed(() => {
|
const autoPlay = computed(() => {
|
||||||
if (unref(navigation)) return false;
|
if (unref(navigation)) return false;
|
||||||
return unref(options).autoPlay;
|
return unref(options).autoPlay;
|
||||||
});
|
});
|
||||||
|
|
||||||
let scrollSwitch = computed(() => {
|
const scrollSwitch = computed(() => {
|
||||||
// 从 props 解构出来的 属性 不再具有响应性.
|
// 从 props 解构出来的 属性 不再具有响应性.
|
||||||
return (props.data as any).length >= unref(options).limitMoveNum;
|
return (props.data as any).length >= unref(options).limitMoveNum;
|
||||||
});
|
});
|
||||||
|
|
||||||
let hoverStopSwitch = computed(() => {
|
const hoverStopSwitch = computed(() => {
|
||||||
return unref(options).hoverStop && unref(autoPlay) && unref(scrollSwitch);
|
return unref(options).hoverStop && unref(autoPlay) && unref(scrollSwitch);
|
||||||
});
|
});
|
||||||
|
|
||||||
let canTouchScroll = computed(() => {
|
const canTouchScroll = computed(() => {
|
||||||
return unref(options).openTouch;
|
return unref(options).openTouch;
|
||||||
});
|
});
|
||||||
|
|
||||||
let baseFontSize = computed(() => {
|
const baseFontSize = computed(() => {
|
||||||
return unref(options).isSingleRemUnit
|
return unref(options).isSingleRemUnit
|
||||||
? parseInt(window.getComputedStyle(document.documentElement, null).fontSize)
|
? parseInt(window.getComputedStyle(document.documentElement, null).fontSize)
|
||||||
: 1;
|
: 1;
|
||||||
});
|
});
|
||||||
|
|
||||||
let realSingleStopWidth = computed(() => {
|
const realSingleStopWidth = computed(() => {
|
||||||
return unref(options).singleWidth * unref(baseFontSize);
|
return unref(options).singleWidth * unref(baseFontSize);
|
||||||
});
|
});
|
||||||
|
|
||||||
let realSingleStopHeight = computed(() => {
|
const realSingleStopHeight = computed(() => {
|
||||||
return unref(options).singleHeight * unref(baseFontSize);
|
return unref(options).singleHeight * unref(baseFontSize);
|
||||||
});
|
});
|
||||||
|
|
||||||
let step = computed(() => {
|
const step = computed(() => {
|
||||||
let singleStep;
|
let singleStep;
|
||||||
let step = unref(options).step;
|
const step = unref(options).step;
|
||||||
if (unref(isHorizontal)) {
|
if (unref(isHorizontal)) {
|
||||||
singleStep = unref(realSingleStopWidth);
|
singleStep = unref(realSingleStopWidth);
|
||||||
} else {
|
} else {
|
||||||
@@ -275,7 +275,7 @@ function touchMove(e) {
|
|||||||
return;
|
return;
|
||||||
const touch = e.targetTouches[0];
|
const touch = e.targetTouches[0];
|
||||||
const { direction } = unref(options);
|
const { direction } = unref(options);
|
||||||
let endPos = {
|
const endPos = {
|
||||||
x: touch.pageX - startPos.x,
|
x: touch.pageX - startPos.x,
|
||||||
y: touch.pageY - startPos.y
|
y: touch.pageY - startPos.y
|
||||||
};
|
};
|
||||||
@@ -300,18 +300,19 @@ function touchMove(e) {
|
|||||||
|
|
||||||
function touchEnd() {
|
function touchEnd() {
|
||||||
if (!unref(canTouchScroll)) return;
|
if (!unref(canTouchScroll)) return;
|
||||||
let timer;
|
// eslint-disable-next-line prefer-const
|
||||||
|
let timer: any;
|
||||||
const direction = unref(options).direction;
|
const direction = unref(options).direction;
|
||||||
delay.value = 50;
|
delay.value = 50;
|
||||||
if (direction === "top") {
|
if (direction === "top") {
|
||||||
if (unref(yPos) > 0) yPos.value = 0;
|
if (unref(yPos) > 0) yPos.value = 0;
|
||||||
} else if (direction === "bottom") {
|
} else if (direction === "bottom") {
|
||||||
let h = (unref(realBoxHeight) / 2) * -1;
|
const h = (unref(realBoxHeight) / 2) * -1;
|
||||||
if (unref(yPos) < h) yPos.value = h;
|
if (unref(yPos) < h) yPos.value = h;
|
||||||
} else if (direction === "left") {
|
} else if (direction === "left") {
|
||||||
if (unref(xPos) > 0) xPos.value = 0;
|
if (unref(xPos) > 0) xPos.value = 0;
|
||||||
} else if (direction === "right") {
|
} else if (direction === "right") {
|
||||||
let w = unref(realBoxWidth) * -1;
|
const w = unref(realBoxWidth) * -1;
|
||||||
if (unref(xPos) < w) xPos.value = w;
|
if (unref(xPos) < w) xPos.value = w;
|
||||||
}
|
}
|
||||||
if (timer) clearTimeout(timer);
|
if (timer) clearTimeout(timer);
|
||||||
@@ -339,7 +340,7 @@ function scrollMove() {
|
|||||||
const h = unref(realBoxHeight) / 2;
|
const h = unref(realBoxHeight) / 2;
|
||||||
//宽度
|
//宽度
|
||||||
const w = unref(realBoxWidth) / 2;
|
const w = unref(realBoxWidth) / 2;
|
||||||
let { direction, waitTime } = unref(options);
|
const { direction, waitTime } = unref(options);
|
||||||
if (direction === "top") {
|
if (direction === "top") {
|
||||||
// 上
|
// 上
|
||||||
if (Math.abs(unref(yPos)) >= h) {
|
if (Math.abs(unref(yPos)) >= h) {
|
||||||
|
|||||||
@@ -1,6 +1,12 @@
|
|||||||
import { defineComponent, ref, computed, PropType } from "vue";
|
import { defineComponent, ref, computed, PropType } from "vue";
|
||||||
import { useEpThemeStoreHook } from "@/store/modules/epTheme";
|
import { useEpThemeStoreHook } from "@/store/modules/epTheme";
|
||||||
|
|
||||||
|
import UnExpand from "@iconify-icons/mdi/arrow-expand-right";
|
||||||
import { IconifyIconOffline } from "../../ReIcon";
|
import { IconifyIconOffline } from "../../ReIcon";
|
||||||
|
import Expand from "@iconify-icons/mdi/arrow-expand-down";
|
||||||
|
import ArrowCollapse from "@iconify-icons/mdi/arrow-collapse-vertical";
|
||||||
|
import Setting from "@iconify-icons/ri/settings-3-line";
|
||||||
|
import RefreshRight from "@iconify-icons/ep/refresh-right";
|
||||||
|
|
||||||
export const loadingSvg = `
|
export const loadingSvg = `
|
||||||
<path class="path" d="
|
<path class="path" d="
|
||||||
@@ -105,7 +111,7 @@ export default defineComponent({
|
|||||||
reference: () => (
|
reference: () => (
|
||||||
<IconifyIconOffline
|
<IconifyIconOffline
|
||||||
class="cursor-pointer"
|
class="cursor-pointer"
|
||||||
icon="setting"
|
icon={Setting}
|
||||||
width="16"
|
width="16"
|
||||||
color="text_color_regular"
|
color="text_color_regular"
|
||||||
onMouseover={e => (buttonRef.value = e.currentTarget)}
|
onMouseover={e => (buttonRef.value = e.currentTarget)}
|
||||||
@@ -135,7 +141,7 @@ export default defineComponent({
|
|||||||
>
|
>
|
||||||
<IconifyIconOffline
|
<IconifyIconOffline
|
||||||
class="cursor-pointer"
|
class="cursor-pointer"
|
||||||
icon={isExpandAll.value ? "unExpand" : "expand"}
|
icon={isExpandAll.value ? UnExpand : Expand}
|
||||||
width="16"
|
width="16"
|
||||||
color="text_color_regular"
|
color="text_color_regular"
|
||||||
onClick={() => onExpand()}
|
onClick={() => onExpand()}
|
||||||
@@ -147,7 +153,7 @@ export default defineComponent({
|
|||||||
<el-tooltip effect="dark" content="刷新" placement="top">
|
<el-tooltip effect="dark" content="刷新" placement="top">
|
||||||
<IconifyIconOffline
|
<IconifyIconOffline
|
||||||
class="cursor-pointer"
|
class="cursor-pointer"
|
||||||
icon="refresh-right"
|
icon={RefreshRight}
|
||||||
width="16"
|
width="16"
|
||||||
color="text_color_regular"
|
color="text_color_regular"
|
||||||
onClick={() => emit("refresh")}
|
onClick={() => emit("refresh")}
|
||||||
@@ -159,7 +165,7 @@ export default defineComponent({
|
|||||||
<el-dropdown v-slots={dropdown} trigger="click">
|
<el-dropdown v-slots={dropdown} trigger="click">
|
||||||
<IconifyIconOffline
|
<IconifyIconOffline
|
||||||
class="cursor-pointer"
|
class="cursor-pointer"
|
||||||
icon="density"
|
icon={ArrowCollapse}
|
||||||
width="16"
|
width="16"
|
||||||
color="text_color_regular"
|
color="text_color_regular"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -31,7 +31,6 @@ const getConfig = (key?: string): ServerConfigs => {
|
|||||||
export const getServerConfig = async (app: App): Promise<undefined> => {
|
export const getServerConfig = async (app: App): Promise<undefined> => {
|
||||||
app.config.globalProperties.$config = getConfig();
|
app.config.globalProperties.$config = getConfig();
|
||||||
return axios({
|
return axios({
|
||||||
baseURL: "",
|
|
||||||
method: "get",
|
method: "get",
|
||||||
url: `${VITE_PUBLIC_PATH}serverConfig.json`
|
url: `${VITE_PUBLIC_PATH}serverConfig.json`
|
||||||
})
|
})
|
||||||
@@ -44,8 +43,6 @@ export const getServerConfig = async (app: App): Promise<undefined> => {
|
|||||||
// 设置全局配置
|
// 设置全局配置
|
||||||
setConfig($config);
|
setConfig($config);
|
||||||
}
|
}
|
||||||
// 设置全局baseURL
|
|
||||||
app.config.globalProperties.$baseUrl = $config.baseURL;
|
|
||||||
return $config;
|
return $config;
|
||||||
})
|
})
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
|
|||||||
@@ -2,12 +2,14 @@
|
|||||||
import Search from "./search/index.vue";
|
import Search from "./search/index.vue";
|
||||||
import Notice from "./notice/index.vue";
|
import Notice from "./notice/index.vue";
|
||||||
import mixNav from "./sidebar/mixNav.vue";
|
import mixNav from "./sidebar/mixNav.vue";
|
||||||
import avatars from "@/assets/avatars.jpg";
|
|
||||||
import { useNav } from "@/layout/hooks/useNav";
|
import { useNav } from "@/layout/hooks/useNav";
|
||||||
import Breadcrumb from "./sidebar/breadCrumb.vue";
|
import Breadcrumb from "./sidebar/breadCrumb.vue";
|
||||||
import topCollapse from "./sidebar/topCollapse.vue";
|
import topCollapse from "./sidebar/topCollapse.vue";
|
||||||
import { useTranslationLang } from "../hooks/useTranslationLang";
|
import { useTranslationLang } from "../hooks/useTranslationLang";
|
||||||
import globalization from "@/assets/svg/globalization.svg?component";
|
import globalization from "@/assets/svg/globalization.svg?component";
|
||||||
|
import LogoutCircleRLine from "@iconify-icons/ri/logout-circle-r-line";
|
||||||
|
import Setting from "@iconify-icons/ri/settings-3-line";
|
||||||
|
import Check from "@iconify-icons/ep/check";
|
||||||
|
|
||||||
const {
|
const {
|
||||||
layout,
|
layout,
|
||||||
@@ -63,7 +65,7 @@ const { t, locale, translationCh, translationEn } = useTranslationLang();
|
|||||||
<IconifyIconOffline
|
<IconifyIconOffline
|
||||||
class="check-zh"
|
class="check-zh"
|
||||||
v-show="locale === 'zh'"
|
v-show="locale === 'zh'"
|
||||||
icon="check"
|
:icon="Check"
|
||||||
/>
|
/>
|
||||||
简体中文
|
简体中文
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
@@ -73,7 +75,7 @@ const { t, locale, translationCh, translationEn } = useTranslationLang();
|
|||||||
@click="translationEn"
|
@click="translationEn"
|
||||||
>
|
>
|
||||||
<span class="check-en" v-show="locale === 'en'">
|
<span class="check-en" v-show="locale === 'en'">
|
||||||
<IconifyIconOffline icon="check" />
|
<IconifyIconOffline :icon="Check" />
|
||||||
</span>
|
</span>
|
||||||
English
|
English
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
@@ -82,15 +84,18 @@ const { t, locale, translationCh, translationEn } = useTranslationLang();
|
|||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
<!-- 退出登录 -->
|
<!-- 退出登录 -->
|
||||||
<el-dropdown trigger="click">
|
<el-dropdown trigger="click">
|
||||||
<span class="el-dropdown-link navbar-bg-hover">
|
<span class="el-dropdown-link navbar-bg-hover select-none">
|
||||||
<img v-if="avatars" :src="avatars" :style="avatarsStyle" />
|
<img
|
||||||
|
src="https://avatars.githubusercontent.com/u/44761321?v=4"
|
||||||
|
:style="avatarsStyle"
|
||||||
|
/>
|
||||||
<p v-if="username" class="dark:text-white">{{ username }}</p>
|
<p v-if="username" class="dark:text-white">{{ username }}</p>
|
||||||
</span>
|
</span>
|
||||||
<template #dropdown>
|
<template #dropdown>
|
||||||
<el-dropdown-menu class="logout">
|
<el-dropdown-menu class="logout">
|
||||||
<el-dropdown-item @click="logout">
|
<el-dropdown-item @click="logout">
|
||||||
<IconifyIconOffline
|
<IconifyIconOffline
|
||||||
icon="logout-circle-r-line"
|
:icon="LogoutCircleRLine"
|
||||||
style="margin: 5px"
|
style="margin: 5px"
|
||||||
/>
|
/>
|
||||||
{{ t("buttons.hsLoginOut") }}
|
{{ t("buttons.hsLoginOut") }}
|
||||||
@@ -103,7 +108,7 @@ const { t, locale, translationCh, translationEn } = useTranslationLang();
|
|||||||
:title="t('buttons.hssystemSet')"
|
:title="t('buttons.hssystemSet')"
|
||||||
@click="onPanel"
|
@click="onPanel"
|
||||||
>
|
>
|
||||||
<IconifyIconOffline icon="setting" />
|
<IconifyIconOffline :icon="Setting" />
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -2,61 +2,45 @@
|
|||||||
import { ref } from "vue";
|
import { ref } from "vue";
|
||||||
import { noticesData } from "./data";
|
import { noticesData } from "./data";
|
||||||
import NoticeList from "./noticeList.vue";
|
import NoticeList from "./noticeList.vue";
|
||||||
import { templateRef } from "@vueuse/core";
|
import Bell from "@iconify-icons/ep/bell";
|
||||||
import { Tabs, TabPane } from "@pureadmin/components";
|
|
||||||
|
|
||||||
const dropdownDom = templateRef<ElRef | null>("dropdownDom", null);
|
const noticesNum = ref(0);
|
||||||
const activeName = ref(noticesData[0].name);
|
|
||||||
const notices = ref(noticesData);
|
const notices = ref(noticesData);
|
||||||
|
const activeKey = ref(noticesData[0].key);
|
||||||
|
|
||||||
let noticesNum = ref(0);
|
notices.value.map(v => (noticesNum.value += v.list.length));
|
||||||
notices.value.forEach(notice => {
|
|
||||||
noticesNum.value += notice.list.length;
|
|
||||||
});
|
|
||||||
|
|
||||||
function tabClick() {
|
|
||||||
(dropdownDom as any).value.handleOpen();
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<el-dropdown ref="dropdownDom" trigger="click" placement="bottom-end">
|
<el-dropdown trigger="click" placement="bottom-end">
|
||||||
<span class="dropdown-badge navbar-bg-hover select-none">
|
<span class="dropdown-badge navbar-bg-hover select-none">
|
||||||
<el-badge :value="noticesNum" :max="99">
|
<el-badge :value="noticesNum" :max="99">
|
||||||
<span class="header-notice-icon">
|
<span class="header-notice-icon">
|
||||||
<IconifyIconOffline icon="bell" />
|
<IconifyIconOffline :icon="Bell" />
|
||||||
</span>
|
</span>
|
||||||
</el-badge>
|
</el-badge>
|
||||||
</span>
|
</span>
|
||||||
<template #dropdown>
|
<template #dropdown>
|
||||||
<el-dropdown-menu>
|
<el-dropdown-menu>
|
||||||
<Tabs
|
<el-tabs :stretch="true" v-model="activeKey" class="dropdown-tabs">
|
||||||
centered
|
|
||||||
class="dropdown-tabs"
|
|
||||||
v-model:activeName="activeName"
|
|
||||||
@tabClick="tabClick"
|
|
||||||
>
|
|
||||||
<template v-for="item in notices" :key="item.key">
|
<template v-for="item in notices" :key="item.key">
|
||||||
<TabPane :tab="`${item.name}(${item.list.length})`">
|
<el-tab-pane
|
||||||
|
:label="`${item.name}(${item.list.length})`"
|
||||||
|
:name="`${item.key}`"
|
||||||
|
>
|
||||||
<el-scrollbar max-height="330px">
|
<el-scrollbar max-height="330px">
|
||||||
<div class="noticeList-container">
|
<div class="noticeList-container">
|
||||||
<NoticeList :list="item.list" />
|
<NoticeList :list="item.list" />
|
||||||
</div>
|
</div>
|
||||||
</el-scrollbar>
|
</el-scrollbar>
|
||||||
</TabPane>
|
</el-tab-pane>
|
||||||
</template>
|
</template>
|
||||||
</Tabs>
|
</el-tabs>
|
||||||
</el-dropdown-menu>
|
</el-dropdown-menu>
|
||||||
</template>
|
</template>
|
||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style>
|
|
||||||
.ant-tabs-dropdown {
|
|
||||||
z-index: 2900 !important;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.dropdown-badge {
|
.dropdown-badge {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -72,30 +56,28 @@ function tabClick() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.dropdown-tabs {
|
.dropdown-tabs {
|
||||||
width: 336px;
|
width: 330px;
|
||||||
background-color: #fff;
|
|
||||||
box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
|
.noticeList-container {
|
||||||
border-radius: 4px;
|
padding: 15px 24px 0 24px;
|
||||||
|
}
|
||||||
|
|
||||||
:deep(.el-tabs__header) {
|
:deep(.el-tabs__header) {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
:deep(.el-tabs__nav-scroll) {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.el-tabs__nav-wrap)::after {
|
:deep(.el-tabs__nav-wrap)::after {
|
||||||
height: 1px;
|
height: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
:deep(.noticeList-container) {
|
// 如果上面的 notices 长度大于 3 请注释掉下面代码
|
||||||
padding: 15px 24px 0 24px;
|
:deep(.el-tabs__nav-wrap) {
|
||||||
}
|
padding: 0 36px 0 36px;
|
||||||
}
|
}
|
||||||
|
|
||||||
:deep(.ant-tabs-nav) {
|
// 如果上面的 notices 长度大于 3 请注释掉下面代码
|
||||||
margin-bottom: 0;
|
:deep(.el-tabs__active-bar) {
|
||||||
|
margin: 0 36px 0 36px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ListItem } from "./data";
|
import { ListItem } from "./data";
|
||||||
import { ref, PropType, nextTick } from "vue";
|
import { ref, PropType, nextTick } from "vue";
|
||||||
|
import { useNav } from "@/layout/hooks/useNav";
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
noticeItem: {
|
noticeItem: {
|
||||||
@@ -13,6 +14,7 @@ const titleRef = ref(null);
|
|||||||
const titleTooltip = ref(false);
|
const titleTooltip = ref(false);
|
||||||
const descriptionRef = ref(null);
|
const descriptionRef = ref(null);
|
||||||
const descriptionTooltip = ref(false);
|
const descriptionTooltip = ref(false);
|
||||||
|
const { tooltipEffect } = useNav();
|
||||||
|
|
||||||
function hoverTitle() {
|
function hoverTitle() {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
@@ -24,11 +26,11 @@ function hoverTitle() {
|
|||||||
|
|
||||||
function hoverDescription(event, description) {
|
function hoverDescription(event, description) {
|
||||||
// currentWidth 为文本在页面中所占的宽度,创建标签,加入到页面,获取currentWidth ,最后在移除
|
// currentWidth 为文本在页面中所占的宽度,创建标签,加入到页面,获取currentWidth ,最后在移除
|
||||||
let tempTag = document.createElement("span");
|
const tempTag = document.createElement("span");
|
||||||
tempTag.innerText = description;
|
tempTag.innerText = description;
|
||||||
tempTag.className = "getDescriptionWidth";
|
tempTag.className = "getDescriptionWidth";
|
||||||
document.querySelector("body").appendChild(tempTag);
|
document.querySelector("body").appendChild(tempTag);
|
||||||
let currentWidth = (
|
const currentWidth = (
|
||||||
document.querySelector(".getDescriptionWidth") as HTMLSpanElement
|
document.querySelector(".getDescriptionWidth") as HTMLSpanElement
|
||||||
).offsetWidth;
|
).offsetWidth;
|
||||||
document.querySelector(".getDescriptionWidth").remove();
|
document.querySelector(".getDescriptionWidth").remove();
|
||||||
@@ -57,6 +59,7 @@ function hoverDescription(event, description) {
|
|||||||
<div class="notice-text-title text-[#000000d9] dark:text-white">
|
<div class="notice-text-title text-[#000000d9] dark:text-white">
|
||||||
<el-tooltip
|
<el-tooltip
|
||||||
popper-class="notice-title-popper"
|
popper-class="notice-title-popper"
|
||||||
|
:effect="tooltipEffect"
|
||||||
:disabled="!titleTooltip"
|
:disabled="!titleTooltip"
|
||||||
:content="props.noticeItem.title"
|
:content="props.noticeItem.title"
|
||||||
placement="top-start"
|
placement="top-start"
|
||||||
@@ -81,6 +84,7 @@ function hoverDescription(event, description) {
|
|||||||
|
|
||||||
<el-tooltip
|
<el-tooltip
|
||||||
popper-class="notice-title-popper"
|
popper-class="notice-title-popper"
|
||||||
|
:effect="tooltipEffect"
|
||||||
:disabled="!descriptionTooltip"
|
:disabled="!descriptionTooltip"
|
||||||
:content="props.noticeItem.description"
|
:content="props.noticeItem.description"
|
||||||
placement="top-start"
|
placement="top-start"
|
||||||
|
|||||||
@@ -2,8 +2,9 @@
|
|||||||
import { ref } from "vue";
|
import { ref } from "vue";
|
||||||
import { onClickOutside } from "@vueuse/core";
|
import { onClickOutside } from "@vueuse/core";
|
||||||
import { emitter } from "@/utils/mitt";
|
import { emitter } from "@/utils/mitt";
|
||||||
|
import Close from "@iconify-icons/ep/close";
|
||||||
|
|
||||||
let show = ref<Boolean>(false);
|
const show = ref<Boolean>(false);
|
||||||
const target = ref(null);
|
const target = ref(null);
|
||||||
onClickOutside(target, (event: any) => {
|
onClickOutside(target, (event: any) => {
|
||||||
if (event.clientX > target.value.offsetLeft) return;
|
if (event.clientX > target.value.offsetLeft) return;
|
||||||
@@ -21,11 +22,11 @@ emitter.on("openPanel", () => {
|
|||||||
<div ref="target" class="right-panel bg-bg_color">
|
<div ref="target" class="right-panel bg-bg_color">
|
||||||
<div class="right-panel-items">
|
<div class="right-panel-items">
|
||||||
<div class="project-configuration">
|
<div class="project-configuration">
|
||||||
<h3 class="dark:text-white">项目配置</h3>
|
<h4 class="dark:text-white">项目配置</h4>
|
||||||
<span title="关闭配置">
|
<span title="关闭配置">
|
||||||
<IconifyIconOffline
|
<IconifyIconOffline
|
||||||
class="dark:text-white"
|
class="dark:text-white"
|
||||||
icon="close"
|
:icon="Close"
|
||||||
@click="show = !show"
|
@click="show = !show"
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -5,8 +5,8 @@
|
|||||||
确认
|
确认
|
||||||
</span>
|
</span>
|
||||||
<span class="search-footer-item">
|
<span class="search-footer-item">
|
||||||
<IconifyIconOffline icon="arrow-up-line" class="icon" />
|
<IconifyIconOffline :icon="ArrowUpLine" class="icon" />
|
||||||
<IconifyIconOffline icon="arrow-down-line" class="icon" />
|
<IconifyIconOffline :icon="ArrowDownLine" class="icon" />
|
||||||
切换
|
切换
|
||||||
</span>
|
</span>
|
||||||
<span class="search-footer-item">
|
<span class="search-footer-item">
|
||||||
@@ -16,10 +16,13 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script setup lang="ts">
|
||||||
|
import ArrowUpLine from "@iconify-icons/ri/arrow-up-line";
|
||||||
|
import ArrowDownLine from "@iconify-icons/ri/arrow-down-line";
|
||||||
|
import mdiKeyboardEsc from "@/assets/svg/keyboard_esc.svg?component";
|
||||||
import enterOutlined from "@/assets/svg/enter_outlined.svg?component";
|
import enterOutlined from "@/assets/svg/enter_outlined.svg?component";
|
||||||
import mdiKeyboardEsc from "@/assets/svg/mdi_keyboard_esc.svg?component";
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.search-footer {
|
.search-footer {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
@@ -1,14 +1,15 @@
|
|||||||
<script lang="ts" setup>
|
<script setup lang="ts">
|
||||||
import { useRouter } from "vue-router";
|
import { useRouter } from "vue-router";
|
||||||
import { cloneDeep } from "lodash-unified";
|
import { cloneDeep } from "lodash-unified";
|
||||||
import SearchResult from "./SearchResult.vue";
|
import SearchResult from "./SearchResult.vue";
|
||||||
import SearchFooter from "./SearchFooter.vue";
|
import SearchFooter from "./SearchFooter.vue";
|
||||||
|
import { deleteChildren } from "@/utils/tree";
|
||||||
import { useNav } from "@/layout/hooks/useNav";
|
import { useNav } from "@/layout/hooks/useNav";
|
||||||
import { transformI18n } from "@/plugins/i18n";
|
import { transformI18n } from "@/plugins/i18n";
|
||||||
import { deleteChildren } from "@pureadmin/utils";
|
|
||||||
import { useDebounceFn, onKeyStroke } from "@vueuse/core";
|
import { useDebounceFn, onKeyStroke } from "@vueuse/core";
|
||||||
import { ref, watch, computed, nextTick, shallowRef } from "vue";
|
import { ref, watch, computed, nextTick, shallowRef } from "vue";
|
||||||
import { usePermissionStoreHook } from "@/store/modules/permission";
|
import { usePermissionStoreHook } from "@/store/modules/permission";
|
||||||
|
import Search from "@iconify-icons/ep/search";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
/** 弹窗显隐 */
|
/** 弹窗显隐 */
|
||||||
@@ -148,7 +149,7 @@ onKeyStroke("ArrowDown", handleDown);
|
|||||||
>
|
>
|
||||||
<template #prefix>
|
<template #prefix>
|
||||||
<span class="el-input__icon">
|
<span class="el-input__icon">
|
||||||
<IconifyIconOffline icon="search" />
|
<IconifyIconOffline :icon="Search" />
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
<script lang="ts" setup>
|
<script setup lang="ts">
|
||||||
import { computed } from "vue";
|
import { computed } from "vue";
|
||||||
import { useI18n } from "vue-i18n";
|
import { useI18n } from "vue-i18n";
|
||||||
import { useEpThemeStoreHook } from "@/store/modules/epTheme";
|
import { useEpThemeStoreHook } from "@/store/modules/epTheme";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
import enterOutlined from "@/assets/svg/enter_outlined.svg?component";
|
import enterOutlined from "@/assets/svg/enter_outlined.svg?component";
|
||||||
|
import Bookmark2Line from "@iconify-icons/ri/bookmark-2-line";
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
@@ -67,7 +68,7 @@ function handleTo() {
|
|||||||
@click="handleTo"
|
@click="handleTo"
|
||||||
@mouseenter="handleMouse(item)"
|
@mouseenter="handleMouse(item)"
|
||||||
>
|
>
|
||||||
<component :is="useRenderIcon(item.meta?.icon ?? 'bookmark-2-line')" />
|
<component :is="useRenderIcon(item.meta?.icon ?? Bookmark2Line)" />
|
||||||
<span class="result-item-title">{{ t(item.meta?.title) }}</span>
|
<span class="result-item-title">{{ t(item.meta?.title) }}</span>
|
||||||
<enterOutlined />
|
<enterOutlined />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
<script lang="ts" setup>
|
<script setup lang="ts">
|
||||||
import { SearchModal } from "./components";
|
import { SearchModal } from "./components";
|
||||||
import { useBoolean } from "../../hooks/useBoolean";
|
import { useBoolean } from "../../hooks/useBoolean";
|
||||||
|
import Search from "@iconify-icons/ep/search";
|
||||||
|
|
||||||
const { bool: show, toggle } = useBoolean();
|
const { bool: show, toggle } = useBoolean();
|
||||||
function handleSearch() {
|
function handleSearch() {
|
||||||
toggle();
|
toggle();
|
||||||
@@ -12,7 +14,7 @@ function handleSearch() {
|
|||||||
class="search-container w-[40px] h-[48px] flex-c cursor-pointer navbar-bg-hover"
|
class="search-container w-[40px] h-[48px] flex-c cursor-pointer navbar-bg-hover"
|
||||||
@click="handleSearch"
|
@click="handleSearch"
|
||||||
>
|
>
|
||||||
<IconifyIconOffline icon="search" />
|
<IconifyIconOffline :icon="Search" />
|
||||||
</div>
|
</div>
|
||||||
<SearchModal v-model:value="show" />
|
<SearchModal v-model:value="show" />
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -1,25 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import {
|
|
||||||
ref,
|
|
||||||
unref,
|
|
||||||
watch,
|
|
||||||
reactive,
|
|
||||||
computed,
|
|
||||||
nextTick,
|
|
||||||
useCssModule
|
|
||||||
} from "vue";
|
|
||||||
import { getConfig } from "@/config";
|
|
||||||
import { useRouter } from "vue-router";
|
|
||||||
import panel from "../panel/index.vue";
|
|
||||||
import { emitter } from "@/utils/mitt";
|
|
||||||
import { resetRouter } from "@/router";
|
|
||||||
import { templateRef } from "@vueuse/core";
|
|
||||||
import { removeToken } from "@/utils/auth";
|
|
||||||
import { routerArrays } from "@/layout/types";
|
|
||||||
import { useNav } from "@/layout/hooks/useNav";
|
|
||||||
import { useAppStoreHook } from "@/store/modules/app";
|
|
||||||
import { useMultiTagsStoreHook } from "@/store/modules/multiTags";
|
|
||||||
import { useDataThemeChange } from "@/layout/hooks/useDataThemeChange";
|
|
||||||
import {
|
import {
|
||||||
useDark,
|
useDark,
|
||||||
debounce,
|
debounce,
|
||||||
@@ -27,23 +6,35 @@ import {
|
|||||||
storageLocal,
|
storageLocal,
|
||||||
storageSession
|
storageSession
|
||||||
} from "@pureadmin/utils";
|
} from "@pureadmin/utils";
|
||||||
|
import { getConfig } from "@/config";
|
||||||
|
import { useRouter } from "vue-router";
|
||||||
|
import panel from "../panel/index.vue";
|
||||||
|
import { emitter } from "@/utils/mitt";
|
||||||
|
import { resetRouter } from "@/router";
|
||||||
|
import { removeToken } from "@/utils/auth";
|
||||||
|
import { routerArrays } from "@/layout/types";
|
||||||
|
import { useNav } from "@/layout/hooks/useNav";
|
||||||
|
import { useAppStoreHook } from "@/store/modules/app";
|
||||||
import { toggleTheme } from "@pureadmin/theme/dist/browser-utils";
|
import { toggleTheme } from "@pureadmin/theme/dist/browser-utils";
|
||||||
|
import { useMultiTagsStoreHook } from "@/store/modules/multiTags";
|
||||||
|
import { ref, unref, watch, reactive, computed, nextTick } from "vue";
|
||||||
|
import { useDataThemeChange } from "@/layout/hooks/useDataThemeChange";
|
||||||
|
|
||||||
import dayIcon from "@/assets/svg/day.svg?component";
|
import dayIcon from "@/assets/svg/day.svg?component";
|
||||||
import darkIcon from "@/assets/svg/dark.svg?component";
|
import darkIcon from "@/assets/svg/dark.svg?component";
|
||||||
|
import Check from "@iconify-icons/ep/check";
|
||||||
|
import Logout from "@iconify-icons/ri/logout-circle-r-line";
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const { device } = useNav();
|
|
||||||
const { isDark } = useDark();
|
const { isDark } = useDark();
|
||||||
const { isSelect } = useCssModule();
|
const { device, tooltipEffect } = useNav();
|
||||||
const { $storage } = useGlobal<GlobalPropertiesApi>();
|
const { $storage } = useGlobal<GlobalPropertiesApi>();
|
||||||
|
|
||||||
const mixRef = templateRef<HTMLElement | null>("mixRef", null);
|
const mixRef = ref();
|
||||||
const verticalRef = templateRef<HTMLElement | null>("verticalRef", null);
|
const verticalRef = ref();
|
||||||
const horizontalRef = templateRef<HTMLElement | null>("horizontalRef", null);
|
const horizontalRef = ref();
|
||||||
|
|
||||||
const {
|
const {
|
||||||
body,
|
|
||||||
dataTheme,
|
dataTheme,
|
||||||
layoutTheme,
|
layoutTheme,
|
||||||
themeColors,
|
themeColors,
|
||||||
@@ -54,8 +45,8 @@ const {
|
|||||||
|
|
||||||
/* body添加layout属性,作用于src/style/sidebar.scss */
|
/* body添加layout属性,作用于src/style/sidebar.scss */
|
||||||
if (unref(layoutTheme)) {
|
if (unref(layoutTheme)) {
|
||||||
let layout = unref(layoutTheme).layout;
|
const layout = unref(layoutTheme).layout;
|
||||||
let theme = unref(layoutTheme).theme;
|
const theme = unref(layoutTheme).theme;
|
||||||
toggleTheme({
|
toggleTheme({
|
||||||
scopeName: `layout-theme-${theme}`
|
scopeName: `layout-theme-${theme}`
|
||||||
});
|
});
|
||||||
@@ -119,13 +110,13 @@ const weekChange = (value): void => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const tagsChange = () => {
|
const tagsChange = () => {
|
||||||
let showVal = settings.tabsVal;
|
const showVal = settings.tabsVal;
|
||||||
storageConfigureChange("hideTabs", showVal);
|
storageConfigureChange("hideTabs", showVal);
|
||||||
emitter.emit("tagViewsChange", showVal as unknown as string);
|
emitter.emit("tagViewsChange", showVal as unknown as string);
|
||||||
};
|
};
|
||||||
|
|
||||||
const multiTagsCacheChange = () => {
|
const multiTagsCacheChange = () => {
|
||||||
let multiTagsCache = settings.multiTagsCache;
|
const multiTagsCache = settings.multiTagsCache;
|
||||||
storageConfigureChange("multiTagsCache", multiTagsCache);
|
storageConfigureChange("multiTagsCache", multiTagsCache);
|
||||||
useMultiTagsStoreHook().multiTagsCacheChange(multiTagsCache);
|
useMultiTagsStoreHook().multiTagsCacheChange(multiTagsCache);
|
||||||
};
|
};
|
||||||
@@ -161,32 +152,10 @@ function logoChange() {
|
|||||||
|
|
||||||
function setFalse(Doms): any {
|
function setFalse(Doms): any {
|
||||||
Doms.forEach(v => {
|
Doms.forEach(v => {
|
||||||
toggleClass(false, isSelect, unref(v));
|
toggleClass(false, "is-select", unref(v));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
watch($storage, ({ layout }) => {
|
|
||||||
/* 设置wangeditorV5主题色 */
|
|
||||||
body.style.setProperty("--w-e-toolbar-active-color", layout["epThemeColor"]);
|
|
||||||
switch (layout["layout"]) {
|
|
||||||
case "vertical":
|
|
||||||
toggleClass(true, isSelect, unref(verticalRef));
|
|
||||||
debounce(setFalse([horizontalRef]), 50);
|
|
||||||
debounce(setFalse([mixRef]), 50);
|
|
||||||
break;
|
|
||||||
case "horizontal":
|
|
||||||
toggleClass(true, isSelect, unref(horizontalRef));
|
|
||||||
debounce(setFalse([verticalRef]), 50);
|
|
||||||
debounce(setFalse([mixRef]), 50);
|
|
||||||
break;
|
|
||||||
case "mix":
|
|
||||||
toggleClass(true, isSelect, unref(mixRef));
|
|
||||||
debounce(setFalse([verticalRef]), 50);
|
|
||||||
debounce(setFalse([horizontalRef]), 50);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
/** 主题色 激活选择项 */
|
/** 主题色 激活选择项 */
|
||||||
const getThemeColor = computed(() => {
|
const getThemeColor = computed(() => {
|
||||||
return current => {
|
return current => {
|
||||||
@@ -229,6 +198,26 @@ nextTick(() => {
|
|||||||
settings.tabsVal && tagsChange();
|
settings.tabsVal && tagsChange();
|
||||||
dataThemeChange();
|
dataThemeChange();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
watch($storage, ({ layout }) => {
|
||||||
|
switch (layout["layout"]) {
|
||||||
|
case "vertical":
|
||||||
|
toggleClass(true, "is-select", unref(verticalRef));
|
||||||
|
debounce(setFalse([horizontalRef]), 50);
|
||||||
|
debounce(setFalse([mixRef]), 50);
|
||||||
|
break;
|
||||||
|
case "horizontal":
|
||||||
|
toggleClass(true, "is-select", unref(horizontalRef));
|
||||||
|
debounce(setFalse([verticalRef]), 50);
|
||||||
|
debounce(setFalse([mixRef]), 50);
|
||||||
|
break;
|
||||||
|
case "mix":
|
||||||
|
toggleClass(true, "is-select", unref(mixRef));
|
||||||
|
debounce(setFalse([verticalRef]), 50);
|
||||||
|
debounce(setFalse([horizontalRef]), 50);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@@ -245,9 +234,15 @@ nextTick(() => {
|
|||||||
|
|
||||||
<el-divider>导航栏模式</el-divider>
|
<el-divider>导航栏模式</el-divider>
|
||||||
<ul class="pure-theme">
|
<ul class="pure-theme">
|
||||||
<el-tooltip class="item" content="左侧模式" placement="bottom">
|
<el-tooltip
|
||||||
|
:effect="tooltipEffect"
|
||||||
|
class="item"
|
||||||
|
content="左侧模式"
|
||||||
|
placement="bottom"
|
||||||
|
popper-class="pure-tooltip"
|
||||||
|
>
|
||||||
<li
|
<li
|
||||||
:class="layoutTheme.layout === 'vertical' ? $style.isSelect : ''"
|
:class="layoutTheme.layout === 'vertical' ? 'is-select' : ''"
|
||||||
ref="verticalRef"
|
ref="verticalRef"
|
||||||
@click="setLayoutModel('vertical')"
|
@click="setLayoutModel('vertical')"
|
||||||
>
|
>
|
||||||
@@ -258,12 +253,14 @@ nextTick(() => {
|
|||||||
|
|
||||||
<el-tooltip
|
<el-tooltip
|
||||||
v-if="device !== 'mobile'"
|
v-if="device !== 'mobile'"
|
||||||
|
:effect="tooltipEffect"
|
||||||
class="item"
|
class="item"
|
||||||
content="顶部模式"
|
content="顶部模式"
|
||||||
placement="bottom"
|
placement="bottom"
|
||||||
|
popper-class="pure-tooltip"
|
||||||
>
|
>
|
||||||
<li
|
<li
|
||||||
:class="layoutTheme.layout === 'horizontal' ? $style.isSelect : ''"
|
:class="layoutTheme.layout === 'horizontal' ? 'is-select' : ''"
|
||||||
ref="horizontalRef"
|
ref="horizontalRef"
|
||||||
@click="setLayoutModel('horizontal')"
|
@click="setLayoutModel('horizontal')"
|
||||||
>
|
>
|
||||||
@@ -274,12 +271,14 @@ nextTick(() => {
|
|||||||
|
|
||||||
<el-tooltip
|
<el-tooltip
|
||||||
v-if="device !== 'mobile'"
|
v-if="device !== 'mobile'"
|
||||||
|
:effect="tooltipEffect"
|
||||||
class="item"
|
class="item"
|
||||||
content="混合模式"
|
content="混合模式"
|
||||||
placement="bottom"
|
placement="bottom"
|
||||||
|
popper-class="pure-tooltip"
|
||||||
>
|
>
|
||||||
<li
|
<li
|
||||||
:class="layoutTheme.layout === 'mix' ? $style.isSelect : ''"
|
:class="layoutTheme.layout === 'mix' ? 'is-select' : ''"
|
||||||
ref="mixRef"
|
ref="mixRef"
|
||||||
@click="setLayoutModel('mix')"
|
@click="setLayoutModel('mix')"
|
||||||
>
|
>
|
||||||
@@ -303,7 +302,7 @@ nextTick(() => {
|
|||||||
:size="17"
|
:size="17"
|
||||||
:color="getThemeColor(item.themeColor)"
|
:color="getThemeColor(item.themeColor)"
|
||||||
>
|
>
|
||||||
<IconifyIconOffline icon="check" />
|
<IconifyIconOffline :icon="Check" />
|
||||||
</el-icon>
|
</el-icon>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
@@ -384,7 +383,7 @@ nextTick(() => {
|
|||||||
@click="onReset"
|
@click="onReset"
|
||||||
>
|
>
|
||||||
<IconifyIconOffline
|
<IconifyIconOffline
|
||||||
icon="fa-sign-out"
|
:icon="Logout"
|
||||||
width="15"
|
width="15"
|
||||||
height="15"
|
height="15"
|
||||||
style="margin-right: 4px"
|
style="margin-right: 4px"
|
||||||
@@ -394,13 +393,16 @@ nextTick(() => {
|
|||||||
</panel>
|
</panel>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped module>
|
<style lang="scss" scoped>
|
||||||
.isSelect {
|
:deep(.el-divider__text) {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-select {
|
||||||
border: 2px solid var(--el-color-primary);
|
border: 2px solid var(--el-color-primary);
|
||||||
}
|
}
|
||||||
</style>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.setting {
|
.setting {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
@@ -412,11 +414,6 @@ nextTick(() => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
:deep(.el-divider__text) {
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pure-datatheme {
|
.pure-datatheme {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { isEqual } from "lodash-unified";
|
import { isEqual } from "@pureadmin/utils";
|
||||||
import { transformI18n } from "@/plugins/i18n";
|
import { transformI18n } from "@/plugins/i18n";
|
||||||
import { ref, watch, onMounted, toRaw } from "vue";
|
import { ref, watch, onMounted, toRaw } from "vue";
|
||||||
import { getParentPaths, findRouteByPath } from "@/router/utils";
|
import { getParentPaths, findRouteByPath } from "@/router/utils";
|
||||||
@@ -97,8 +97,12 @@ watch(
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<el-breadcrumb class="!leading-[50px] select-none" separator="/">
|
<el-breadcrumb class="!leading-[50px] select-none" separator="/">
|
||||||
<transition-group appear name="breadcrumb">
|
<transition-group name="breadcrumb">
|
||||||
<el-breadcrumb-item v-for="item in levelList" :key="item.path">
|
<el-breadcrumb-item
|
||||||
|
class="!inline !items-stretch"
|
||||||
|
v-for="item in levelList"
|
||||||
|
:key="item.path"
|
||||||
|
>
|
||||||
<a @click.prevent="handleLink(item)">
|
<a @click.prevent="handleLink(item)">
|
||||||
{{ transformI18n(item.meta.title) }}
|
{{ transformI18n(item.meta.title) }}
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -3,11 +3,13 @@ import Search from "../search/index.vue";
|
|||||||
import Notice from "../notice/index.vue";
|
import Notice from "../notice/index.vue";
|
||||||
import { ref, watch, nextTick } from "vue";
|
import { ref, watch, nextTick } from "vue";
|
||||||
import SidebarItem from "./sidebarItem.vue";
|
import SidebarItem from "./sidebarItem.vue";
|
||||||
import avatars from "@/assets/avatars.jpg";
|
|
||||||
import { useNav } from "@/layout/hooks/useNav";
|
import { useNav } from "@/layout/hooks/useNav";
|
||||||
import { useTranslationLang } from "../../hooks/useTranslationLang";
|
import { useTranslationLang } from "../../hooks/useTranslationLang";
|
||||||
import { usePermissionStoreHook } from "@/store/modules/permission";
|
import { usePermissionStoreHook } from "@/store/modules/permission";
|
||||||
import globalization from "@/assets/svg/globalization.svg?component";
|
import globalization from "@/assets/svg/globalization.svg?component";
|
||||||
|
import LogoutCircleRLine from "@iconify-icons/ri/logout-circle-r-line";
|
||||||
|
import Setting from "@iconify-icons/ri/settings-3-line";
|
||||||
|
import Check from "@iconify-icons/ep/check";
|
||||||
|
|
||||||
const menuRef = ref();
|
const menuRef = ref();
|
||||||
|
|
||||||
@@ -77,7 +79,7 @@ watch(
|
|||||||
@click="translationCh"
|
@click="translationCh"
|
||||||
>
|
>
|
||||||
<span class="check-zh" v-show="locale === 'zh'">
|
<span class="check-zh" v-show="locale === 'zh'">
|
||||||
<IconifyIconOffline icon="check" />
|
<IconifyIconOffline :icon="Check" />
|
||||||
</span>
|
</span>
|
||||||
简体中文
|
简体中文
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
@@ -87,7 +89,7 @@ watch(
|
|||||||
@click="translationEn"
|
@click="translationEn"
|
||||||
>
|
>
|
||||||
<span class="check-en" v-show="locale === 'en'">
|
<span class="check-en" v-show="locale === 'en'">
|
||||||
<IconifyIconOffline icon="check" />
|
<IconifyIconOffline :icon="Check" />
|
||||||
</span>
|
</span>
|
||||||
English
|
English
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
@@ -97,14 +99,17 @@ watch(
|
|||||||
<!-- 退出登录 -->
|
<!-- 退出登录 -->
|
||||||
<el-dropdown trigger="click">
|
<el-dropdown trigger="click">
|
||||||
<span class="el-dropdown-link navbar-bg-hover">
|
<span class="el-dropdown-link navbar-bg-hover">
|
||||||
<img v-if="avatars" :src="avatars" :style="avatarsStyle" />
|
<img
|
||||||
|
src="https://avatars.githubusercontent.com/u/44761321?v=4"
|
||||||
|
:style="avatarsStyle"
|
||||||
|
/>
|
||||||
<p v-if="username" class="dark:text-white">{{ username }}</p>
|
<p v-if="username" class="dark:text-white">{{ username }}</p>
|
||||||
</span>
|
</span>
|
||||||
<template #dropdown>
|
<template #dropdown>
|
||||||
<el-dropdown-menu class="logout">
|
<el-dropdown-menu class="logout">
|
||||||
<el-dropdown-item @click="logout">
|
<el-dropdown-item @click="logout">
|
||||||
<IconifyIconOffline
|
<IconifyIconOffline
|
||||||
icon="logout-circle-r-line"
|
:icon="LogoutCircleRLine"
|
||||||
style="margin: 5px"
|
style="margin: 5px"
|
||||||
/>
|
/>
|
||||||
{{ t("buttons.hsLoginOut") }}
|
{{ t("buttons.hsLoginOut") }}
|
||||||
@@ -117,7 +122,7 @@ watch(
|
|||||||
:title="t('buttons.hssystemSet')"
|
:title="t('buttons.hssystemSet')"
|
||||||
@click="onPanel"
|
@click="onPanel"
|
||||||
>
|
>
|
||||||
<IconifyIconOffline icon="setting" />
|
<IconifyIconOffline :icon="Setting" />
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useDark } from "@pureadmin/utils";
|
import { ref } from "vue";
|
||||||
|
import { useNav } from "@/layout/hooks/useNav";
|
||||||
|
import MenuFold from "@iconify-icons/ri/menu-fold-fill";
|
||||||
|
import MenuUnfold from "@iconify-icons/ri/menu-unfold-fill";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
isActive: boolean;
|
isActive: boolean;
|
||||||
@@ -8,7 +11,9 @@ interface Props {
|
|||||||
const props = withDefaults(defineProps<Props>(), {
|
const props = withDefaults(defineProps<Props>(), {
|
||||||
isActive: false
|
isActive: false
|
||||||
});
|
});
|
||||||
const { isDark } = useDark();
|
|
||||||
|
const visible = ref(false);
|
||||||
|
const { tooltipEffect } = useNav();
|
||||||
|
|
||||||
const emit = defineEmits<{
|
const emit = defineEmits<{
|
||||||
(e: "toggleClick"): void;
|
(e: "toggleClick"): void;
|
||||||
@@ -23,13 +28,16 @@ const toggleClick = () => {
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<el-tooltip
|
<el-tooltip
|
||||||
placement="right"
|
placement="right"
|
||||||
:effect="isDark ? 'dark' : 'light'"
|
:visible="visible"
|
||||||
|
:effect="tooltipEffect"
|
||||||
:content="props.isActive ? '点击折叠' : '点击展开'"
|
:content="props.isActive ? '点击折叠' : '点击展开'"
|
||||||
>
|
>
|
||||||
<IconifyIconOffline
|
<IconifyIconOffline
|
||||||
:icon="props.isActive ? 'menu-fold' : 'menu-unfold'"
|
:icon="props.isActive ? MenuFold : MenuUnfold"
|
||||||
class="cursor-pointer inline-block align-middle text-primary hover:text-primary dark:hover:!text-white w-[16px] h-[16px] ml-4 mb-1"
|
class="cursor-pointer inline-block align-middle text-primary hover:text-primary dark:hover:!text-white w-[16px] h-[16px] ml-4 mb-1"
|
||||||
@click="toggleClick"
|
@click="toggleClick"
|
||||||
|
@mouseenter="visible = true"
|
||||||
|
@mouseleave="visible = false"
|
||||||
/>
|
/>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ const { title } = useNav();
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="sidebar-logo-container" :class="{ collapse: props.collapse }">
|
<div class="sidebar-logo-container" :class="{ collapses: props.collapse }">
|
||||||
<transition name="sidebarLogoFade">
|
<transition name="sidebarLogoFade">
|
||||||
<router-link
|
<router-link
|
||||||
v-if="props.collapse"
|
v-if="props.collapse"
|
||||||
@@ -65,7 +65,7 @@ const { title } = useNav();
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.collapse {
|
.collapses {
|
||||||
.sidebar-logo {
|
.sidebar-logo {
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import Search from "../search/index.vue";
|
import Search from "../search/index.vue";
|
||||||
import Notice from "../notice/index.vue";
|
import Notice from "../notice/index.vue";
|
||||||
import avatars from "@/assets/avatars.jpg";
|
|
||||||
import { useNav } from "@/layout/hooks/useNav";
|
import { useNav } from "@/layout/hooks/useNav";
|
||||||
import { transformI18n } from "@/plugins/i18n";
|
import { transformI18n } from "@/plugins/i18n";
|
||||||
import { ref, toRaw, watch, onMounted, nextTick } from "vue";
|
import { ref, toRaw, watch, onMounted, nextTick } from "vue";
|
||||||
@@ -10,9 +9,12 @@ import { getParentPaths, findRouteByPath } from "@/router/utils";
|
|||||||
import { useTranslationLang } from "../../hooks/useTranslationLang";
|
import { useTranslationLang } from "../../hooks/useTranslationLang";
|
||||||
import { usePermissionStoreHook } from "@/store/modules/permission";
|
import { usePermissionStoreHook } from "@/store/modules/permission";
|
||||||
import globalization from "@/assets/svg/globalization.svg?component";
|
import globalization from "@/assets/svg/globalization.svg?component";
|
||||||
|
import LogoutCircleRLine from "@iconify-icons/ri/logout-circle-r-line";
|
||||||
|
import Setting from "@iconify-icons/ri/settings-3-line";
|
||||||
|
import Check from "@iconify-icons/ep/check";
|
||||||
|
|
||||||
const menuRef = ref();
|
const menuRef = ref();
|
||||||
let defaultActive = ref(null);
|
const defaultActive = ref(null);
|
||||||
|
|
||||||
const { t, route, locale, translationCh, translationEn } =
|
const { t, route, locale, translationCh, translationEn } =
|
||||||
useTranslationLang(menuRef);
|
useTranslationLang(menuRef);
|
||||||
@@ -109,7 +111,7 @@ watch(
|
|||||||
@click="translationCh"
|
@click="translationCh"
|
||||||
>
|
>
|
||||||
<span class="check-zh" v-show="locale === 'zh'">
|
<span class="check-zh" v-show="locale === 'zh'">
|
||||||
<IconifyIconOffline icon="check" />
|
<IconifyIconOffline :icon="Check" />
|
||||||
</span>
|
</span>
|
||||||
简体中文
|
简体中文
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
@@ -119,7 +121,7 @@ watch(
|
|||||||
@click="translationEn"
|
@click="translationEn"
|
||||||
>
|
>
|
||||||
<span class="check-en" v-show="locale === 'en'">
|
<span class="check-en" v-show="locale === 'en'">
|
||||||
<IconifyIconOffline icon="check" />
|
<IconifyIconOffline :icon="Check" />
|
||||||
</span>
|
</span>
|
||||||
English
|
English
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
@@ -128,15 +130,18 @@ watch(
|
|||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
<!-- 退出登录 -->
|
<!-- 退出登录 -->
|
||||||
<el-dropdown trigger="click">
|
<el-dropdown trigger="click">
|
||||||
<span class="el-dropdown-link navbar-bg-hover">
|
<span class="el-dropdown-link navbar-bg-hover select-none">
|
||||||
<img v-if="avatars" :src="avatars" :style="avatarsStyle" />
|
<img
|
||||||
|
src="https://avatars.githubusercontent.com/u/44761321?v=4"
|
||||||
|
:style="avatarsStyle"
|
||||||
|
/>
|
||||||
<p v-if="username" class="dark:text-white">{{ username }}</p>
|
<p v-if="username" class="dark:text-white">{{ username }}</p>
|
||||||
</span>
|
</span>
|
||||||
<template #dropdown>
|
<template #dropdown>
|
||||||
<el-dropdown-menu class="logout">
|
<el-dropdown-menu class="logout">
|
||||||
<el-dropdown-item @click="logout">
|
<el-dropdown-item @click="logout">
|
||||||
<IconifyIconOffline
|
<IconifyIconOffline
|
||||||
icon="logout-circle-r-line"
|
:icon="LogoutCircleRLine"
|
||||||
style="margin: 5px"
|
style="margin: 5px"
|
||||||
/>
|
/>
|
||||||
{{ t("buttons.hsLoginOut") }}
|
{{ t("buttons.hsLoginOut") }}
|
||||||
@@ -149,7 +154,7 @@ watch(
|
|||||||
:title="t('buttons.hssystemSet')"
|
:title="t('buttons.hssystemSet')"
|
||||||
@click="onPanel"
|
@click="onPanel"
|
||||||
>
|
>
|
||||||
<IconifyIconOffline icon="setting" />
|
<IconifyIconOffline :icon="Setting" />
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,12 +1,18 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import path from "path";
|
import path from "path";
|
||||||
|
import { getConfig } from "@/config";
|
||||||
import { childrenType } from "../../types";
|
import { childrenType } from "../../types";
|
||||||
import { useNav } from "@/layout/hooks/useNav";
|
import { useNav } from "@/layout/hooks/useNav";
|
||||||
import { transformI18n } from "@/plugins/i18n";
|
import { transformI18n } from "@/plugins/i18n";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
import { ref, toRaw, PropType, nextTick, computed, CSSProperties } from "vue";
|
import { ref, toRaw, PropType, nextTick, computed, CSSProperties } from "vue";
|
||||||
|
|
||||||
const { layout, isCollapse } = useNav();
|
import ArrowUp from "@iconify-icons/ep/arrow-up";
|
||||||
|
import EpArrowDown from "@iconify-icons/ep/arrow-down";
|
||||||
|
import ArrowLeft from "@iconify-icons/ep/arrow-left";
|
||||||
|
import ArrowRight from "@iconify-icons/ep/arrow-right";
|
||||||
|
|
||||||
|
const { layout, isCollapse, tooltipEffect } = useNav();
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
item: {
|
item: {
|
||||||
@@ -76,6 +82,16 @@ const getSpanStyle = computed(() => {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const expandCloseIcon = computed(() => {
|
||||||
|
if (!getConfig()?.MenuArrowIconNoTransition) return "";
|
||||||
|
return {
|
||||||
|
"expand-close-icon": useRenderIcon(EpArrowDown),
|
||||||
|
"expand-open-icon": useRenderIcon(ArrowUp),
|
||||||
|
"collapse-close-icon": useRenderIcon(ArrowRight),
|
||||||
|
"collapse-open-icon": useRenderIcon(ArrowLeft)
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
const onlyOneChild: childrenType = ref(null);
|
const onlyOneChild: childrenType = ref(null);
|
||||||
// 存放菜单是否存在showTooltip属性标识
|
// 存放菜单是否存在showTooltip属性标识
|
||||||
const hoverMenuMap = new WeakMap();
|
const hoverMenuMap = new WeakMap();
|
||||||
@@ -185,8 +201,9 @@ function resolvePath(routePath) {
|
|||||||
<el-tooltip
|
<el-tooltip
|
||||||
v-else
|
v-else
|
||||||
placement="top"
|
placement="top"
|
||||||
|
:effect="tooltipEffect"
|
||||||
:offset="-10"
|
:offset="-10"
|
||||||
:disabled="!onlyOneChild.showTooltip"
|
:disabled="!isCollapse && !onlyOneChild.showTooltip"
|
||||||
>
|
>
|
||||||
<template #content>
|
<template #content>
|
||||||
{{ transformI18n(onlyOneChild.meta.title) }}
|
{{ transformI18n(onlyOneChild.meta.title) }}
|
||||||
@@ -212,7 +229,12 @@ function resolvePath(routePath) {
|
|||||||
</el-menu-item>
|
</el-menu-item>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<el-sub-menu v-else ref="subMenu" :index="resolvePath(props.item.path)">
|
<el-sub-menu
|
||||||
|
v-else
|
||||||
|
ref="subMenu"
|
||||||
|
v-bind="expandCloseIcon"
|
||||||
|
:index="resolvePath(props.item.path)"
|
||||||
|
>
|
||||||
<template #title>
|
<template #title>
|
||||||
<div v-if="toRaw(props.item.meta.icon)" class="sub-menu-icon">
|
<div v-if="toRaw(props.item.meta.icon)" class="sub-menu-icon">
|
||||||
<component
|
<component
|
||||||
@@ -225,8 +247,9 @@ function resolvePath(routePath) {
|
|||||||
<el-tooltip
|
<el-tooltip
|
||||||
v-else
|
v-else
|
||||||
placement="top"
|
placement="top"
|
||||||
|
:effect="tooltipEffect"
|
||||||
:offset="-10"
|
:offset="-10"
|
||||||
:disabled="!isCollapse || !props.item.showTooltip"
|
:disabled="!props.item.showTooltip"
|
||||||
>
|
>
|
||||||
<template #content>
|
<template #content>
|
||||||
{{ transformI18n(props.item.meta.title) }}
|
{{ transformI18n(props.item.meta.title) }}
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import MenuFold from "@iconify-icons/ri/menu-fold-fill";
|
||||||
|
import MenuUnfold from "@iconify-icons/ri/menu-unfold-fill";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
isActive: boolean;
|
isActive: boolean;
|
||||||
}
|
}
|
||||||
@@ -23,7 +26,7 @@ const toggleClick = () => {
|
|||||||
@click="toggleClick"
|
@click="toggleClick"
|
||||||
>
|
>
|
||||||
<IconifyIconOffline
|
<IconifyIconOffline
|
||||||
:icon="props.isActive ? 'menu-fold' : 'menu-unfold'"
|
:icon="props.isActive ? MenuFold : MenuUnfold"
|
||||||
class="inline-block align-middle hover:text-primary dark:hover:!text-white"
|
class="inline-block align-middle hover:text-primary dark:hover:!text-white"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ import { useRoute } from "vue-router";
|
|||||||
import { emitter } from "@/utils/mitt";
|
import { emitter } from "@/utils/mitt";
|
||||||
import SidebarItem from "./sidebarItem.vue";
|
import SidebarItem from "./sidebarItem.vue";
|
||||||
import leftCollapse from "./leftCollapse.vue";
|
import leftCollapse from "./leftCollapse.vue";
|
||||||
import type { StorageConfigs } from "/#/index";
|
|
||||||
import { useNav } from "@/layout/hooks/useNav";
|
import { useNav } from "@/layout/hooks/useNav";
|
||||||
import { storageLocal } from "@pureadmin/utils";
|
import { storageLocal } from "@pureadmin/utils";
|
||||||
import { ref, computed, watch, onBeforeMount } from "vue";
|
import { ref, computed, watch, onBeforeMount } from "vue";
|
||||||
@@ -19,7 +18,7 @@ const showLogo = ref(
|
|||||||
const { routers, device, pureApp, isCollapse, menuSelect, toggleSideBar } =
|
const { routers, device, pureApp, isCollapse, menuSelect, toggleSideBar } =
|
||||||
useNav();
|
useNav();
|
||||||
|
|
||||||
let subMenuData = ref([]);
|
const subMenuData = ref([]);
|
||||||
|
|
||||||
const menuData = computed(() => {
|
const menuData = computed(() => {
|
||||||
return pureApp.layout === "mix" && device.value !== "mobile"
|
return pureApp.layout === "mix" && device.value !== "mobile"
|
||||||
|
|||||||
@@ -11,6 +11,13 @@ import { handleAliveRoute, delAliveRoutes } from "@/router/utils";
|
|||||||
import { useMultiTagsStoreHook } from "@/store/modules/multiTags";
|
import { useMultiTagsStoreHook } from "@/store/modules/multiTags";
|
||||||
import { useResizeObserver, useDebounceFn, useFullscreen } from "@vueuse/core";
|
import { useResizeObserver, useDebounceFn, useFullscreen } from "@vueuse/core";
|
||||||
|
|
||||||
|
import ExitFullscreen from "@iconify-icons/ri/fullscreen-exit-fill";
|
||||||
|
import Fullscreen from "@iconify-icons/ri/fullscreen-fill";
|
||||||
|
import ArrowDown from "@iconify-icons/ri/arrow-down-s-line";
|
||||||
|
import ArrowRightSLine from "@iconify-icons/ri/arrow-right-s-line";
|
||||||
|
import ArrowLeftSLine from "@iconify-icons/ri/arrow-left-s-line";
|
||||||
|
import CloseBold from "@iconify-icons/ep/close-bold";
|
||||||
|
|
||||||
const {
|
const {
|
||||||
route,
|
route,
|
||||||
router,
|
router,
|
||||||
@@ -42,7 +49,7 @@ const {
|
|||||||
const tabDom = ref();
|
const tabDom = ref();
|
||||||
const containerDom = ref();
|
const containerDom = ref();
|
||||||
const scrollbarDom = ref();
|
const scrollbarDom = ref();
|
||||||
let isShowArrow = ref(false);
|
const isShowArrow = ref(false);
|
||||||
const { isFullscreen, toggle } = useFullscreen();
|
const { isFullscreen, toggle } = useFullscreen();
|
||||||
|
|
||||||
const dynamicTagView = () => {
|
const dynamicTagView = () => {
|
||||||
@@ -129,7 +136,7 @@ function dynamicRouteTag(value: string, parentPath: string): void {
|
|||||||
function concatPath(arr: object[], value: string, parentPath: string) {
|
function concatPath(arr: object[], value: string, parentPath: string) {
|
||||||
if (!hasValue) {
|
if (!hasValue) {
|
||||||
arr.forEach((arrItem: any) => {
|
arr.forEach((arrItem: any) => {
|
||||||
let pathConcat = parentPath + arrItem.path;
|
const pathConcat = parentPath + arrItem.path;
|
||||||
if (arrItem.path === value || pathConcat === value) {
|
if (arrItem.path === value || pathConcat === value) {
|
||||||
useMultiTagsStoreHook().handleTags("push", {
|
useMultiTagsStoreHook().handleTags("push", {
|
||||||
path: value,
|
path: value,
|
||||||
@@ -160,7 +167,7 @@ function onFresh() {
|
|||||||
function deleteDynamicTag(obj: any, current: any, tag?: string) {
|
function deleteDynamicTag(obj: any, current: any, tag?: string) {
|
||||||
// 存放被删除的缓存路由
|
// 存放被删除的缓存路由
|
||||||
let delAliveRouteList = [];
|
let delAliveRouteList = [];
|
||||||
let valueIndex: number = multiTags.value.findIndex((item: any) => {
|
const valueIndex: number = multiTags.value.findIndex((item: any) => {
|
||||||
if (item.query) {
|
if (item.query) {
|
||||||
if (item.path === obj.path) {
|
if (item.path === obj.path) {
|
||||||
return item.query === obj.query;
|
return item.query === obj.query;
|
||||||
@@ -199,7 +206,7 @@ function deleteDynamicTag(obj: any, current: any, tag?: string) {
|
|||||||
// 从当前匹配到的路径中删除
|
// 从当前匹配到的路径中删除
|
||||||
spliceRoute(valueIndex, 1);
|
spliceRoute(valueIndex, 1);
|
||||||
}
|
}
|
||||||
let newRoute = useMultiTagsStoreHook().handleTags("slice");
|
const newRoute = useMultiTagsStoreHook().handleTags("slice");
|
||||||
if (current === route.path) {
|
if (current === route.path) {
|
||||||
// 删除缓存路由
|
// 删除缓存路由
|
||||||
tag
|
tag
|
||||||
@@ -284,10 +291,10 @@ function onClickDrop(key, item, selectRoute?: RouteConfigs) {
|
|||||||
toggle();
|
toggle();
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
if (isFullscreen.value) {
|
if (isFullscreen.value) {
|
||||||
tagsViews[6].icon = "exit-fullscreen";
|
tagsViews[6].icon = ExitFullscreen;
|
||||||
tagsViews[6].text = $t("buttons.hswholeExitFullScreen");
|
tagsViews[6].text = $t("buttons.hswholeExitFullScreen");
|
||||||
} else {
|
} else {
|
||||||
tagsViews[6].icon = "fullscreen";
|
tagsViews[6].icon = Fullscreen;
|
||||||
tagsViews[6].text = $t("buttons.hswholeFullScreen");
|
tagsViews[6].text = $t("buttons.hswholeFullScreen");
|
||||||
}
|
}
|
||||||
}, 100);
|
}, 100);
|
||||||
@@ -297,10 +304,10 @@ function onClickDrop(key, item, selectRoute?: RouteConfigs) {
|
|||||||
onContentFullScreen();
|
onContentFullScreen();
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
if (pureSetting.hiddenSideBar) {
|
if (pureSetting.hiddenSideBar) {
|
||||||
tagsViews[7].icon = "exit-fullscreen";
|
tagsViews[7].icon = ExitFullscreen;
|
||||||
tagsViews[7].text = $t("buttons.hscontentExitFullScreen");
|
tagsViews[7].text = $t("buttons.hscontentExitFullScreen");
|
||||||
} else {
|
} else {
|
||||||
tagsViews[7].icon = "fullscreen";
|
tagsViews[7].icon = Fullscreen;
|
||||||
tagsViews[7].text = $t("buttons.hscontentFullScreen");
|
tagsViews[7].text = $t("buttons.hscontentFullScreen");
|
||||||
}
|
}
|
||||||
}, 100);
|
}, 100);
|
||||||
@@ -339,8 +346,8 @@ function showMenuModel(
|
|||||||
query: object = {},
|
query: object = {},
|
||||||
refresh = false
|
refresh = false
|
||||||
) {
|
) {
|
||||||
let allRoute = multiTags.value;
|
const allRoute = multiTags.value;
|
||||||
let routeLength = multiTags.value.length;
|
const routeLength = multiTags.value.length;
|
||||||
let currentIndex = -1;
|
let currentIndex = -1;
|
||||||
if (isEmpty(query)) {
|
if (isEmpty(query)) {
|
||||||
currentIndex = allRoute.findIndex(v => v.path === currentPath);
|
currentIndex = allRoute.findIndex(v => v.path === currentPath);
|
||||||
@@ -496,10 +503,10 @@ onMounted(() => {
|
|||||||
<template>
|
<template>
|
||||||
<div ref="containerDom" class="tags-view" v-if="!showTags">
|
<div ref="containerDom" class="tags-view" v-if="!showTags">
|
||||||
<span v-show="isShowArrow" class="arrow-left">
|
<span v-show="isShowArrow" class="arrow-left">
|
||||||
<IconifyIconOffline icon="arrow-left-s-line" @click="handleScroll(200)" />
|
<IconifyIconOffline :icon="ArrowLeftSLine" @click="handleScroll(200)" />
|
||||||
</span>
|
</span>
|
||||||
<div ref="scrollbarDom" class="scroll-container">
|
<div ref="scrollbarDom" class="scroll-container">
|
||||||
<div class="tab" ref="tabDom" :style="getTabStyle">
|
<div class="tab select-none" ref="tabDom" :style="getTabStyle">
|
||||||
<div
|
<div
|
||||||
:ref="'dynamic' + index"
|
:ref="'dynamic' + index"
|
||||||
v-for="(item, index) in multiTags"
|
v-for="(item, index) in multiTags"
|
||||||
@@ -530,7 +537,7 @@ onMounted(() => {
|
|||||||
class="el-icon-close"
|
class="el-icon-close"
|
||||||
@click.stop="deleteMenu(item)"
|
@click.stop="deleteMenu(item)"
|
||||||
>
|
>
|
||||||
<IconifyIconOffline icon="close-bold" />
|
<IconifyIconOffline :icon="CloseBold" />
|
||||||
</span>
|
</span>
|
||||||
<div
|
<div
|
||||||
:ref="'schedule' + index"
|
:ref="'schedule' + index"
|
||||||
@@ -541,10 +548,7 @@ onMounted(() => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<span v-show="isShowArrow" class="arrow-right">
|
<span v-show="isShowArrow" class="arrow-right">
|
||||||
<IconifyIconOffline
|
<IconifyIconOffline :icon="ArrowRightSLine" @click="handleScroll(-200)" />
|
||||||
icon="arrow-right-s-line"
|
|
||||||
@click="handleScroll(-200)"
|
|
||||||
/>
|
|
||||||
</span>
|
</span>
|
||||||
<!-- 右键菜单按钮 -->
|
<!-- 右键菜单按钮 -->
|
||||||
<transition name="el-zoom-in-top">
|
<transition name="el-zoom-in-top">
|
||||||
@@ -573,7 +577,7 @@ onMounted(() => {
|
|||||||
@command="handleCommand"
|
@command="handleCommand"
|
||||||
>
|
>
|
||||||
<span class="arrow-down">
|
<span class="arrow-down">
|
||||||
<IconifyIconOffline icon="arrow-down" class="dark:text-white" />
|
<IconifyIconOffline :icon="ArrowDown" class="dark:text-white" />
|
||||||
</span>
|
</span>
|
||||||
<template #dropdown>
|
<template #dropdown>
|
||||||
<el-dropdown-menu>
|
<el-dropdown-menu>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<script lang="ts" setup>
|
<script setup lang="ts">
|
||||||
import { useI18n } from "vue-i18n";
|
import { useI18n } from "vue-i18n";
|
||||||
import { useRoute } from "vue-router";
|
import { useRoute } from "vue-router";
|
||||||
import { ref, unref, onMounted, nextTick } from "vue";
|
import { ref, unref, onMounted, nextTick } from "vue";
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ export function useDataThemeChange() {
|
|||||||
return new TinyColor(color).shade(10).toString();
|
return new TinyColor(color).shade(10).toString();
|
||||||
};
|
};
|
||||||
|
|
||||||
/** 设置ep主题色 */
|
/** 设置 `element-plus` 主题色 */
|
||||||
const setEpThemeColor = (color: string) => {
|
const setEpThemeColor = (color: string) => {
|
||||||
useEpThemeStoreHook().setEpThemeColor(color);
|
useEpThemeStoreHook().setEpThemeColor(color);
|
||||||
body.style.setProperty("--el-color-primary-active", shadeBgColor(color));
|
body.style.setProperty("--el-color-primary-active", shadeBgColor(color));
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { computed } from "vue";
|
import { computed } from "vue";
|
||||||
|
import { storeToRefs } from "pinia";
|
||||||
import { getConfig } from "@/config";
|
import { getConfig } from "@/config";
|
||||||
import { useRouter } from "vue-router";
|
import { useRouter } from "vue-router";
|
||||||
import { emitter } from "@/utils/mitt";
|
import { emitter } from "@/utils/mitt";
|
||||||
@@ -7,15 +8,18 @@ import { useGlobal } from "@pureadmin/utils";
|
|||||||
import { transformI18n } from "@/plugins/i18n";
|
import { transformI18n } from "@/plugins/i18n";
|
||||||
import { router, remainingPaths } from "@/router";
|
import { router, remainingPaths } from "@/router";
|
||||||
import { useAppStoreHook } from "@/store/modules/app";
|
import { useAppStoreHook } from "@/store/modules/app";
|
||||||
import { i18nChangeLanguage } from "@wangeditor/editor";
|
|
||||||
import { useUserStoreHook } from "@/store/modules/user";
|
import { useUserStoreHook } from "@/store/modules/user";
|
||||||
import { useEpThemeStoreHook } from "@/store/modules/epTheme";
|
import { useEpThemeStoreHook } from "@/store/modules/epTheme";
|
||||||
|
import { usePermissionStoreHook } from "@/store/modules/permission";
|
||||||
|
|
||||||
const errorInfo = "当前路由配置不正确,请检查配置";
|
const errorInfo = "当前路由配置不正确,请检查配置";
|
||||||
|
|
||||||
export function useNav() {
|
export function useNav() {
|
||||||
const pureApp = useAppStoreHook();
|
const pureApp = useAppStoreHook();
|
||||||
const routers = useRouter().options.routes;
|
const routers = useRouter().options.routes;
|
||||||
|
const { wholeMenus } = storeToRefs(usePermissionStoreHook());
|
||||||
|
/** 平台`layout`中所有`el-tooltip`的`effect`配置,默认`light` */
|
||||||
|
const tooltipEffect = getConfig()?.TooltipEffect ?? "light";
|
||||||
|
|
||||||
/** 用户名 */
|
/** 用户名 */
|
||||||
const username = computed(() => {
|
const username = computed(() => {
|
||||||
@@ -99,6 +103,7 @@ export function useNav() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function menuSelect(indexPath: string, routers): void {
|
function menuSelect(indexPath: string, routers): void {
|
||||||
|
if (wholeMenus.value.length === 0) return;
|
||||||
if (isRemaining(indexPath)) return;
|
if (isRemaining(indexPath)) return;
|
||||||
let parentPath = "";
|
let parentPath = "";
|
||||||
const parentPathIndex = indexPath.lastIndexOf("/");
|
const parentPathIndex = indexPath.lastIndexOf("/");
|
||||||
@@ -132,15 +137,6 @@ export function useNav() {
|
|||||||
return remainingPaths.includes(path);
|
return remainingPaths.includes(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 切换wangEditorV5国际化
|
|
||||||
* @param language string 可选值 en、zh-CN
|
|
||||||
* @returns void
|
|
||||||
*/
|
|
||||||
function changeWangeditorLanguage(language: string): void {
|
|
||||||
i18nChangeLanguage(language);
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
title,
|
title,
|
||||||
device,
|
device,
|
||||||
@@ -159,8 +155,8 @@ export function useNav() {
|
|||||||
pureApp,
|
pureApp,
|
||||||
username,
|
username,
|
||||||
avatarsStyle,
|
avatarsStyle,
|
||||||
|
tooltipEffect,
|
||||||
getDropdownItemStyle,
|
getDropdownItemStyle,
|
||||||
getDropdownItemClass,
|
getDropdownItemClass
|
||||||
changeWangeditorLanguage
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,15 +9,22 @@ import {
|
|||||||
getCurrentInstance
|
getCurrentInstance
|
||||||
} from "vue";
|
} from "vue";
|
||||||
import { tagsViewsType } from "../types";
|
import { tagsViewsType } from "../types";
|
||||||
import { isEqual } from "lodash-unified";
|
|
||||||
import type { StorageConfigs } from "/#/index";
|
|
||||||
import { useEventListener } from "@vueuse/core";
|
import { useEventListener } from "@vueuse/core";
|
||||||
import { useRoute, useRouter } from "vue-router";
|
import { useRoute, useRouter } from "vue-router";
|
||||||
import { transformI18n, $t } from "@/plugins/i18n";
|
import { transformI18n, $t } from "@/plugins/i18n";
|
||||||
|
import { isEqual, isBoolean } from "@pureadmin/utils";
|
||||||
import { useSettingStoreHook } from "@/store/modules/settings";
|
import { useSettingStoreHook } from "@/store/modules/settings";
|
||||||
import { useMultiTagsStoreHook } from "@/store/modules/multiTags";
|
import { useMultiTagsStoreHook } from "@/store/modules/multiTags";
|
||||||
import { storageLocal, toggleClass, hasClass } from "@pureadmin/utils";
|
import { storageLocal, toggleClass, hasClass } from "@pureadmin/utils";
|
||||||
|
|
||||||
|
import Fullscreen from "@iconify-icons/ri/fullscreen-fill";
|
||||||
|
import CloseAllTags from "@iconify-icons/ri/subtract-line";
|
||||||
|
import CloseOtherTags from "@iconify-icons/ri/text-spacing";
|
||||||
|
import CloseRightTags from "@iconify-icons/ri/text-direction-l";
|
||||||
|
import CloseLeftTags from "@iconify-icons/ri/text-direction-r";
|
||||||
|
import RefreshRight from "@iconify-icons/ep/refresh-right";
|
||||||
|
import Close from "@iconify-icons/ep/close";
|
||||||
|
|
||||||
export function useTags() {
|
export function useTags() {
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
@@ -48,56 +55,56 @@ export function useTags() {
|
|||||||
|
|
||||||
const tagsViews = reactive<Array<tagsViewsType>>([
|
const tagsViews = reactive<Array<tagsViewsType>>([
|
||||||
{
|
{
|
||||||
icon: "refresh-right",
|
icon: RefreshRight,
|
||||||
text: $t("buttons.hsreload"),
|
text: $t("buttons.hsreload"),
|
||||||
divided: false,
|
divided: false,
|
||||||
disabled: false,
|
disabled: false,
|
||||||
show: true
|
show: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "close",
|
icon: Close,
|
||||||
text: $t("buttons.hscloseCurrentTab"),
|
text: $t("buttons.hscloseCurrentTab"),
|
||||||
divided: false,
|
divided: false,
|
||||||
disabled: multiTags.value.length > 1 ? false : true,
|
disabled: multiTags.value.length > 1 ? false : true,
|
||||||
show: true
|
show: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "close-left-tags",
|
icon: CloseLeftTags,
|
||||||
text: $t("buttons.hscloseLeftTabs"),
|
text: $t("buttons.hscloseLeftTabs"),
|
||||||
divided: true,
|
divided: true,
|
||||||
disabled: multiTags.value.length > 1 ? false : true,
|
disabled: multiTags.value.length > 1 ? false : true,
|
||||||
show: true
|
show: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "close-right-tags",
|
icon: CloseRightTags,
|
||||||
text: $t("buttons.hscloseRightTabs"),
|
text: $t("buttons.hscloseRightTabs"),
|
||||||
divided: false,
|
divided: false,
|
||||||
disabled: multiTags.value.length > 1 ? false : true,
|
disabled: multiTags.value.length > 1 ? false : true,
|
||||||
show: true
|
show: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "close-other-tags",
|
icon: CloseOtherTags,
|
||||||
text: $t("buttons.hscloseOtherTabs"),
|
text: $t("buttons.hscloseOtherTabs"),
|
||||||
divided: true,
|
divided: true,
|
||||||
disabled: multiTags.value.length > 2 ? false : true,
|
disabled: multiTags.value.length > 2 ? false : true,
|
||||||
show: true
|
show: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "close-all-tags",
|
icon: CloseAllTags,
|
||||||
text: $t("buttons.hscloseAllTabs"),
|
text: $t("buttons.hscloseAllTabs"),
|
||||||
divided: false,
|
divided: false,
|
||||||
disabled: multiTags.value.length > 1 ? false : true,
|
disabled: multiTags.value.length > 1 ? false : true,
|
||||||
show: true
|
show: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "fullscreen",
|
icon: Fullscreen,
|
||||||
text: $t("buttons.hswholeFullScreen"),
|
text: $t("buttons.hswholeFullScreen"),
|
||||||
divided: true,
|
divided: true,
|
||||||
disabled: false,
|
disabled: false,
|
||||||
show: true
|
show: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "fullscreen",
|
icon: Fullscreen,
|
||||||
text: $t("buttons.hscontentFullScreen"),
|
text: $t("buttons.hscontentFullScreen"),
|
||||||
divided: false,
|
divided: false,
|
||||||
disabled: false,
|
disabled: false,
|
||||||
@@ -106,16 +113,15 @@ export function useTags() {
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
function conditionHandle(item, previous, next) {
|
function conditionHandle(item, previous, next) {
|
||||||
if (
|
if (isBoolean(route?.meta?.showLink) && route?.meta?.showLink === false) {
|
||||||
Object.keys(route.query).length === 0 &&
|
if (Object.keys(route.query).length > 0) {
|
||||||
Object.keys(route.params).length === 0
|
|
||||||
) {
|
|
||||||
return route.path === item.path ? previous : next;
|
|
||||||
} else if (Object.keys(route.query).length > 0) {
|
|
||||||
return isEqual(route.query, item.query) ? previous : next;
|
return isEqual(route.query, item.query) ? previous : next;
|
||||||
} else {
|
} else {
|
||||||
return isEqual(route.params, item.params) ? previous : next;
|
return isEqual(route.params, item.params) ? previous : next;
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
return route.path === item.path ? previous : next;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const iconIsActive = computed(() => {
|
const iconIsActive = computed(() => {
|
||||||
|
|||||||
@@ -4,8 +4,7 @@ import { useRoute } from "vue-router";
|
|||||||
import { watch, type Ref } from "vue";
|
import { watch, type Ref } from "vue";
|
||||||
|
|
||||||
export function useTranslationLang(ref?: Ref) {
|
export function useTranslationLang(ref?: Ref) {
|
||||||
const { $storage, changeTitle, changeWangeditorLanguage, handleResize } =
|
const { $storage, changeTitle, handleResize } = useNav();
|
||||||
useNav();
|
|
||||||
const { locale, t } = useI18n();
|
const { locale, t } = useI18n();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
|
||||||
@@ -25,9 +24,6 @@ export function useTranslationLang(ref?: Ref) {
|
|||||||
() => locale.value,
|
() => locale.value,
|
||||||
() => {
|
() => {
|
||||||
changeTitle(route.meta);
|
changeTitle(route.meta);
|
||||||
locale.value === "en"
|
|
||||||
? changeWangeditorLanguage(locale.value)
|
|
||||||
: changeWangeditorLanguage("zh-CN");
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import "animate.css";
|
||||||
|
// vxe-table的所有icon不支持component模式,间接依赖了font-awesome
|
||||||
|
import "font-awesome/css/font-awesome.min.css";
|
||||||
import { setType } from "./types";
|
import { setType } from "./types";
|
||||||
import { emitter } from "@/utils/mitt";
|
import { emitter } from "@/utils/mitt";
|
||||||
import { useLayout } from "./hooks/useLayout";
|
import { useLayout } from "./hooks/useLayout";
|
||||||
@@ -70,7 +73,7 @@ let isAutoCloseSidebar = true;
|
|||||||
// 监听容器
|
// 监听容器
|
||||||
emitter.on("resize", ({ detail }) => {
|
emitter.on("resize", ({ detail }) => {
|
||||||
if (isMobile) return;
|
if (isMobile) return;
|
||||||
let { width } = detail;
|
const { width } = detail;
|
||||||
width <= 760 ? setTheme("vertical") : setTheme(useAppStoreHook().layout);
|
width <= 760 ? setTheme("vertical") : setTheme(useAppStoreHook().layout);
|
||||||
/** width app-wrapper类容器宽度
|
/** width app-wrapper类容器宽度
|
||||||
* 0 < width <= 760 隐藏侧边栏
|
* 0 < width <= 760 隐藏侧边栏
|
||||||
|
|||||||
@@ -20,7 +20,6 @@ const themeColors = {
|
|||||||
menuHover: "#4091f7",
|
menuHover: "#4091f7",
|
||||||
subMenuBg: "#0f0303",
|
subMenuBg: "#0f0303",
|
||||||
subMenuActiveBg: "#4091f7",
|
subMenuActiveBg: "#4091f7",
|
||||||
navTextColor: "#fff",
|
|
||||||
menuText: "rgb(254 254 254 / 65%)",
|
menuText: "rgb(254 254 254 / 65%)",
|
||||||
sidebarLogo: "#002140",
|
sidebarLogo: "#002140",
|
||||||
menuTitleHover: "#fff",
|
menuTitleHover: "#fff",
|
||||||
@@ -33,7 +32,6 @@ const themeColors = {
|
|||||||
menuHover: "#e0ebf6",
|
menuHover: "#e0ebf6",
|
||||||
subMenuBg: "#fff",
|
subMenuBg: "#fff",
|
||||||
subMenuActiveBg: "#e0ebf6",
|
subMenuActiveBg: "#e0ebf6",
|
||||||
navTextColor: "#7a80b4",
|
|
||||||
menuText: "#7a80b4",
|
menuText: "#7a80b4",
|
||||||
sidebarLogo: "#fff",
|
sidebarLogo: "#fff",
|
||||||
menuTitleHover: "#000",
|
menuTitleHover: "#000",
|
||||||
@@ -46,7 +44,6 @@ const themeColors = {
|
|||||||
menuHover: "#e13c39",
|
menuHover: "#e13c39",
|
||||||
subMenuBg: "#000",
|
subMenuBg: "#000",
|
||||||
subMenuActiveBg: "#e13c39",
|
subMenuActiveBg: "#e13c39",
|
||||||
navTextColor: "#red",
|
|
||||||
menuText: "rgb(254 254 254 / 65.1%)",
|
menuText: "rgb(254 254 254 / 65.1%)",
|
||||||
sidebarLogo: "#42090c",
|
sidebarLogo: "#42090c",
|
||||||
menuTitleHover: "#fff",
|
menuTitleHover: "#fff",
|
||||||
@@ -59,7 +56,6 @@ const themeColors = {
|
|||||||
menuHover: "#e85f33",
|
menuHover: "#e85f33",
|
||||||
subMenuBg: "#0f0603",
|
subMenuBg: "#0f0603",
|
||||||
subMenuActiveBg: "#e85f33",
|
subMenuActiveBg: "#e85f33",
|
||||||
navTextColor: "#fff",
|
|
||||||
menuText: "rgb(254 254 254 / 65%)",
|
menuText: "rgb(254 254 254 / 65%)",
|
||||||
sidebarLogo: "#441708",
|
sidebarLogo: "#441708",
|
||||||
menuTitleHover: "#fff",
|
menuTitleHover: "#fff",
|
||||||
@@ -72,7 +68,6 @@ const themeColors = {
|
|||||||
menuHover: "#f6da4d",
|
menuHover: "#f6da4d",
|
||||||
subMenuBg: "#0f0603",
|
subMenuBg: "#0f0603",
|
||||||
subMenuActiveBg: "#f6da4d",
|
subMenuActiveBg: "#f6da4d",
|
||||||
navTextColor: "#fff",
|
|
||||||
menuText: "rgb(254 254 254 / 65%)",
|
menuText: "rgb(254 254 254 / 65%)",
|
||||||
sidebarLogo: "#443b05",
|
sidebarLogo: "#443b05",
|
||||||
menuTitleHover: "#fff",
|
menuTitleHover: "#fff",
|
||||||
@@ -85,7 +80,6 @@ const themeColors = {
|
|||||||
menuHover: "#59bfc1",
|
menuHover: "#59bfc1",
|
||||||
subMenuBg: "#000",
|
subMenuBg: "#000",
|
||||||
subMenuActiveBg: "#59bfc1",
|
subMenuActiveBg: "#59bfc1",
|
||||||
navTextColor: "#7a80b4",
|
|
||||||
menuText: "#7a80b4",
|
menuText: "#7a80b4",
|
||||||
sidebarLogo: "#053434",
|
sidebarLogo: "#053434",
|
||||||
menuTitleHover: "#fff",
|
menuTitleHover: "#fff",
|
||||||
@@ -98,7 +92,6 @@ const themeColors = {
|
|||||||
menuHover: "#60ac80",
|
menuHover: "#60ac80",
|
||||||
subMenuBg: "#000",
|
subMenuBg: "#000",
|
||||||
subMenuActiveBg: "#60ac80",
|
subMenuActiveBg: "#60ac80",
|
||||||
navTextColor: "#7a80b4",
|
|
||||||
menuText: "#7a80b4",
|
menuText: "#7a80b4",
|
||||||
sidebarLogo: "#112f21",
|
sidebarLogo: "#112f21",
|
||||||
menuTitleHover: "#fff",
|
menuTitleHover: "#fff",
|
||||||
@@ -111,7 +104,6 @@ const themeColors = {
|
|||||||
menuHover: "#d84493",
|
menuHover: "#d84493",
|
||||||
subMenuBg: "#000",
|
subMenuBg: "#000",
|
||||||
subMenuActiveBg: "#d84493",
|
subMenuActiveBg: "#d84493",
|
||||||
navTextColor: "#7a80b4",
|
|
||||||
menuText: "#7a80b4",
|
menuText: "#7a80b4",
|
||||||
sidebarLogo: "#3f0d29",
|
sidebarLogo: "#3f0d29",
|
||||||
menuTitleHover: "#fff",
|
menuTitleHover: "#fff",
|
||||||
@@ -124,7 +116,6 @@ const themeColors = {
|
|||||||
menuHover: "#693ac9",
|
menuHover: "#693ac9",
|
||||||
subMenuBg: "#000",
|
subMenuBg: "#000",
|
||||||
subMenuActiveBg: "#693ac9",
|
subMenuActiveBg: "#693ac9",
|
||||||
navTextColor: "#7a80b4",
|
|
||||||
menuText: "#7a80b4",
|
menuText: "#7a80b4",
|
||||||
sidebarLogo: "#1f0c38",
|
sidebarLogo: "#1f0c38",
|
||||||
menuTitleHover: "#fff",
|
menuTitleHover: "#fff",
|
||||||
@@ -147,7 +138,6 @@ export const genScssMultipleScopeVars = (): MultipleScopeVarsItem[] => {
|
|||||||
$menuHover: ${themeColors[key].menuHover} !default;
|
$menuHover: ${themeColors[key].menuHover} !default;
|
||||||
$subMenuBg: ${themeColors[key].subMenuBg} !default;
|
$subMenuBg: ${themeColors[key].subMenuBg} !default;
|
||||||
$subMenuActiveBg: ${themeColors[key].subMenuActiveBg} !default;
|
$subMenuActiveBg: ${themeColors[key].subMenuActiveBg} !default;
|
||||||
$navTextColor: ${themeColors[key].navTextColor} !default;
|
|
||||||
$menuText: ${themeColors[key].menuText} !default;
|
$menuText: ${themeColors[key].menuText} !default;
|
||||||
$sidebarLogo: ${themeColors[key].sidebarLogo} !default;
|
$sidebarLogo: ${themeColors[key].sidebarLogo} !default;
|
||||||
$menuTitleHover: ${themeColors[key].menuTitleHover} !default;
|
$menuTitleHover: ${themeColors[key].menuTitleHover} !default;
|
||||||
|
|||||||
@@ -1,17 +1,20 @@
|
|||||||
|
import type { IconifyIcon } from "@iconify/vue";
|
||||||
|
import HomeFilled from "@iconify-icons/ep/home-filled";
|
||||||
|
|
||||||
export const routerArrays: Array<RouteConfigs> = [
|
export const routerArrays: Array<RouteConfigs> = [
|
||||||
{
|
{
|
||||||
path: "/welcome",
|
path: "/welcome",
|
||||||
parentPath: "/",
|
parentPath: "/",
|
||||||
meta: {
|
meta: {
|
||||||
title: "menus.hshome",
|
title: "menus.hshome",
|
||||||
icon: "home-filled"
|
icon: HomeFilled
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
export type routeMetaType = {
|
export type routeMetaType = {
|
||||||
title?: string;
|
title?: string;
|
||||||
icon?: string;
|
icon?: string | IconifyIcon;
|
||||||
showLink?: boolean;
|
showLink?: boolean;
|
||||||
savedPosition?: boolean;
|
savedPosition?: boolean;
|
||||||
auths?: Array<string>;
|
auths?: Array<string>;
|
||||||
@@ -32,7 +35,7 @@ export type multiTagsType = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type tagsViewsType = {
|
export type tagsViewsType = {
|
||||||
icon: string;
|
icon: string | IconifyIcon;
|
||||||
text: string;
|
text: string;
|
||||||
divided: boolean;
|
divided: boolean;
|
||||||
disabled: boolean;
|
disabled: boolean;
|
||||||
|
|||||||
10
src/main.ts
@@ -8,26 +8,19 @@ import { createApp, Directive } from "vue";
|
|||||||
import { MotionPlugin } from "@vueuse/motion";
|
import { MotionPlugin } from "@vueuse/motion";
|
||||||
import { useEcharts } from "@/plugins/echarts";
|
import { useEcharts } from "@/plugins/echarts";
|
||||||
import { useTable } from "@/plugins/vxe-table";
|
import { useTable } from "@/plugins/vxe-table";
|
||||||
import VirtualScroller from "vue-virtual-scroller";
|
|
||||||
import { injectResponsiveStorage } from "@/utils/responsive";
|
import { injectResponsiveStorage } from "@/utils/responsive";
|
||||||
|
|
||||||
import Table from "@pureadmin/table";
|
import Table from "@pureadmin/table";
|
||||||
import PureDescriptions from "@pureadmin/descriptions";
|
import PureDescriptions from "@pureadmin/descriptions";
|
||||||
|
|
||||||
import "animate.css";
|
|
||||||
// 引入重置样式
|
// 引入重置样式
|
||||||
import "./style/reset.scss";
|
import "./style/reset.scss";
|
||||||
// 导入公共样式
|
// 导入公共样式
|
||||||
import "./style/index.scss";
|
import "./style/index.scss";
|
||||||
import "element-plus/dist/index.css";
|
import "element-plus/dist/index.css";
|
||||||
import "@pureadmin/components/dist/index.css";
|
|
||||||
import "@pureadmin/components/dist/theme.css";
|
|
||||||
import "@pureadmin/components/dist/dark.scss";
|
|
||||||
// 导入字体图标
|
// 导入字体图标
|
||||||
import "./assets/iconfont/iconfont.js";
|
import "./assets/iconfont/iconfont.js";
|
||||||
import "./assets/iconfont/iconfont.css";
|
import "./assets/iconfont/iconfont.css";
|
||||||
import "v-contextmenu/dist/themes/default.css";
|
|
||||||
import "vue-virtual-scroller/dist/vue-virtual-scroller.css";
|
|
||||||
|
|
||||||
const app = createApp(App);
|
const app = createApp(App);
|
||||||
|
|
||||||
@@ -63,7 +56,6 @@ getServerConfig(app).then(async config => {
|
|||||||
.use(Table)
|
.use(Table)
|
||||||
.use(PureDescriptions)
|
.use(PureDescriptions)
|
||||||
.use(useTable)
|
.use(useTable)
|
||||||
.use(useEcharts)
|
.use(useEcharts);
|
||||||
.use(VirtualScroller);
|
|
||||||
app.mount("#app");
|
app.mount("#app");
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import type { App } from "vue";
|
import type { App } from "vue";
|
||||||
import * as echarts from "echarts/core";
|
import * as echarts from "echarts/core";
|
||||||
import { SVGRenderer } from "echarts/renderers";
|
import { CanvasRenderer } from "echarts/renderers";
|
||||||
import { PieChart, BarChart, LineChart } from "echarts/charts";
|
import { PieChart, BarChart, LineChart } from "echarts/charts";
|
||||||
import {
|
import {
|
||||||
GridComponent,
|
GridComponent,
|
||||||
@@ -20,7 +20,7 @@ use([
|
|||||||
PieChart,
|
PieChart,
|
||||||
BarChart,
|
BarChart,
|
||||||
LineChart,
|
LineChart,
|
||||||
SVGRenderer,
|
CanvasRenderer,
|
||||||
GridComponent,
|
GridComponent,
|
||||||
TitleComponent,
|
TitleComponent,
|
||||||
LegendComponent,
|
LegendComponent,
|
||||||
@@ -41,6 +41,7 @@ use([
|
|||||||
/**
|
/**
|
||||||
* @description 按需引入echarts
|
* @description 按需引入echarts
|
||||||
* @see {@link https://echarts.apache.org/handbook/zh/basics/import#%E6%8C%89%E9%9C%80%E5%BC%95%E5%85%A5-echarts-%E5%9B%BE%E8%A1%A8%E5%92%8C%E7%BB%84%E4%BB%B6}
|
* @see {@link https://echarts.apache.org/handbook/zh/basics/import#%E6%8C%89%E9%9C%80%E5%BC%95%E5%85%A5-echarts-%E5%9B%BE%E8%A1%A8%E5%92%8C%E7%BB%84%E4%BB%B6}
|
||||||
|
* @see 温馨提示:必须将 `$echarts` 添加到全局 `globalProperties` ,为了配合 https://pure-admin-utils.netlify.app/hooks/useEcharts/useEcharts.html 使用
|
||||||
*/
|
*/
|
||||||
export function useEcharts(app: App) {
|
export function useEcharts(app: App) {
|
||||||
app.config.globalProperties.$echarts = echarts;
|
app.config.globalProperties.$echarts = echarts;
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
// 多组件库的国际化和本地项目国际化兼容
|
// 多组件库的国际化和本地项目国际化兼容
|
||||||
import { App, WritableComputedRef } from "vue";
|
import { App, WritableComputedRef } from "vue";
|
||||||
import type { StorageConfigs } from "/#/index";
|
|
||||||
import { storageLocal } from "@pureadmin/utils";
|
import { storageLocal } from "@pureadmin/utils";
|
||||||
import { type I18n, createI18n } from "vue-i18n";
|
import { type I18n, createI18n } from "vue-i18n";
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ import "./index.scss";
|
|||||||
import XEUtils from "xe-utils";
|
import XEUtils from "xe-utils";
|
||||||
import { App, unref } from "vue";
|
import { App, unref } from "vue";
|
||||||
import { i18n } from "@/plugins/i18n";
|
import { i18n } from "@/plugins/i18n";
|
||||||
import "font-awesome/css/font-awesome.min.css";
|
|
||||||
import zh from "vxe-table/lib/locale/lang/zh-CN";
|
import zh from "vxe-table/lib/locale/lang/zh-CN";
|
||||||
import en from "vxe-table/lib/locale/lang/en-US";
|
import en from "vxe-table/lib/locale/lang/en-US";
|
||||||
|
|
||||||
|
|||||||
47
src/router/enums.ts
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
// 完整版菜单比较多,将 rank 抽离出来,在此方便维护
|
||||||
|
|
||||||
|
const home = 0, // 平台规定只有 home 路由的 rank 才能为 0 ,所以后端在返回 rank 的时候需要从 1 开始哦
|
||||||
|
doc = 1,
|
||||||
|
utils = 2,
|
||||||
|
table = 3,
|
||||||
|
components = 4,
|
||||||
|
able = 5,
|
||||||
|
frame = 6,
|
||||||
|
nested = 7,
|
||||||
|
result = 8,
|
||||||
|
error = 9,
|
||||||
|
list = 10,
|
||||||
|
permission = 11,
|
||||||
|
system = 12,
|
||||||
|
menuoverflow = 13,
|
||||||
|
tabs = 14,
|
||||||
|
formdesign = 15,
|
||||||
|
flowchart = 16,
|
||||||
|
ppt = 17,
|
||||||
|
editor = 18,
|
||||||
|
guide = 19,
|
||||||
|
about = 20;
|
||||||
|
|
||||||
|
export {
|
||||||
|
home,
|
||||||
|
doc,
|
||||||
|
utils,
|
||||||
|
table,
|
||||||
|
components,
|
||||||
|
able,
|
||||||
|
frame,
|
||||||
|
nested,
|
||||||
|
result,
|
||||||
|
error,
|
||||||
|
list,
|
||||||
|
permission,
|
||||||
|
system,
|
||||||
|
menuoverflow,
|
||||||
|
tabs,
|
||||||
|
formdesign,
|
||||||
|
flowchart,
|
||||||
|
ppt,
|
||||||
|
editor,
|
||||||
|
guide,
|
||||||
|
about
|
||||||
|
};
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
|
import "@/utils/sso";
|
||||||
import { getConfig } from "@/config";
|
import { getConfig } from "@/config";
|
||||||
import { toRouteType } from "./types";
|
|
||||||
import NProgress from "@/utils/progress";
|
import NProgress from "@/utils/progress";
|
||||||
import { findIndex } from "lodash-unified";
|
import { findIndex } from "lodash-unified";
|
||||||
import { transformI18n } from "@/plugins/i18n";
|
import { transformI18n } from "@/plugins/i18n";
|
||||||
@@ -22,44 +22,28 @@ import {
|
|||||||
formatTwoStageRoutes,
|
formatTwoStageRoutes,
|
||||||
formatFlatteningRoutes
|
formatFlatteningRoutes
|
||||||
} from "./utils";
|
} from "./utils";
|
||||||
import {
|
import { buildHierarchyTree } from "@/utils/tree";
|
||||||
buildHierarchyTree,
|
import { isUrl, openLink, storageSession } from "@pureadmin/utils";
|
||||||
openLink,
|
|
||||||
isUrl,
|
|
||||||
storageSession
|
|
||||||
} from "@pureadmin/utils";
|
|
||||||
|
|
||||||
import pptRouter from "./modules/ppt";
|
|
||||||
import homeRouter from "./modules/home";
|
|
||||||
import ableRouter from "./modules/able";
|
|
||||||
import listRouter from "./modules/list";
|
|
||||||
import aboutRouter from "./modules/about";
|
|
||||||
import errorRouter from "./modules/error";
|
|
||||||
import guideRouter from "./modules/guide";
|
|
||||||
import resultRouter from "./modules/result";
|
|
||||||
import editorRouter from "./modules/editor";
|
|
||||||
import nestedRouter from "./modules/nested";
|
|
||||||
import flowChartRouter from "./modules/flowchart";
|
|
||||||
import remainingRouter from "./modules/remaining";
|
import remainingRouter from "./modules/remaining";
|
||||||
import componentsRouter from "./modules/components";
|
|
||||||
import formDesignRouter from "./modules/formdesign";
|
/** 自动导入全部静态路由,无需再手动引入!匹配 src/router/modules 目录(任何嵌套级别)中具有 .ts 扩展名的所有文件,除了 remaining.ts 文件
|
||||||
|
* 如何匹配所有文件请看:https://github.com/mrmlnc/fast-glob#basic-syntax
|
||||||
|
* 如何排除文件请看:https://cn.vitejs.dev/guide/features.html#negative-patterns
|
||||||
|
*/
|
||||||
|
const modules: Record<string, any> = import.meta.glob(
|
||||||
|
["./modules/**/*.ts", "!./modules/**/remaining.ts"],
|
||||||
|
{
|
||||||
|
eager: true
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
/** 原始静态路由(未做任何处理) */
|
/** 原始静态路由(未做任何处理) */
|
||||||
const routes = [
|
const routes = [];
|
||||||
pptRouter,
|
|
||||||
homeRouter,
|
Object.keys(modules).forEach(key => {
|
||||||
ableRouter,
|
routes.push(modules[key].default);
|
||||||
listRouter,
|
});
|
||||||
aboutRouter,
|
|
||||||
errorRouter,
|
|
||||||
guideRouter,
|
|
||||||
resultRouter,
|
|
||||||
nestedRouter,
|
|
||||||
editorRouter,
|
|
||||||
flowChartRouter,
|
|
||||||
componentsRouter,
|
|
||||||
formDesignRouter
|
|
||||||
];
|
|
||||||
|
|
||||||
/** 导出处理后的静态路由(三级及以上的路由全部拍成二级) */
|
/** 导出处理后的静态路由(三级及以上的路由全部拍成二级) */
|
||||||
export const constantRoutes: Array<RouteRecordRaw> = formatTwoStageRoutes(
|
export const constantRoutes: Array<RouteRecordRaw> = formatTwoStageRoutes(
|
||||||
@@ -134,6 +118,10 @@ router.beforeEach((to: toRouteType, _from, next) => {
|
|||||||
else document.title = transformI18n(item.meta.title);
|
else document.title = transformI18n(item.meta.title);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
/** 如果已经登录并存在登录信息后不能跳转到路由白名单,而是继续保持在当前页面 */
|
||||||
|
function toCorrectRoute() {
|
||||||
|
whiteList.includes(to.fullPath) ? next(_from.fullPath) : next();
|
||||||
|
}
|
||||||
if (userInfo) {
|
if (userInfo) {
|
||||||
// 无权限跳转403页面
|
// 无权限跳转403页面
|
||||||
if (to.meta?.roles && !isOneOfArray(to.meta?.roles, userInfo?.roles)) {
|
if (to.meta?.roles && !isOneOfArray(to.meta?.roles, userInfo?.roles)) {
|
||||||
@@ -145,7 +133,7 @@ router.beforeEach((to: toRouteType, _from, next) => {
|
|||||||
openLink(to?.name as string);
|
openLink(to?.name as string);
|
||||||
NProgress.done();
|
NProgress.done();
|
||||||
} else {
|
} else {
|
||||||
next();
|
toCorrectRoute();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// 刷新
|
// 刷新
|
||||||
@@ -175,7 +163,7 @@ router.beforeEach((to: toRouteType, _from, next) => {
|
|||||||
}
|
}
|
||||||
router.push(to.fullPath);
|
router.push(to.fullPath);
|
||||||
});
|
});
|
||||||
next();
|
toCorrectRoute();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (to.path !== "/login") {
|
if (to.path !== "/login") {
|
||||||
|
|||||||