mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-04 07:27:41 +08:00
Compare commits
6 Commits
ab1c7f8bcc
...
0a46a04c67
Author | SHA1 | Date | |
---|---|---|---|
|
0a46a04c67 | ||
|
4db365038c | ||
|
b7d3dc1170 | ||
|
a9ee9ebcf9 | ||
|
b004c224c2 | ||
|
399d3b2987 |
@ -17,6 +17,7 @@ const include = [
|
|||||||
"qrcode",
|
"qrcode",
|
||||||
"intro.js",
|
"intro.js",
|
||||||
"vue-i18n",
|
"vue-i18n",
|
||||||
|
"deep-chat",
|
||||||
"vxe-table",
|
"vxe-table",
|
||||||
"vue-types",
|
"vue-types",
|
||||||
"js-cookie",
|
"js-cookie",
|
||||||
@ -28,6 +29,7 @@ const include = [
|
|||||||
"sortablejs",
|
"sortablejs",
|
||||||
"swiper/vue",
|
"swiper/vue",
|
||||||
"mint-filter",
|
"mint-filter",
|
||||||
|
"highlight.js",
|
||||||
"@vueuse/core",
|
"@vueuse/core",
|
||||||
"vue3-danmaku",
|
"vue3-danmaku",
|
||||||
"v-contextmenu",
|
"v-contextmenu",
|
||||||
@ -55,8 +57,8 @@ const include = [
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 在预构建中强制排除的依赖项
|
* 在预构建中强制排除的依赖项
|
||||||
* 温馨提示:所有以 `@iconify-icons/` 开头引入的的本地图标模块,都应该加入到下面的 `exclude` 里,因为平台推荐的使用方式是哪里需要哪里引入而且都是单个的引入,不需要预构建,直接让浏览器加载就好
|
* 温馨提示:平台推荐的使用方式是哪里需要哪里引入而且都是单个的引入,不需要预构建,直接让浏览器加载就好
|
||||||
*/
|
*/
|
||||||
const exclude = ["@iconify-icons/ep", "@iconify-icons/ri"];
|
const exclude = ["@iconify/json"];
|
||||||
|
|
||||||
export { include, exclude };
|
export { include, exclude };
|
||||||
|
@ -3,6 +3,7 @@ import vue from "@vitejs/plugin-vue";
|
|||||||
import { pathResolve } from "./utils";
|
import { pathResolve } from "./utils";
|
||||||
import { viteBuildInfo } from "./info";
|
import { viteBuildInfo } from "./info";
|
||||||
import svgLoader from "vite-svg-loader";
|
import svgLoader from "vite-svg-loader";
|
||||||
|
import Icons from "unplugin-icons/vite";
|
||||||
import type { PluginOption } from "vite";
|
import type { PluginOption } from "vite";
|
||||||
import vueJsx from "@vitejs/plugin-vue-jsx";
|
import vueJsx from "@vitejs/plugin-vue-jsx";
|
||||||
import tailwindcss from "@tailwindcss/vite";
|
import tailwindcss from "@tailwindcss/vite";
|
||||||
@ -21,7 +22,13 @@ export function getPluginsList(
|
|||||||
const lifecycle = process.env.npm_lifecycle_event;
|
const lifecycle = process.env.npm_lifecycle_event;
|
||||||
return [
|
return [
|
||||||
tailwindcss(),
|
tailwindcss(),
|
||||||
vue(),
|
vue({
|
||||||
|
template: {
|
||||||
|
compilerOptions: {
|
||||||
|
isCustomElement: tag => tag === "deep-chat"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}),
|
||||||
// jsx、tsx语法支持
|
// jsx、tsx语法支持
|
||||||
vueJsx(),
|
vueJsx(),
|
||||||
VueI18nPlugin({
|
VueI18nPlugin({
|
||||||
@ -53,6 +60,11 @@ export function getPluginsList(
|
|||||||
}),
|
}),
|
||||||
// svg组件化支持
|
// svg组件化支持
|
||||||
svgLoader(),
|
svgLoader(),
|
||||||
|
// 自动按需加载图标
|
||||||
|
Icons({
|
||||||
|
compiler: "vue3",
|
||||||
|
scale: 1
|
||||||
|
}),
|
||||||
VITE_CDN ? cdn : null,
|
VITE_CDN ? cdn : null,
|
||||||
configCompressPlugin(VITE_COMPRESSION),
|
configCompressPlugin(VITE_COMPRESSION),
|
||||||
// 线上环境删除console
|
// 线上环境删除console
|
||||||
|
@ -3,21 +3,21 @@ import pluginVue from "eslint-plugin-vue";
|
|||||||
import * as parserVue from "vue-eslint-parser";
|
import * as parserVue from "vue-eslint-parser";
|
||||||
import configPrettier from "eslint-config-prettier";
|
import configPrettier from "eslint-config-prettier";
|
||||||
import pluginPrettier from "eslint-plugin-prettier";
|
import pluginPrettier from "eslint-plugin-prettier";
|
||||||
import { defineFlatConfig } from "eslint-define-config";
|
import { defineConfig, globalIgnores } from "eslint/config";
|
||||||
import * as parserTypeScript from "@typescript-eslint/parser";
|
import * as parserTypeScript from "@typescript-eslint/parser";
|
||||||
import pluginTypeScript from "@typescript-eslint/eslint-plugin";
|
import pluginTypeScript from "@typescript-eslint/eslint-plugin";
|
||||||
|
|
||||||
export default defineFlatConfig([
|
export default defineConfig([
|
||||||
|
globalIgnores([
|
||||||
|
"**/.*",
|
||||||
|
"dist/*",
|
||||||
|
"*.d.ts",
|
||||||
|
"public/*",
|
||||||
|
"src/assets/**",
|
||||||
|
"src/**/iconfont/**"
|
||||||
|
]),
|
||||||
{
|
{
|
||||||
...js.configs.recommended,
|
...js.configs.recommended,
|
||||||
ignores: [
|
|
||||||
"**/.*",
|
|
||||||
"dist/*",
|
|
||||||
"*.d.ts",
|
|
||||||
"public/*",
|
|
||||||
"src/assets/**",
|
|
||||||
"src/**/iconfont/**"
|
|
||||||
],
|
|
||||||
languageOptions: {
|
languageOptions: {
|
||||||
globals: {
|
globals: {
|
||||||
// index.d.ts
|
// index.d.ts
|
||||||
|
105
package.json
105
package.json
@ -54,24 +54,26 @@
|
|||||||
"@logicflow/extension": "^1.2.28",
|
"@logicflow/extension": "^1.2.28",
|
||||||
"@pureadmin/descriptions": "^1.2.1",
|
"@pureadmin/descriptions": "^1.2.1",
|
||||||
"@pureadmin/table": "^3.2.1",
|
"@pureadmin/table": "^3.2.1",
|
||||||
"@pureadmin/utils": "^2.5.0",
|
"@pureadmin/utils": "^2.6.0",
|
||||||
"@vue-flow/background": "^1.3.2",
|
"@vue-flow/background": "^1.3.2",
|
||||||
"@vue-flow/core": "^1.42.0",
|
"@vue-flow/core": "^1.42.4",
|
||||||
"@vueuse/core": "^12.4.0",
|
"@vueuse/core": "^12.8.2",
|
||||||
"@vueuse/motion": "^2.2.6",
|
"@vueuse/motion": "^2.2.6",
|
||||||
"@wangeditor/editor": "^5.1.23",
|
"@wangeditor/editor": "^5.1.23",
|
||||||
"@wangeditor/editor-for-vue": "^5.1.12",
|
"@wangeditor/editor-for-vue": "^5.1.12",
|
||||||
"@zxcvbn-ts/core": "^3.0.4",
|
"@zxcvbn-ts/core": "^3.0.4",
|
||||||
"animate.css": "^4.1.1",
|
"animate.css": "^4.1.1",
|
||||||
"axios": "^1.7.9",
|
"axios": "^1.8.4",
|
||||||
"china-area-data": "^5.0.1",
|
"china-area-data": "^5.0.1",
|
||||||
"codemirror": "^5.65.18",
|
"codemirror": "^5.65.19",
|
||||||
"codemirror-editor-vue3": "^2.8.0",
|
"codemirror-editor-vue3": "^2.8.0",
|
||||||
"cropperjs": "^1.6.2",
|
"cropperjs": "^1.6.2",
|
||||||
"dayjs": "^1.11.13",
|
"dayjs": "^1.11.13",
|
||||||
|
"deep-chat": "^2.1.1",
|
||||||
"echarts": "^5.6.0",
|
"echarts": "^5.6.0",
|
||||||
"el-table-infinite-scroll": "^3.0.6",
|
"el-table-infinite-scroll": "^3.0.6",
|
||||||
"element-plus": "^2.9.3",
|
"element-plus": "^2.9.7",
|
||||||
|
"highlight.js": "^11.11.1",
|
||||||
"intro.js": "^7.2.0",
|
"intro.js": "^7.2.0",
|
||||||
"js-cookie": "^3.0.5",
|
"js-cookie": "^3.0.5",
|
||||||
"jsbarcode": "^3.11.6",
|
"jsbarcode": "^3.11.6",
|
||||||
@ -81,25 +83,25 @@
|
|||||||
"mqtt": "4.3.7",
|
"mqtt": "4.3.7",
|
||||||
"nprogress": "^0.2.0",
|
"nprogress": "^0.2.0",
|
||||||
"path-browserify": "^1.0.1",
|
"path-browserify": "^1.0.1",
|
||||||
"pinia": "^2.3.0",
|
"pinia": "^3.0.1",
|
||||||
"pinyin-pro": "^3.26.0",
|
"pinyin-pro": "^3.26.0",
|
||||||
"plus-pro-components": "^0.1.20",
|
"plus-pro-components": "^0.1.21",
|
||||||
"qrcode": "^1.5.4",
|
"qrcode": "^1.5.4",
|
||||||
"qs": "^6.14.0",
|
"qs": "^6.14.0",
|
||||||
"responsive-storage": "^2.2.0",
|
"responsive-storage": "^2.2.0",
|
||||||
"sortablejs": "^1.15.6",
|
"sortablejs": "^1.15.6",
|
||||||
"swiper": "^11.2.1",
|
"swiper": "^11.2.6",
|
||||||
"typeit": "^8.8.7",
|
"typeit": "^8.8.7",
|
||||||
"v-contextmenu": "^3.2.0",
|
"v-contextmenu": "^3.2.0",
|
||||||
"v3-infinite-loading": "^1.3.2",
|
"v3-infinite-loading": "^1.3.2",
|
||||||
"vditor": "^3.10.8",
|
"vditor": "^3.10.9",
|
||||||
"version-rocket": "^1.7.4",
|
"version-rocket": "^1.7.4",
|
||||||
"vue": "^3.5.13",
|
"vue": "^3.5.13",
|
||||||
"vue-i18n": "^11.0.1",
|
"vue-i18n": "^11.1.2",
|
||||||
"vue-json-pretty": "^2.4.0",
|
"vue-json-pretty": "^2.4.0",
|
||||||
"vue-pdf-embed": "^2.1.1",
|
"vue-pdf-embed": "^2.1.2",
|
||||||
"vue-router": "^4.5.0",
|
"vue-router": "^4.5.0",
|
||||||
"vue-tippy": "^6.6.0",
|
"vue-tippy": "^6.7.0",
|
||||||
"vue-types": "^5.1.3",
|
"vue-types": "^5.1.3",
|
||||||
"vue-virtual-scroller": "2.0.0-beta.8",
|
"vue-virtual-scroller": "2.0.0-beta.8",
|
||||||
"vue-waterfall-plugin-next": "^2.6.5",
|
"vue-waterfall-plugin-next": "^2.6.5",
|
||||||
@ -107,64 +109,63 @@
|
|||||||
"vue3-puzzle-vcode": "^1.1.7",
|
"vue3-puzzle-vcode": "^1.1.7",
|
||||||
"vuedraggable": "^4.1.0",
|
"vuedraggable": "^4.1.0",
|
||||||
"vxe-table": "4.6.25",
|
"vxe-table": "4.6.25",
|
||||||
"wavesurfer.js": "^7.8.16",
|
"wavesurfer.js": "^7.9.4",
|
||||||
"xgplayer": "^3.0.20",
|
"xgplayer": "^3.0.21",
|
||||||
"xlsx": "^0.18.5"
|
"xlsx": "^0.18.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@commitlint/cli": "^19.6.1",
|
"@commitlint/cli": "^19.8.0",
|
||||||
"@commitlint/config-conventional": "^19.6.0",
|
"@commitlint/config-conventional": "^19.8.0",
|
||||||
"@commitlint/types": "^19.5.0",
|
"@commitlint/types": "^19.8.0",
|
||||||
"@eslint/js": "^9.18.0",
|
"@eslint/js": "^9.23.0",
|
||||||
"@faker-js/faker": "^9.3.0",
|
"@faker-js/faker": "^9.6.0",
|
||||||
"@iconify-icons/ep": "^1.2.12",
|
"@iconify/json": "^2.2.321",
|
||||||
"@iconify-icons/ri": "^1.2.10",
|
|
||||||
"@iconify/vue": "4.2.0",
|
"@iconify/vue": "4.2.0",
|
||||||
"@intlify/unplugin-vue-i18n": "^6.0.3",
|
"@intlify/unplugin-vue-i18n": "^6.0.5",
|
||||||
"@tailwindcss/vite": "^4.0.13",
|
"@tailwindcss/vite": "^4.0.17",
|
||||||
"@types/codemirror": "^5.60.15",
|
"@types/codemirror": "^5.60.15",
|
||||||
"@types/dagre": "^0.7.52",
|
"@types/dagre": "^0.7.52",
|
||||||
"@types/intro.js": "^5.1.5",
|
"@types/intro.js": "^5.1.5",
|
||||||
"@types/js-cookie": "^3.0.6",
|
"@types/js-cookie": "^3.0.6",
|
||||||
"@types/node": "^20.17.13",
|
"@types/node": "^20.17.28",
|
||||||
"@types/nprogress": "^0.2.3",
|
"@types/nprogress": "^0.2.3",
|
||||||
"@types/path-browserify": "^1.0.3",
|
"@types/path-browserify": "^1.0.3",
|
||||||
"@types/qrcode": "^1.5.5",
|
"@types/qrcode": "^1.5.5",
|
||||||
"@types/qs": "^6.9.18",
|
"@types/qs": "^6.9.18",
|
||||||
"@types/sortablejs": "^1.15.8",
|
"@types/sortablejs": "^1.15.8",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.20.0",
|
"@typescript-eslint/eslint-plugin": "^8.28.0",
|
||||||
"@typescript-eslint/parser": "^8.20.0",
|
"@typescript-eslint/parser": "^8.28.0",
|
||||||
"@vitejs/plugin-vue": "^5.2.1",
|
"@vitejs/plugin-vue": "^5.2.3",
|
||||||
"@vitejs/plugin-vue-jsx": "^4.1.1",
|
"@vitejs/plugin-vue-jsx": "^4.1.2",
|
||||||
"boxen": "^8.0.1",
|
"boxen": "^8.0.1",
|
||||||
"code-inspector-plugin": "^0.19.2",
|
"code-inspector-plugin": "^0.20.7",
|
||||||
"cssnano": "^7.0.6",
|
"cssnano": "^7.0.6",
|
||||||
"dagre": "^0.8.5",
|
"dagre": "^0.8.5",
|
||||||
"eslint": "^9.18.0",
|
"eslint": "^9.23.0",
|
||||||
"eslint-config-prettier": "^10.0.1",
|
"eslint-config-prettier": "^10.1.1",
|
||||||
"eslint-define-config": "^2.1.0",
|
"eslint-plugin-prettier": "^5.2.5",
|
||||||
"eslint-plugin-prettier": "^5.2.1",
|
"eslint-plugin-vue": "^9.33.0",
|
||||||
"eslint-plugin-vue": "^9.32.0",
|
|
||||||
"gradient-string": "^3.0.0",
|
"gradient-string": "^3.0.0",
|
||||||
"husky": "^9.1.7",
|
"husky": "^9.1.7",
|
||||||
"lint-staged": "^15.3.0",
|
"lint-staged": "^15.5.0",
|
||||||
"postcss": "^8.5.1",
|
"postcss": "^8.5.3",
|
||||||
"postcss-html": "^1.8.0",
|
"postcss-html": "^1.8.0",
|
||||||
"postcss-load-config": "^6.0.1",
|
"postcss-load-config": "^6.0.1",
|
||||||
"postcss-scss": "^4.0.9",
|
"postcss-scss": "^4.0.9",
|
||||||
"prettier": "^3.4.2",
|
"prettier": "^3.5.3",
|
||||||
"rimraf": "^6.0.1",
|
"rimraf": "^6.0.1",
|
||||||
"rollup-plugin-visualizer": "^5.14.0",
|
"rollup-plugin-visualizer": "^5.14.0",
|
||||||
"sass": "^1.83.4",
|
"sass": "^1.86.0",
|
||||||
"stylelint": "^16.13.2",
|
"stylelint": "^16.17.0",
|
||||||
"stylelint-config-recess-order": "^5.1.1",
|
"stylelint-config-recess-order": "^6.0.0",
|
||||||
"stylelint-config-recommended-vue": "^1.5.0",
|
"stylelint-config-recommended-vue": "^1.6.0",
|
||||||
"stylelint-config-standard-scss": "^14.0.0",
|
"stylelint-config-standard-scss": "^14.0.0",
|
||||||
"stylelint-prettier": "^5.0.2",
|
"stylelint-prettier": "^5.0.3",
|
||||||
"svgo": "^3.3.2",
|
"svgo": "^3.3.2",
|
||||||
"tailwindcss": "^4.0.13",
|
"tailwindcss": "^4.0.17",
|
||||||
"typescript": "^5.7.3",
|
"typescript": "^5.8.2",
|
||||||
"vite": "^6.0.7",
|
"unplugin-icons": "^22.1.0",
|
||||||
|
"vite": "^6.2.3",
|
||||||
"vite-plugin-cdn-import": "^1.0.1",
|
"vite-plugin-cdn-import": "^1.0.1",
|
||||||
"vite-plugin-compression": "^0.5.1",
|
"vite-plugin-compression": "^0.5.1",
|
||||||
"vite-plugin-fake-server": "^2.2.0",
|
"vite-plugin-fake-server": "^2.2.0",
|
||||||
@ -172,7 +173,7 @@
|
|||||||
"vite-plugin-router-warn": "^1.0.0",
|
"vite-plugin-router-warn": "^1.0.0",
|
||||||
"vite-svg-loader": "^5.1.0",
|
"vite-svg-loader": "^5.1.0",
|
||||||
"vue-eslint-parser": "^9.4.3",
|
"vue-eslint-parser": "^9.4.3",
|
||||||
"vue-tsc": "^2.2.0"
|
"vue-tsc": "^2.2.8"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=22.0.0",
|
"node": "^18.18.0 || ^20.9.0 || >=22.0.0",
|
||||||
@ -196,6 +197,14 @@
|
|||||||
"allowedVersions": {
|
"allowedVersions": {
|
||||||
"eslint": "9"
|
"eslint": "9"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"onlyBuiltDependencies": [
|
||||||
|
"@parcel/watcher",
|
||||||
|
"core-js",
|
||||||
|
"es5-ext",
|
||||||
|
"esbuild",
|
||||||
|
"typeit",
|
||||||
|
"vue-demi"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
3946
pnpm-lock.yaml
generated
3946
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -8,8 +8,8 @@ import {
|
|||||||
} from "./index";
|
} from "./index";
|
||||||
import { ref, computed } from "vue";
|
import { ref, computed } from "vue";
|
||||||
import { isFunction } from "@pureadmin/utils";
|
import { isFunction } from "@pureadmin/utils";
|
||||||
import Fullscreen from "@iconify-icons/ri/fullscreen-fill";
|
import Fullscreen from "~icons/ri/fullscreen-fill";
|
||||||
import ExitFullscreen from "@iconify-icons/ri/fullscreen-exit-fill";
|
import ExitFullscreen from "~icons/ri/fullscreen-exit-fill";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "ReDialog"
|
name: "ReDialog"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
import { IconJson } from "@/components/ReIcon/data";
|
import { IconJson } from "@/components/ReIcon/data";
|
||||||
import { cloneDeep, isAllEmpty } from "@pureadmin/utils";
|
import { cloneDeep, isAllEmpty } from "@pureadmin/utils";
|
||||||
import { ref, computed, CSSProperties, watch } from "vue";
|
import { ref, computed, CSSProperties, watch } from "vue";
|
||||||
import Search from "@iconify-icons/ri/search-eye-line";
|
import Search from "~icons/ri/search-eye-line";
|
||||||
|
|
||||||
type ParameterCSSProperties = (item?: string) => CSSProperties | undefined;
|
type ParameterCSSProperties = (item?: string) => CSSProperties | undefined;
|
||||||
|
|
||||||
@ -219,8 +219,8 @@ watch(
|
|||||||
&:hover {
|
&:hover {
|
||||||
color: var(--el-color-primary);
|
color: var(--el-color-primary);
|
||||||
border-color: var(--el-color-primary);
|
border-color: var(--el-color-primary);
|
||||||
transition: all 0.4s;
|
|
||||||
transform: scaleX(1.05);
|
transform: scaleX(1.05);
|
||||||
|
transition: all 0.4s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import type { iconType } from "./types";
|
import type { iconType } from "./types";
|
||||||
import { h, defineComponent, type Component } from "vue";
|
import { h, defineComponent, type Component } from "vue";
|
||||||
import { IconifyIconOnline, IconifyIconOffline, FontIcon } from "../index";
|
import { FontIcon, IconifyIconOnline, IconifyIconOffline } from "../index";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 支持 `iconfont`、自定义 `svg` 以及 `iconify` 中所有的图标
|
* 支持 `iconfont`、自定义 `svg` 以及 `iconify` 中所有的图标
|
||||||
@ -52,7 +52,7 @@ export function useRenderIcon(icon: any, attrs?: iconType): Component {
|
|||||||
const IconifyIcon =
|
const IconifyIcon =
|
||||||
icon && icon.includes(":") ? IconifyIconOnline : IconifyIconOffline;
|
icon && icon.includes(":") ? IconifyIconOnline : IconifyIconOffline;
|
||||||
return h(IconifyIcon, {
|
return h(IconifyIcon, {
|
||||||
icon: icon,
|
icon,
|
||||||
...attrs
|
...attrs
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -13,19 +13,35 @@ export default defineComponent({
|
|||||||
render() {
|
render() {
|
||||||
if (typeof this.icon === "object") addIcon(this.icon, this.icon);
|
if (typeof this.icon === "object") addIcon(this.icon, this.icon);
|
||||||
const attrs = this.$attrs;
|
const attrs = this.$attrs;
|
||||||
return h(
|
if (typeof this.icon === "string") {
|
||||||
IconifyIcon,
|
return h(
|
||||||
{
|
IconifyIcon,
|
||||||
icon: this.icon,
|
{
|
||||||
"aria-hidden": false,
|
icon: this.icon,
|
||||||
style: attrs?.style
|
"aria-hidden": false,
|
||||||
? Object.assign(attrs.style, { outline: "none" })
|
style: attrs?.style
|
||||||
: { outline: "none" },
|
? Object.assign(attrs.style, { outline: "none" })
|
||||||
...attrs
|
: { outline: "none" },
|
||||||
},
|
...attrs
|
||||||
{
|
},
|
||||||
default: () => []
|
{
|
||||||
}
|
default: () => []
|
||||||
);
|
}
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
return h(
|
||||||
|
this.icon,
|
||||||
|
{
|
||||||
|
"aria-hidden": false,
|
||||||
|
style: attrs?.style
|
||||||
|
? Object.assign(attrs.style, { outline: "none" })
|
||||||
|
: { outline: "none" },
|
||||||
|
...attrs
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: () => []
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -1,70 +1,87 @@
|
|||||||
// 这里存放本地图标,在 src/layout/index.vue 文件中加载,避免在首启动加载
|
// 这里存放本地图标,在 src/layout/index.vue 文件中加载,避免在首启动加载
|
||||||
|
import { getSvgInfo } from "@pureadmin/utils";
|
||||||
import { addIcon } from "@iconify/vue/dist/offline";
|
import { addIcon } from "@iconify/vue/dist/offline";
|
||||||
|
|
||||||
|
// https://icon-sets.iconify.design/ep/?keyword=ep
|
||||||
|
import EpMenu from "~icons/ep/menu?raw";
|
||||||
|
import EpEdit from "~icons/ep/edit?raw";
|
||||||
|
import EpGuide from "~icons/ep/guide?raw";
|
||||||
|
import EpSetUp from "~icons/ep/set-up?raw";
|
||||||
|
import EpMonitor from "~icons/ep/monitor?raw";
|
||||||
|
import EpLollipop from "~icons/ep/lollipop?raw";
|
||||||
|
import EpHistogram from "~icons/ep/histogram?raw";
|
||||||
|
import EpHomeFilled from "~icons/ep/home-filled?raw";
|
||||||
|
|
||||||
|
// https://icon-sets.iconify.design/ri/?keyword=ri
|
||||||
|
import RiMindMap from "~icons/ri/mind-map?raw";
|
||||||
|
import RiAdminFill from "~icons/ri/admin-fill?raw";
|
||||||
|
import RiTableLine from "~icons/ri/table-line?raw";
|
||||||
|
import RiLinksFill from "~icons/ri/links-fill?raw";
|
||||||
|
import RiAdminLine from "~icons/ri/admin-line?raw";
|
||||||
|
import RiListCheck from "~icons/ri/list-check?raw";
|
||||||
|
import RiSearchLine from "~icons/ri/search-line?raw";
|
||||||
|
import RiWindowLine from "~icons/ri/window-line?raw";
|
||||||
|
import RiUbuntuFill from "~icons/ri/ubuntu-fill?raw";
|
||||||
|
import RiHistoryFill from "~icons/ri/history-fill?raw";
|
||||||
|
import RiEditBoxLine from "~icons/ri/edit-box-line?raw";
|
||||||
|
import RiCodeBoxLine from "~icons/ri/code-box-line?raw";
|
||||||
|
import RiArtboardLine from "~icons/ri/artboard-line?raw";
|
||||||
|
import RiMarkdownLine from "~icons/ri/markdown-line?raw";
|
||||||
|
import RiFileInfoLine from "~icons/ri/file-info-line?raw";
|
||||||
|
import RiBankCardLine from "~icons/ri/bank-card-line?raw";
|
||||||
|
import RiFilePpt2Line from "~icons/ri/file-ppt-2-line?raw";
|
||||||
|
import RiGitBranchLine from "~icons/ri/git-branch-line?raw";
|
||||||
|
import RiSettings3Line from "~icons/ri/settings-3-line?raw";
|
||||||
|
import RiUserVoiceLine from "~icons/ri/user-voice-line?raw";
|
||||||
|
import RiBookmark2Line from "~icons/ri/bookmark-2-line?raw";
|
||||||
|
import RiFileSearchLine from "~icons/ri/file-search-line?raw";
|
||||||
|
import RiChatSearchLine from "~icons/ri/chat-search-line?raw";
|
||||||
|
import RiInformationLine from "~icons/ri/information-line?raw";
|
||||||
|
import RiTerminalWindowLine from "~icons/ri/terminal-window-line?raw";
|
||||||
|
import RiCheckboxCircleLine from "~icons/ri/checkbox-circle-line?raw";
|
||||||
|
import RiBarChartHorizontalLine from "~icons/ri/bar-chart-horizontal-line?raw";
|
||||||
|
|
||||||
|
const icons = [
|
||||||
|
// Element Plus Icon: https://github.com/element-plus/element-plus-icons
|
||||||
|
["ep/menu", EpMenu],
|
||||||
|
["ep/edit", EpEdit],
|
||||||
|
["ep/guide", EpGuide],
|
||||||
|
["ep/set-up", EpSetUp],
|
||||||
|
["ep/monitor", EpMonitor],
|
||||||
|
["ep/lollipop", EpLollipop],
|
||||||
|
["ep/histogram", EpHistogram],
|
||||||
|
["ep/home-filled", EpHomeFilled],
|
||||||
|
// Remix Icon: https://github.com/Remix-Design/RemixIcon
|
||||||
|
["ri/mind-map", RiMindMap],
|
||||||
|
["ri/admin-fill", RiAdminFill],
|
||||||
|
["ri/links-fill", RiTableLine],
|
||||||
|
["ri/table-line", RiLinksFill],
|
||||||
|
["ri/admin-line", RiAdminLine],
|
||||||
|
["ri/list-check", RiListCheck],
|
||||||
|
["ri/search-line", RiSearchLine],
|
||||||
|
["ri/window-line", RiWindowLine],
|
||||||
|
["ri/ubuntu-fill", RiUbuntuFill],
|
||||||
|
["ri/history-fill", RiHistoryFill],
|
||||||
|
["ri/edit-box-line", RiEditBoxLine],
|
||||||
|
["ri/code-box-line", RiCodeBoxLine],
|
||||||
|
["ri/artboard-line", RiArtboardLine],
|
||||||
|
["ri/markdown-line", RiMarkdownLine],
|
||||||
|
["ri/file-info-line", RiFileInfoLine],
|
||||||
|
["ri/bank-card-line", RiBankCardLine],
|
||||||
|
["ri/file-ppt-2-line", RiFilePpt2Line],
|
||||||
|
["ri/git-branch-line", RiGitBranchLine],
|
||||||
|
["ri/settings-3-line", RiSettings3Line],
|
||||||
|
["ri/user-voice-line", RiUserVoiceLine],
|
||||||
|
["ri/bookmark-2-line", RiBookmark2Line],
|
||||||
|
["ri/file-search-line", RiFileSearchLine],
|
||||||
|
["ri/chat-search-line", RiChatSearchLine],
|
||||||
|
["ri/information-line", RiInformationLine],
|
||||||
|
["ri/terminal-window-line", RiTerminalWindowLine],
|
||||||
|
["ri/checkbox-circle-line", RiCheckboxCircleLine],
|
||||||
|
["ri/bar-chart-horizontal-line", RiBarChartHorizontalLine]
|
||||||
|
];
|
||||||
|
|
||||||
// 本地菜单图标,后端在路由的 icon 中返回对应的图标字符串并且前端在此处使用 addIcon 添加即可渲染菜单图标
|
// 本地菜单图标,后端在路由的 icon 中返回对应的图标字符串并且前端在此处使用 addIcon 添加即可渲染菜单图标
|
||||||
// @iconify-icons/ep
|
icons.forEach(([name, icon]) => {
|
||||||
import Menu from "@iconify-icons/ep/menu";
|
addIcon(name as string, getSvgInfo(icon as string));
|
||||||
import Edit from "@iconify-icons/ep/edit";
|
});
|
||||||
import SetUp from "@iconify-icons/ep/set-up";
|
|
||||||
import Guide from "@iconify-icons/ep/guide";
|
|
||||||
import Monitor from "@iconify-icons/ep/monitor";
|
|
||||||
import Lollipop from "@iconify-icons/ep/lollipop";
|
|
||||||
import Histogram from "@iconify-icons/ep/histogram";
|
|
||||||
import HomeFilled from "@iconify-icons/ep/home-filled";
|
|
||||||
addIcon("ep:menu", Menu);
|
|
||||||
addIcon("ep:edit", Edit);
|
|
||||||
addIcon("ep:set-up", SetUp);
|
|
||||||
addIcon("ep:guide", Guide);
|
|
||||||
addIcon("ep:monitor", Monitor);
|
|
||||||
addIcon("ep:lollipop", Lollipop);
|
|
||||||
addIcon("ep:histogram", Histogram);
|
|
||||||
addIcon("ep:home-filled", HomeFilled);
|
|
||||||
// @iconify-icons/ri
|
|
||||||
import Tag from "@iconify-icons/ri/bookmark-2-line";
|
|
||||||
import Ppt from "@iconify-icons/ri/file-ppt-2-line";
|
|
||||||
import Card from "@iconify-icons/ri/bank-card-line";
|
|
||||||
import Role from "@iconify-icons/ri/admin-fill";
|
|
||||||
import Info from "@iconify-icons/ri/file-info-line";
|
|
||||||
import Dept from "@iconify-icons/ri/git-branch-line";
|
|
||||||
import Table from "@iconify-icons/ri/table-line";
|
|
||||||
import Links from "@iconify-icons/ri/links-fill";
|
|
||||||
import Search from "@iconify-icons/ri/search-line";
|
|
||||||
import FlUser from "@iconify-icons/ri/admin-line";
|
|
||||||
import Setting from "@iconify-icons/ri/settings-3-line";
|
|
||||||
import MindMap from "@iconify-icons/ri/mind-map";
|
|
||||||
import BarChart from "@iconify-icons/ri/bar-chart-horizontal-line";
|
|
||||||
import LoginLog from "@iconify-icons/ri/window-line";
|
|
||||||
import Artboard from "@iconify-icons/ri/artboard-line";
|
|
||||||
import SystemLog from "@iconify-icons/ri/file-search-line";
|
|
||||||
import ListCheck from "@iconify-icons/ri/list-check";
|
|
||||||
import UbuntuFill from "@iconify-icons/ri/ubuntu-fill";
|
|
||||||
import OnlineUser from "@iconify-icons/ri/user-voice-line";
|
|
||||||
import EditBoxLine from "@iconify-icons/ri/edit-box-line";
|
|
||||||
import OperationLog from "@iconify-icons/ri/history-fill";
|
|
||||||
import InformationLine from "@iconify-icons/ri/information-line";
|
|
||||||
import TerminalWindowLine from "@iconify-icons/ri/terminal-window-line";
|
|
||||||
import CheckboxCircleLine from "@iconify-icons/ri/checkbox-circle-line";
|
|
||||||
addIcon("ri:bookmark-2-line", Tag);
|
|
||||||
addIcon("ri:file-ppt-2-line", Ppt);
|
|
||||||
addIcon("ri:bank-card-line", Card);
|
|
||||||
addIcon("ri:admin-fill", Role);
|
|
||||||
addIcon("ri:file-info-line", Info);
|
|
||||||
addIcon("ri:git-branch-line", Dept);
|
|
||||||
addIcon("ri:links-fill", Links);
|
|
||||||
addIcon("ri:table-line", Table);
|
|
||||||
addIcon("ri:search-line", Search);
|
|
||||||
addIcon("ri:admin-line", FlUser);
|
|
||||||
addIcon("ri:settings-3-line", Setting);
|
|
||||||
addIcon("ri:mind-map", MindMap);
|
|
||||||
addIcon("ri:bar-chart-horizontal-line", BarChart);
|
|
||||||
addIcon("ri:window-line", LoginLog);
|
|
||||||
addIcon("ri:file-search-line", SystemLog);
|
|
||||||
addIcon("ri:artboard-line", Artboard);
|
|
||||||
addIcon("ri:list-check", ListCheck);
|
|
||||||
addIcon("ri:ubuntu-fill", UbuntuFill);
|
|
||||||
addIcon("ri:user-voice-line", OnlineUser);
|
|
||||||
addIcon("ri:edit-box-line", EditBoxLine);
|
|
||||||
addIcon("ri:history-fill", OperationLog);
|
|
||||||
addIcon("ri:information-line", InformationLine);
|
|
||||||
addIcon("ri:terminal-window-line", TerminalWindowLine);
|
|
||||||
addIcon("ri:checkbox-circle-line", CheckboxCircleLine);
|
|
||||||
|
@ -18,8 +18,8 @@ import {
|
|||||||
getKeyList
|
getKeyList
|
||||||
} from "@pureadmin/utils";
|
} from "@pureadmin/utils";
|
||||||
|
|
||||||
import Fullscreen from "@iconify-icons/ri/fullscreen-fill";
|
import Fullscreen from "~icons/ri/fullscreen-fill";
|
||||||
import ExitFullscreen from "@iconify-icons/ri/fullscreen-exit-fill";
|
import ExitFullscreen from "~icons/ri/fullscreen-exit-fill";
|
||||||
import DragIcon from "@/assets/table-bar/drag.svg?component";
|
import DragIcon from "@/assets/table-bar/drag.svg?component";
|
||||||
import ExpandIcon from "@/assets/table-bar/expand.svg?component";
|
import ExpandIcon from "@/assets/table-bar/expand.svg?component";
|
||||||
import RefreshIcon from "@/assets/table-bar/refresh.svg?component";
|
import RefreshIcon from "@/assets/table-bar/refresh.svg?component";
|
||||||
|
@ -11,7 +11,7 @@ import "./index.scss";
|
|||||||
import propTypes from "@/utils/propTypes";
|
import propTypes from "@/utils/propTypes";
|
||||||
import { isString, cloneDeep } from "@pureadmin/utils";
|
import { isString, cloneDeep } from "@pureadmin/utils";
|
||||||
import QRCode, { type QRCodeRenderersOptions } from "qrcode";
|
import QRCode, { type QRCodeRenderersOptions } from "qrcode";
|
||||||
import RefreshRight from "@iconify-icons/ep/refresh-right";
|
import RefreshRight from "~icons/ep/refresh-right";
|
||||||
|
|
||||||
interface QrcodeLogo {
|
interface QrcodeLogo {
|
||||||
src?: string;
|
src?: string;
|
||||||
|
@ -12,8 +12,8 @@ import {
|
|||||||
getCurrentInstance
|
getCurrentInstance
|
||||||
} from "vue";
|
} from "vue";
|
||||||
|
|
||||||
import Fullscreen from "@iconify-icons/ri/fullscreen-fill";
|
import Fullscreen from "~icons/ri/fullscreen-fill";
|
||||||
import ExitFullscreen from "@iconify-icons/ri/fullscreen-exit-fill";
|
import ExitFullscreen from "~icons/ri/fullscreen-exit-fill";
|
||||||
import DragIcon from "@/assets/table-bar/drag.svg?component";
|
import DragIcon from "@/assets/table-bar/drag.svg?component";
|
||||||
import ExpandIcon from "@/assets/table-bar/expand.svg?component";
|
import ExpandIcon from "@/assets/table-bar/expand.svg?component";
|
||||||
import RefreshIcon from "@/assets/table-bar/refresh.svg?component";
|
import RefreshIcon from "@/assets/table-bar/refresh.svg?component";
|
||||||
|
@ -9,10 +9,10 @@ import LaySidebarBreadCrumb from "../lay-sidebar/components/SidebarBreadCrumb.vu
|
|||||||
import LaySidebarTopCollapse from "../lay-sidebar/components/SidebarTopCollapse.vue";
|
import LaySidebarTopCollapse from "../lay-sidebar/components/SidebarTopCollapse.vue";
|
||||||
|
|
||||||
import GlobalizationIcon from "@/assets/svg/globalization.svg?component";
|
import GlobalizationIcon from "@/assets/svg/globalization.svg?component";
|
||||||
import AccountSettingsIcon from "@iconify-icons/ri/user-settings-line";
|
import AccountSettingsIcon from "~icons/ri/user-settings-line";
|
||||||
import LogoutCircleRLine from "@iconify-icons/ri/logout-circle-r-line";
|
import LogoutCircleRLine from "~icons/ri/logout-circle-r-line";
|
||||||
import Setting from "@iconify-icons/ri/settings-3-line";
|
import Setting from "~icons/ri/settings-3-line";
|
||||||
import Check from "@iconify-icons/ep/check";
|
import Check from "~icons/ep/check";
|
||||||
|
|
||||||
const {
|
const {
|
||||||
layout,
|
layout,
|
||||||
|
@ -3,7 +3,7 @@ import { useI18n } from "vue-i18n";
|
|||||||
import { ref, computed } from "vue";
|
import { ref, computed } from "vue";
|
||||||
import { noticesData } from "./data";
|
import { noticesData } from "./data";
|
||||||
import NoticeList from "./components/NoticeList.vue";
|
import NoticeList from "./components/NoticeList.vue";
|
||||||
import BellIcon from "@iconify-icons/ep/bell";
|
import BellIcon from "~icons/ep/bell";
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const noticesNum = ref(0);
|
const noticesNum = ref(0);
|
||||||
|
@ -4,7 +4,7 @@ import { emitter } from "@/utils/mitt";
|
|||||||
import { onClickOutside } from "@vueuse/core";
|
import { onClickOutside } from "@vueuse/core";
|
||||||
import { ref, computed, onMounted, onBeforeUnmount } from "vue";
|
import { ref, computed, onMounted, onBeforeUnmount } from "vue";
|
||||||
import { useDataThemeChange } from "@/layout/hooks/useDataThemeChange";
|
import { useDataThemeChange } from "@/layout/hooks/useDataThemeChange";
|
||||||
import CloseIcon from "@iconify-icons/ep/close";
|
import CloseIcon from "~icons/ep/close";
|
||||||
|
|
||||||
const target = ref(null);
|
const target = ref(null);
|
||||||
const show = ref<Boolean>(false);
|
const show = ref<Boolean>(false);
|
||||||
@ -121,8 +121,8 @@ onBeforeUnmount(() => {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 280px;
|
max-width: 280px;
|
||||||
box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
|
box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
|
||||||
transition: all 0.25s cubic-bezier(0.7, 0.3, 0.1, 1);
|
|
||||||
transform: translate(100%);
|
transform: translate(100%);
|
||||||
|
transition: all 0.25s cubic-bezier(0.7, 0.3, 0.1, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.show {
|
.show {
|
||||||
|
@ -3,8 +3,8 @@ import { useI18n } from "vue-i18n";
|
|||||||
import { useNav } from "@/layout/hooks/useNav";
|
import { useNav } from "@/layout/hooks/useNav";
|
||||||
import MdiKeyboardEsc from "@/assets/svg/keyboard_esc.svg?component";
|
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 ArrowUpLine from "@iconify-icons/ri/arrow-up-line";
|
import ArrowUpLine from "~icons/ri/arrow-up-line";
|
||||||
import ArrowDownLine from "@iconify-icons/ri/arrow-down-line";
|
import ArrowDownLine from "~icons/ri/arrow-down-line";
|
||||||
|
|
||||||
withDefaults(defineProps<{ total: number }>(), {
|
withDefaults(defineProps<{ total: number }>(), {
|
||||||
total: 0
|
total: 0
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
import type { optionsItem } from "../types";
|
import type { optionsItem } from "../types";
|
||||||
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 StarIcon from "@iconify-icons/ep/star";
|
import StarIcon from "~icons/ep/star";
|
||||||
import CloseIcon from "@iconify-icons/ep/close";
|
import CloseIcon from "~icons/ep/close";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
item: optionsItem;
|
item: optionsItem;
|
||||||
|
@ -13,7 +13,7 @@ import { ref, computed, shallowRef, watch } from "vue";
|
|||||||
import { useDebounceFn, onKeyStroke } from "@vueuse/core";
|
import { useDebounceFn, onKeyStroke } from "@vueuse/core";
|
||||||
import { usePermissionStoreHook } from "@/store/modules/permission";
|
import { usePermissionStoreHook } from "@/store/modules/permission";
|
||||||
import { cloneDeep, isAllEmpty, storageLocal } from "@pureadmin/utils";
|
import { cloneDeep, isAllEmpty, storageLocal } from "@pureadmin/utils";
|
||||||
import SearchIcon from "@iconify-icons/ri/search-line";
|
import SearchIcon from "~icons/ri/search-line";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
/** 弹窗显隐 */
|
/** 弹窗显隐 */
|
||||||
|
@ -14,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="ri:search-line" />
|
<IconifyIconOffline icon="ri/search-line" />
|
||||||
</div>
|
</div>
|
||||||
<SearchModal v-model:value="show" />
|
<SearchModal v-model:value="show" />
|
||||||
</div>
|
</div>
|
||||||
|
@ -19,9 +19,9 @@ import Segmented, { type OptionsType } from "@/components/ReSegmented";
|
|||||||
import { useDataThemeChange } from "@/layout/hooks/useDataThemeChange";
|
import { useDataThemeChange } from "@/layout/hooks/useDataThemeChange";
|
||||||
import { useDark, useGlobal, debounce, isNumber } from "@pureadmin/utils";
|
import { useDark, useGlobal, debounce, isNumber } from "@pureadmin/utils";
|
||||||
|
|
||||||
import Check from "@iconify-icons/ep/check";
|
import Check from "~icons/ep/check";
|
||||||
import LeftArrow from "@iconify-icons/ri/arrow-left-s-line";
|
import LeftArrow from "~icons/ri/arrow-left-s-line";
|
||||||
import RightArrow from "@iconify-icons/ri/arrow-right-s-line";
|
import RightArrow from "~icons/ri/arrow-right-s-line";
|
||||||
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 SystemIcon from "@/assets/svg/system.svg?component";
|
import SystemIcon from "@/assets/svg/system.svg?component";
|
||||||
|
@ -12,10 +12,10 @@ import LaySidebarItem from "../lay-sidebar/components/SidebarItem.vue";
|
|||||||
import LaySidebarFullScreen from "../lay-sidebar/components/SidebarFullScreen.vue";
|
import LaySidebarFullScreen from "../lay-sidebar/components/SidebarFullScreen.vue";
|
||||||
|
|
||||||
import GlobalizationIcon from "@/assets/svg/globalization.svg?component";
|
import GlobalizationIcon from "@/assets/svg/globalization.svg?component";
|
||||||
import AccountSettingsIcon from "@iconify-icons/ri/user-settings-line";
|
import AccountSettingsIcon from "~icons/ri/user-settings-line";
|
||||||
import LogoutCircleRLine from "@iconify-icons/ri/logout-circle-r-line";
|
import LogoutCircleRLine from "~icons/ri/logout-circle-r-line";
|
||||||
import Setting from "@iconify-icons/ri/settings-3-line";
|
import Setting from "~icons/ri/settings-3-line";
|
||||||
import Check from "@iconify-icons/ep/check";
|
import Check from "~icons/ep/check";
|
||||||
|
|
||||||
const menuRef = ref();
|
const menuRef = ref();
|
||||||
const showLogo = ref(
|
const showLogo = ref(
|
||||||
|
@ -13,10 +13,10 @@ import LaySidebarExtraIcon from "../lay-sidebar/components/SidebarExtraIcon.vue"
|
|||||||
import LaySidebarFullScreen from "../lay-sidebar/components/SidebarFullScreen.vue";
|
import LaySidebarFullScreen from "../lay-sidebar/components/SidebarFullScreen.vue";
|
||||||
|
|
||||||
import GlobalizationIcon from "@/assets/svg/globalization.svg?component";
|
import GlobalizationIcon from "@/assets/svg/globalization.svg?component";
|
||||||
import AccountSettingsIcon from "@iconify-icons/ri/user-settings-line";
|
import AccountSettingsIcon from "~icons/ri/user-settings-line";
|
||||||
import LogoutCircleRLine from "@iconify-icons/ri/logout-circle-r-line";
|
import LogoutCircleRLine from "~icons/ri/logout-circle-r-line";
|
||||||
import Setting from "@iconify-icons/ri/settings-3-line";
|
import Setting from "~icons/ri/settings-3-line";
|
||||||
import Check from "@iconify-icons/ep/check";
|
import Check from "~icons/ep/check";
|
||||||
|
|
||||||
const menuRef = ref();
|
const menuRef = ref();
|
||||||
const defaultActive = ref(null);
|
const defaultActive = ref(null);
|
||||||
|
@ -4,7 +4,7 @@ import { useI18n } from "vue-i18n";
|
|||||||
import { useGlobal } from "@pureadmin/utils";
|
import { useGlobal } from "@pureadmin/utils";
|
||||||
import { useNav } from "@/layout/hooks/useNav";
|
import { useNav } from "@/layout/hooks/useNav";
|
||||||
|
|
||||||
import ArrowLeft from "@iconify-icons/ri/arrow-left-double-fill";
|
import ArrowLeft from "~icons/ri/arrow-left-double-fill";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
isActive: boolean;
|
isActive: boolean;
|
||||||
|
@ -17,10 +17,10 @@ import {
|
|||||||
useAttrs
|
useAttrs
|
||||||
} from "vue";
|
} from "vue";
|
||||||
|
|
||||||
import ArrowUp from "@iconify-icons/ep/arrow-up-bold";
|
import ArrowUp from "~icons/ep/arrow-up-bold";
|
||||||
import EpArrowDown from "@iconify-icons/ep/arrow-down-bold";
|
import EpArrowDown from "~icons/ep/arrow-down-bold";
|
||||||
import ArrowLeft from "@iconify-icons/ep/arrow-left-bold";
|
import ArrowLeft from "~icons/ep/arrow-left-bold";
|
||||||
import ArrowRight from "@iconify-icons/ep/arrow-right-bold";
|
import ArrowRight from "~icons/ep/arrow-right-bold";
|
||||||
|
|
||||||
const attrs = useAttrs();
|
const attrs = useAttrs();
|
||||||
const { layout, isCollapse, tooltipEffect, getDivStyle } = useNav();
|
const { layout, isCollapse, tooltipEffect, getDivStyle } = useNav();
|
||||||
|
@ -4,7 +4,7 @@ import { useI18n } from "vue-i18n";
|
|||||||
import { useGlobal } from "@pureadmin/utils";
|
import { useGlobal } from "@pureadmin/utils";
|
||||||
import { useNav } from "@/layout/hooks/useNav";
|
import { useNav } from "@/layout/hooks/useNav";
|
||||||
|
|
||||||
import MenuFold from "@iconify-icons/ri/menu-fold-fill";
|
import MenuFold from "~icons/ri/menu-fold-fill";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
isActive: boolean;
|
isActive: boolean;
|
||||||
|
@ -60,11 +60,11 @@ const { title, getLogo } = useNav();
|
|||||||
height: 32px;
|
height: 32px;
|
||||||
margin: 2px 0 0 12px;
|
margin: 2px 0 0 12px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
color: var(--pure-theme-sub-menu-active-text);
|
color: var(--pure-theme-sub-menu-active-text);
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useI18n } from "vue-i18n";
|
import { useI18n } from "vue-i18n";
|
||||||
import MenuFold from "@iconify-icons/ri/menu-fold-fill";
|
import MenuFold from "~icons/ri/menu-fold-fill";
|
||||||
import MenuUnfold from "@iconify-icons/ri/menu-unfold-fill";
|
import MenuUnfold from "~icons/ri/menu-unfold-fill";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
isActive: boolean;
|
isActive: boolean;
|
||||||
|
@ -59,10 +59,10 @@
|
|||||||
color: var(--el-color-primary);
|
color: var(--el-color-primary);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
transform: translate(0, -50%);
|
||||||
transition:
|
transition:
|
||||||
background-color 0.12s,
|
background-color 0.12s,
|
||||||
color 0.12s;
|
color 0.12s;
|
||||||
transform: translate(0, -50%);
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: rgb(0 0 0 / 88%) !important;
|
color: rgb(0 0 0 / 88%) !important;
|
||||||
@ -127,10 +127,10 @@
|
|||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
color: var(--el-text-color-primary);
|
color: var(--el-text-color-primary);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
outline: 0;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
outline: 0;
|
|
||||||
box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
|
box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
|
||||||
|
|
||||||
li {
|
li {
|
||||||
|
@ -18,11 +18,11 @@ import {
|
|||||||
useResizeObserver
|
useResizeObserver
|
||||||
} from "@pureadmin/utils";
|
} from "@pureadmin/utils";
|
||||||
|
|
||||||
import ExitFullscreen from "@iconify-icons/ri/fullscreen-exit-fill";
|
import ExitFullscreen from "~icons/ri/fullscreen-exit-fill";
|
||||||
import Fullscreen from "@iconify-icons/ri/fullscreen-fill";
|
import Fullscreen from "~icons/ri/fullscreen-fill";
|
||||||
import ArrowDown from "@iconify-icons/ri/arrow-down-s-line";
|
import ArrowDown from "~icons/ri/arrow-down-s-line";
|
||||||
import ArrowRightSLine from "@iconify-icons/ri/arrow-right-s-line";
|
import ArrowRightSLine from "~icons/ri/arrow-right-s-line";
|
||||||
import ArrowLeftSLine from "@iconify-icons/ri/arrow-left-s-line";
|
import ArrowLeftSLine from "~icons/ri/arrow-left-s-line";
|
||||||
|
|
||||||
const {
|
const {
|
||||||
Close,
|
Close,
|
||||||
|
@ -14,8 +14,8 @@ import { useUserStoreHook } from "@/store/modules/user";
|
|||||||
import { useGlobal, isAllEmpty } from "@pureadmin/utils";
|
import { useGlobal, isAllEmpty } from "@pureadmin/utils";
|
||||||
import { useEpThemeStoreHook } from "@/store/modules/epTheme";
|
import { useEpThemeStoreHook } from "@/store/modules/epTheme";
|
||||||
import { usePermissionStoreHook } from "@/store/modules/permission";
|
import { usePermissionStoreHook } from "@/store/modules/permission";
|
||||||
import ExitFullscreen from "@iconify-icons/ri/fullscreen-exit-fill";
|
import ExitFullscreen from "~icons/ri/fullscreen-exit-fill";
|
||||||
import Fullscreen from "@iconify-icons/ri/fullscreen-fill";
|
import Fullscreen from "~icons/ri/fullscreen-fill";
|
||||||
|
|
||||||
const errorInfo =
|
const errorInfo =
|
||||||
"The current routing configuration is incorrect, please check the configuration";
|
"The current routing configuration is incorrect, please check the configuration";
|
||||||
|
@ -21,13 +21,13 @@ import {
|
|||||||
hasClass
|
hasClass
|
||||||
} from "@pureadmin/utils";
|
} from "@pureadmin/utils";
|
||||||
|
|
||||||
import Fullscreen from "@iconify-icons/ri/fullscreen-fill";
|
import Fullscreen from "~icons/ri/fullscreen-fill";
|
||||||
import CloseAllTags from "@iconify-icons/ri/subtract-line";
|
import CloseAllTags from "~icons/ri/subtract-line";
|
||||||
import CloseOtherTags from "@iconify-icons/ri/text-spacing";
|
import CloseOtherTags from "~icons/ri/text-spacing";
|
||||||
import CloseRightTags from "@iconify-icons/ri/text-direction-l";
|
import CloseRightTags from "~icons/ri/text-direction-l";
|
||||||
import CloseLeftTags from "@iconify-icons/ri/text-direction-r";
|
import CloseLeftTags from "~icons/ri/text-direction-r";
|
||||||
import RefreshRight from "@iconify-icons/ep/refresh-right";
|
import RefreshRight from "~icons/ep/refresh-right";
|
||||||
import Close from "@iconify-icons/ep/close";
|
import Close from "~icons/ep/close";
|
||||||
|
|
||||||
export function useTags() {
|
export function useTags() {
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
@ -210,8 +210,8 @@ const LayHeader = defineComponent({
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
display: table;
|
|
||||||
clear: both;
|
clear: both;
|
||||||
|
display: table;
|
||||||
content: "";
|
content: "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import type { IconifyIcon } from "@iconify/vue";
|
import type { FunctionalComponent } from "vue";
|
||||||
const { VITE_HIDE_HOME } = import.meta.env;
|
const { VITE_HIDE_HOME } = import.meta.env;
|
||||||
|
|
||||||
export const routerArrays: Array<RouteConfigs> =
|
export const routerArrays: Array<RouteConfigs> =
|
||||||
@ -8,7 +8,7 @@ export const routerArrays: Array<RouteConfigs> =
|
|||||||
path: "/welcome",
|
path: "/welcome",
|
||||||
meta: {
|
meta: {
|
||||||
title: "menus.pureHome",
|
title: "menus.pureHome",
|
||||||
icon: "ep:home-filled"
|
icon: "ep/home-filled"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@ -16,7 +16,7 @@ export const routerArrays: Array<RouteConfigs> =
|
|||||||
|
|
||||||
export type routeMetaType = {
|
export type routeMetaType = {
|
||||||
title?: string;
|
title?: string;
|
||||||
icon?: string | IconifyIcon;
|
icon?: string | FunctionalComponent;
|
||||||
showLink?: boolean;
|
showLink?: boolean;
|
||||||
savedPosition?: boolean;
|
savedPosition?: boolean;
|
||||||
auths?: Array<string>;
|
auths?: Array<string>;
|
||||||
@ -36,7 +36,7 @@ export type multiTagsType = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type tagsViewsType = {
|
export type tagsViewsType = {
|
||||||
icon: string | IconifyIcon;
|
icon: string | FunctionalComponent;
|
||||||
text: string;
|
text: string;
|
||||||
divided: boolean;
|
divided: boolean;
|
||||||
disabled: boolean;
|
disabled: boolean;
|
||||||
|
@ -1,35 +1,37 @@
|
|||||||
// 完整版菜单比较多,将 rank 抽离出来,在此方便维护
|
// 完整版菜单比较多,将 rank 抽离出来,在此方便维护
|
||||||
|
|
||||||
const home = 0, // 平台规定只有 home 路由的 rank 才能为 0 ,所以后端在返回 rank 的时候需要从非 0 开始
|
const home = 0, // 平台规定只有 home 路由的 rank 才能为 0 ,所以后端在返回 rank 的时候需要从非 0 开始
|
||||||
vueflow = 1,
|
chatai = 1,
|
||||||
ganttastic = 2,
|
vueflow = 2,
|
||||||
components = 3,
|
ganttastic = 3,
|
||||||
able = 4,
|
components = 4,
|
||||||
table = 5,
|
able = 5,
|
||||||
form = 6,
|
table = 6,
|
||||||
list = 7,
|
form = 7,
|
||||||
result = 8,
|
list = 8,
|
||||||
error = 9,
|
result = 9,
|
||||||
frame = 10,
|
error = 10,
|
||||||
nested = 11,
|
frame = 11,
|
||||||
permission = 12,
|
nested = 12,
|
||||||
system = 13,
|
permission = 13,
|
||||||
monitor = 14,
|
system = 14,
|
||||||
tabs = 15,
|
monitor = 15,
|
||||||
about = 16,
|
tabs = 16,
|
||||||
codemirror = 17,
|
about = 17,
|
||||||
markdown = 18,
|
codemirror = 18,
|
||||||
editor = 19,
|
markdown = 19,
|
||||||
flowchart = 20,
|
editor = 20,
|
||||||
formdesign = 21,
|
flowchart = 21,
|
||||||
board = 22,
|
formdesign = 22,
|
||||||
ppt = 23,
|
board = 23,
|
||||||
mind = 24,
|
ppt = 24,
|
||||||
guide = 25,
|
mind = 25,
|
||||||
menuoverflow = 26;
|
guide = 26,
|
||||||
|
menuoverflow = 27;
|
||||||
|
|
||||||
export {
|
export {
|
||||||
home,
|
home,
|
||||||
|
chatai,
|
||||||
vueflow,
|
vueflow,
|
||||||
ganttastic,
|
ganttastic,
|
||||||
components,
|
components,
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/able",
|
path: "/able",
|
||||||
redirect: "/able/watermark",
|
redirect: "/able/watermark",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:ubuntu-fill",
|
icon: "ri/ubuntu-fill",
|
||||||
title: $t("menus.pureAble"),
|
title: $t("menus.pureAble"),
|
||||||
rank: able
|
rank: able
|
||||||
},
|
},
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/about",
|
path: "/about",
|
||||||
redirect: "/about/index",
|
redirect: "/about/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:file-info-line",
|
icon: "ri/file-info-line",
|
||||||
title: $t("menus.pureAbout"),
|
title: $t("menus.pureAbout"),
|
||||||
rank: about
|
rank: about
|
||||||
},
|
},
|
||||||
|
@ -6,7 +6,7 @@ export default {
|
|||||||
path: "/board",
|
path: "/board",
|
||||||
redirect: "/board/index",
|
redirect: "/board/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:artboard-line",
|
icon: "ri/artboard-line",
|
||||||
title: $t("menus.pureBoard"),
|
title: $t("menus.pureBoard"),
|
||||||
rank: board
|
rank: board
|
||||||
},
|
},
|
||||||
|
22
src/router/modules/chatai.ts
Normal file
22
src/router/modules/chatai.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { chatai } from "@/router/enums";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
path: "/chatai",
|
||||||
|
redirect: "/chatai/index",
|
||||||
|
meta: {
|
||||||
|
icon: "ri/chat-search-line",
|
||||||
|
title: "chat-ai",
|
||||||
|
rank: chatai
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: "/chatai/index",
|
||||||
|
name: "ChatAi",
|
||||||
|
component: () => import("@/views/chatai/index.vue"),
|
||||||
|
meta: {
|
||||||
|
title: "chat-ai",
|
||||||
|
extraIcon: "IF-pure-iconfont-new svg"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
} satisfies RouteConfigsTable;
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/codemirror",
|
path: "/codemirror",
|
||||||
redirect: "/codemirror/index",
|
redirect: "/codemirror/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:code-box-line",
|
icon: "ri/code-box-line",
|
||||||
title: $t("menus.pureCodeMirror"),
|
title: $t("menus.pureCodeMirror"),
|
||||||
rank: codemirror
|
rank: codemirror
|
||||||
},
|
},
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/components",
|
path: "/components",
|
||||||
redirect: "/components/dialog",
|
redirect: "/components/dialog",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ep:menu",
|
icon: "ep/menu",
|
||||||
title: $t("menus.pureComponents"),
|
title: $t("menus.pureComponents"),
|
||||||
rank: components
|
rank: components
|
||||||
},
|
},
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/editor",
|
path: "/editor",
|
||||||
redirect: "/editor/index",
|
redirect: "/editor/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ep:edit",
|
icon: "ep/edit",
|
||||||
title: $t("menus.pureEditor"),
|
title: $t("menus.pureEditor"),
|
||||||
rank: editor
|
rank: editor
|
||||||
},
|
},
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/error",
|
path: "/error",
|
||||||
redirect: "/error/403",
|
redirect: "/error/403",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:information-line",
|
icon: "ri/information-line",
|
||||||
// showLink: false,
|
// showLink: false,
|
||||||
title: $t("menus.pureAbnormal"),
|
title: $t("menus.pureAbnormal"),
|
||||||
rank: error
|
rank: error
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/flow-chart",
|
path: "/flow-chart",
|
||||||
redirect: "/flow-chart/index",
|
redirect: "/flow-chart/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ep:set-up",
|
icon: "ep/set-up",
|
||||||
title: $t("menus.pureFlowChart"),
|
title: $t("menus.pureFlowChart"),
|
||||||
rank: flowchart
|
rank: flowchart
|
||||||
},
|
},
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/form",
|
path: "/form",
|
||||||
redirect: "/form/index",
|
redirect: "/form/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:edit-box-line",
|
icon: "ri/edit-box-line",
|
||||||
title: $t("menus.pureSchemaForm"),
|
title: $t("menus.pureSchemaForm"),
|
||||||
rank: form
|
rank: form
|
||||||
},
|
},
|
||||||
|
@ -6,7 +6,7 @@ export default {
|
|||||||
path: "/form-design",
|
path: "/form-design",
|
||||||
redirect: "/form-design/index",
|
redirect: "/form-design/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:terminal-window-line",
|
icon: "ri/terminal-window-line",
|
||||||
title: $t("menus.pureFormDesign"),
|
title: $t("menus.pureFormDesign"),
|
||||||
rank: formdesign
|
rank: formdesign
|
||||||
},
|
},
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/ganttastic",
|
path: "/ganttastic",
|
||||||
redirect: "/ganttastic/index",
|
redirect: "/ganttastic/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:bar-chart-horizontal-line",
|
icon: "ri/bar-chart-horizontal-line",
|
||||||
title: $t("menus.pureGanttastic"),
|
title: $t("menus.pureGanttastic"),
|
||||||
rank: ganttastic
|
rank: ganttastic
|
||||||
},
|
},
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/guide",
|
path: "/guide",
|
||||||
redirect: "/guide/index",
|
redirect: "/guide/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ep:guide",
|
icon: "ep/guide",
|
||||||
title: $t("menus.pureGuide"),
|
title: $t("menus.pureGuide"),
|
||||||
rank: guide
|
rank: guide
|
||||||
},
|
},
|
||||||
|
@ -9,7 +9,7 @@ export default {
|
|||||||
component: Layout,
|
component: Layout,
|
||||||
redirect: "/welcome",
|
redirect: "/welcome",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ep:home-filled",
|
icon: "ep/home-filled",
|
||||||
title: $t("menus.pureHome"),
|
title: $t("menus.pureHome"),
|
||||||
rank: home
|
rank: home
|
||||||
},
|
},
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/list",
|
path: "/list",
|
||||||
redirect: "/list/card",
|
redirect: "/list/card",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:list-check",
|
icon: "ri/list-check",
|
||||||
title: $t("menus.pureList"),
|
title: $t("menus.pureList"),
|
||||||
rank: list
|
rank: list
|
||||||
},
|
},
|
||||||
@ -15,7 +15,7 @@ export default {
|
|||||||
name: "CardList",
|
name: "CardList",
|
||||||
component: () => import("@/views/list/card/index.vue"),
|
component: () => import("@/views/list/card/index.vue"),
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:bank-card-line",
|
icon: "ri/bank-card-line",
|
||||||
title: $t("menus.pureCardList"),
|
title: $t("menus.pureCardList"),
|
||||||
showParent: true
|
showParent: true
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/markdown",
|
path: "/markdown",
|
||||||
redirect: "/markdown/index",
|
redirect: "/markdown/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:markdown-line",
|
icon: "ri/markdown-line",
|
||||||
title: $t("menus.pureMarkdown"),
|
title: $t("menus.pureMarkdown"),
|
||||||
rank: markdown
|
rank: markdown
|
||||||
},
|
},
|
||||||
|
@ -6,7 +6,7 @@ export default {
|
|||||||
path: "/mind-map",
|
path: "/mind-map",
|
||||||
redirect: "/mind-map/index",
|
redirect: "/mind-map/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:mind-map",
|
icon: "ri/mind-map",
|
||||||
title: $t("menus.pureMindMap"),
|
title: $t("menus.pureMindMap"),
|
||||||
rank: mind
|
rank: mind
|
||||||
},
|
},
|
||||||
|
@ -6,7 +6,7 @@ export default {
|
|||||||
redirect: "/nested/menu1/menu1-1",
|
redirect: "/nested/menu1/menu1-1",
|
||||||
meta: {
|
meta: {
|
||||||
title: $t("menus.pureMenus"),
|
title: $t("menus.pureMenus"),
|
||||||
icon: "ep:histogram",
|
icon: "ep/histogram",
|
||||||
rank: nested
|
rank: nested
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/ppt",
|
path: "/ppt",
|
||||||
redirect: "/ppt/index",
|
redirect: "/ppt/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:file-ppt-2-line",
|
icon: "ri/file-ppt-2-line",
|
||||||
title: "PPT",
|
title: "PPT",
|
||||||
rank: ppt
|
rank: ppt
|
||||||
},
|
},
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/result",
|
path: "/result",
|
||||||
redirect: "/result/success",
|
redirect: "/result/success",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:checkbox-circle-line",
|
icon: "ri/checkbox-circle-line",
|
||||||
title: $t("menus.pureResult"),
|
title: $t("menus.pureResult"),
|
||||||
rank: result
|
rank: result
|
||||||
},
|
},
|
||||||
|
@ -5,7 +5,7 @@ export default {
|
|||||||
path: "/table",
|
path: "/table",
|
||||||
redirect: "/table/index",
|
redirect: "/table/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ri:table-line",
|
icon: "ri/table-line",
|
||||||
title: $t("menus.pureTable"),
|
title: $t("menus.pureTable"),
|
||||||
rank: table
|
rank: table
|
||||||
},
|
},
|
||||||
|
@ -4,7 +4,7 @@ export default {
|
|||||||
path: "/vue-flow",
|
path: "/vue-flow",
|
||||||
redirect: "/vue-flow/index",
|
redirect: "/vue-flow/index",
|
||||||
meta: {
|
meta: {
|
||||||
icon: "ep:set-up",
|
icon: "ep/set-up",
|
||||||
title: "vue-flow",
|
title: "vue-flow",
|
||||||
rank: vueflow
|
rank: vueflow
|
||||||
},
|
},
|
||||||
|
@ -83,8 +83,8 @@
|
|||||||
.el-upload-list__item.is-ready &.el-icon--close {
|
.el-upload-list__item.is-ready &.el-icon--close {
|
||||||
width: 24px;
|
width: 24px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
border-radius: 4px;
|
|
||||||
outline: none;
|
outline: none;
|
||||||
|
border-radius: 4px;
|
||||||
transition:
|
transition:
|
||||||
background-color 0.2s,
|
background-color 0.2s,
|
||||||
color 0.2s;
|
color 0.2s;
|
||||||
@ -117,8 +117,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
& .el-message__closeBtn {
|
& .el-message__closeBtn {
|
||||||
border-radius: 4px;
|
|
||||||
outline: none;
|
outline: none;
|
||||||
|
border-radius: 4px;
|
||||||
transition:
|
transition:
|
||||||
background-color 0.2s,
|
background-color 0.2s,
|
||||||
color 0.2s;
|
color 0.2s;
|
||||||
|
@ -25,7 +25,8 @@ body {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
|
font-family:
|
||||||
|
"Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
|
||||||
"Microsoft YaHei", "微软雅黑", Arial, sans-serif;
|
"Microsoft YaHei", "微软雅黑", Arial, sans-serif;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
@ -57,8 +58,9 @@ code,
|
|||||||
kbd,
|
kbd,
|
||||||
samp,
|
samp,
|
||||||
pre {
|
pre {
|
||||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
|
font-family:
|
||||||
"Liberation Mono", "Courier New", monospace;
|
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
||||||
|
"Courier New", monospace;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -191,8 +191,8 @@
|
|||||||
.el-menu-item.is-active.nest-menu::before {
|
.el-menu-item.is-active.nest-menu::before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
inset: 0 8px;
|
inset: 0 8px;
|
||||||
margin: 4px 0;
|
|
||||||
clear: both;
|
clear: both;
|
||||||
|
margin: 4px 0;
|
||||||
content: "";
|
content: "";
|
||||||
background: var(--el-color-primary) !important;
|
background: var(--el-color-primary) !important;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
@ -212,13 +212,13 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
clear: both;
|
||||||
width: 2px;
|
width: 2px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
clear: both;
|
|
||||||
content: "";
|
content: "";
|
||||||
background-color: var(--pure-theme-menu-active-before);
|
background-color: var(--pure-theme-menu-active-before);
|
||||||
transition: all var(--pure-transition-duration) ease-in-out;
|
|
||||||
transform: translateY(0);
|
transform: translateY(0);
|
||||||
|
transition: all var(--pure-transition-duration) ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-menu--collapse .outer-most.el-sub-menu > .el-sub-menu__title::before {
|
.el-menu--collapse .outer-most.el-sub-menu > .el-sub-menu__title::before {
|
||||||
@ -240,8 +240,8 @@
|
|||||||
.is-active.submenu-title-noDropdown.outer-most::before {
|
.is-active.submenu-title-noDropdown.outer-most::before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
inset: 0 8px;
|
inset: 0 8px;
|
||||||
margin: 4px 0;
|
|
||||||
clear: both;
|
clear: both;
|
||||||
|
margin: 4px 0;
|
||||||
content: "";
|
content: "";
|
||||||
background: var(--el-color-primary) !important;
|
background: var(--el-color-primary) !important;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
@ -435,11 +435,11 @@
|
|||||||
height: 32px;
|
height: 32px;
|
||||||
margin: 2px 0 0 12px;
|
margin: 2px 0 0 12px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
color: var(--pure-theme-sub-menu-active-text);
|
color: var(--pure-theme-sub-menu-active-text);
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -577,8 +577,8 @@
|
|||||||
&.hideSidebar {
|
&.hideSidebar {
|
||||||
.sidebar-container {
|
.sidebar-container {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
transition-duration: 0.3s;
|
|
||||||
transform: translate3d(-$sideBarWidth, 0, 0);
|
transform: translate3d(-$sideBarWidth, 0, 0);
|
||||||
|
transition-duration: 0.3s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -621,10 +621,10 @@ body[layout="vertical"] {
|
|||||||
.el-sub-menu {
|
.el-sub-menu {
|
||||||
& > .el-sub-menu__title {
|
& > .el-sub-menu__title {
|
||||||
& > span {
|
& > span {
|
||||||
|
visibility: visible;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
visibility: visible;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -715,10 +715,10 @@ body[layout="mix"] {
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
& > span {
|
& > span {
|
||||||
|
visibility: visible;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
visibility: visible;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
|||||||
import { extractPathList, deleteChildren } from "@/utils/tree";
|
import { extractPathList, deleteChildren } from "@/utils/tree";
|
||||||
import { usePermissionStoreHook } from "@/store/modules/permission";
|
import { usePermissionStoreHook } from "@/store/modules/permission";
|
||||||
import type { TreeNode } from "element-plus/es/components/tree-v2/src/types";
|
import type { TreeNode } from "element-plus/es/components/tree-v2/src/types";
|
||||||
import NodeTree from "@iconify-icons/ri/node-tree";
|
import NodeTree from "~icons/ri/node-tree";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "MenuTree"
|
name: "MenuTree"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
import { onMounted } from "vue";
|
import { onMounted } from "vue";
|
||||||
import { deviceDetection } from "@pureadmin/utils";
|
import { deviceDetection } from "@pureadmin/utils";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
import VideoPlay from "@iconify-icons/ep/video-play";
|
import VideoPlay from "~icons/ep/video-play";
|
||||||
|
|
||||||
import Player from "xgplayer";
|
import Player from "xgplayer";
|
||||||
import "xgplayer/dist/index.min.css";
|
import "xgplayer/dist/index.min.css";
|
||||||
|
@ -6,7 +6,7 @@ import { type UserInfo, getMine } from "@/api/user";
|
|||||||
import type { FormInstance, FormRules } from "element-plus";
|
import type { FormInstance, FormRules } from "element-plus";
|
||||||
import ReCropperPreview from "@/components/ReCropperPreview";
|
import ReCropperPreview from "@/components/ReCropperPreview";
|
||||||
import { createFormData, deviceDetection } from "@pureadmin/utils";
|
import { createFormData, deviceDetection } from "@pureadmin/utils";
|
||||||
import uploadLine from "@iconify-icons/ri/upload-line";
|
import uploadLine from "~icons/ri/upload-line";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "Profile"
|
name: "Profile"
|
||||||
|
@ -11,11 +11,11 @@ import AccountManagement from "./components/AccountManagement.vue";
|
|||||||
import { useDataThemeChange } from "@/layout/hooks/useDataThemeChange";
|
import { useDataThemeChange } from "@/layout/hooks/useDataThemeChange";
|
||||||
import LaySidebarTopCollapse from "@/layout/components/lay-sidebar/components/SidebarTopCollapse.vue";
|
import LaySidebarTopCollapse from "@/layout/components/lay-sidebar/components/SidebarTopCollapse.vue";
|
||||||
|
|
||||||
import leftLine from "@iconify-icons/ri/arrow-left-s-line";
|
import leftLine from "~icons/ri/arrow-left-s-line";
|
||||||
import ProfileIcon from "@iconify-icons/ri/user-3-line";
|
import ProfileIcon from "~icons/ri/user-3-line";
|
||||||
import PreferencesIcon from "@iconify-icons/ri/settings-3-line";
|
import PreferencesIcon from "~icons/ri/settings-3-line";
|
||||||
import SecurityLogIcon from "@iconify-icons/ri/window-line";
|
import SecurityLogIcon from "~icons/ri/window-line";
|
||||||
import AccountManagementIcon from "@iconify-icons/ri/profile-line";
|
import AccountManagementIcon from "~icons/ri/profile-line";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "AccountSettings"
|
name: "AccountSettings"
|
||||||
@ -158,8 +158,8 @@ getMine().then(res => {
|
|||||||
&::before {
|
&::before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
inset: 0 8px;
|
inset: 0 8px;
|
||||||
margin: 4px 0;
|
|
||||||
clear: both;
|
clear: both;
|
||||||
|
margin: 4px 0;
|
||||||
content: "";
|
content: "";
|
||||||
background: var(--el-color-primary);
|
background: var(--el-color-primary);
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
|
142
src/views/chatai/components/Bard.vue
Normal file
142
src/views/chatai/components/Bard.vue
Normal file
@ -0,0 +1,142 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import "deep-chat";
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
|
||||||
|
const chatRef = ref();
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
chatRef.value.demo = {
|
||||||
|
response: message => {
|
||||||
|
console.log(message);
|
||||||
|
return {
|
||||||
|
text: "仅演示,如需AI服务,请参考 https://deepchat.dev/docs/connect"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<deep-chat
|
||||||
|
ref="chatRef"
|
||||||
|
style="
|
||||||
|
background-color: #f3f6fc;
|
||||||
|
border-color: #dcdcdc;
|
||||||
|
border-radius: 10px;
|
||||||
|
"
|
||||||
|
:textInput="{
|
||||||
|
styles: {
|
||||||
|
container: {
|
||||||
|
borderRadius: '20px',
|
||||||
|
border: '1px solid #969696',
|
||||||
|
boxShadow: 'unset',
|
||||||
|
width: '78%',
|
||||||
|
marginLeft: '-15px'
|
||||||
|
},
|
||||||
|
text: { padding: '10px', paddingLeft: '15px', paddingRight: '34px' }
|
||||||
|
},
|
||||||
|
placeholder: { text: '发送消息', style: { color: '#bcbcbc' } }
|
||||||
|
}"
|
||||||
|
:messageStyles="{
|
||||||
|
default: {
|
||||||
|
shared: {
|
||||||
|
bubble: {
|
||||||
|
maxWidth: '100%',
|
||||||
|
backgroundColor: 'unset',
|
||||||
|
marginTop: '10px',
|
||||||
|
marginBottom: '10px'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
user: { bubble: { marginLeft: '0px', color: 'black' } },
|
||||||
|
ai: {
|
||||||
|
innerContainer: { borderRadius: '15px', backgroundColor: 'white' }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:avatars="{
|
||||||
|
default: {
|
||||||
|
styles: {
|
||||||
|
position: 'left',
|
||||||
|
container: { marginLeft: '12px', marginRight: '5px' }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ai: {
|
||||||
|
src: 'https://xiaoxian521.github.io/hyperlink/img/vue-pure-admin/chatai/gemini.png',
|
||||||
|
styles: { position: 'left', avatar: { paddingTop: '6px' } }
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:speechToText="{
|
||||||
|
webSpeech: { language: 'zh-CN' },
|
||||||
|
button: {
|
||||||
|
default: {
|
||||||
|
container: {
|
||||||
|
default: {
|
||||||
|
bottom: '1em',
|
||||||
|
right: '0.6em',
|
||||||
|
borderRadius: '20px',
|
||||||
|
width: '1.9em',
|
||||||
|
height: '1.9em'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
svg: { styles: { default: { bottom: '0.35em', left: '0.35em' } } }
|
||||||
|
},
|
||||||
|
position: 'inside-right'
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:submitButtonStyles="{
|
||||||
|
position: 'outside-right',
|
||||||
|
submit: {
|
||||||
|
container: {
|
||||||
|
default: {
|
||||||
|
bottom: '0.9em',
|
||||||
|
borderRadius: '25px',
|
||||||
|
padding: '6px 5px 4px',
|
||||||
|
backgroundColor: '#f3f6fc'
|
||||||
|
},
|
||||||
|
hover: { backgroundColor: '#b0deff4f' },
|
||||||
|
click: { backgroundColor: '#b0deffb5' }
|
||||||
|
},
|
||||||
|
svg: {
|
||||||
|
content:
|
||||||
|
'<?xml version="1.0" encoding="utf-8"?> <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m21.426 11.095-17-8A.999.999 0 0 0 3.03 4.242L4.969 12 3.03 19.758a.998.998 0 0 0 1.396 1.147l17-8a1 1 0 0 0 0-1.81zM5.481 18.197l.839-3.357L12 12 6.32 9.16l-.839-3.357L18.651 12l-13.17 6.197z"/></svg>',
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(10%) sepia(86%) saturate(6044%) hue-rotate(205deg) brightness(100%) contrast(100%)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
loading: {
|
||||||
|
svg: {
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(72%) sepia(0%) saturate(3044%) hue-rotate(322deg) brightness(100%) contrast(96%)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
stop: {
|
||||||
|
container: { hover: { backgroundColor: '#ededed' } },
|
||||||
|
svg: {
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(59%) sepia(0%) saturate(0%) hue-rotate(348deg) brightness(96%) contrast(93%)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:history="[
|
||||||
|
{ text: '韩信是谁?', role: 'user' },
|
||||||
|
{
|
||||||
|
text: '韩信(约前231年-前196年),是秦末汉初时期的杰出军事家和战略家,被后世誉为“兵仙”。',
|
||||||
|
role: 'ai'
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
:demo="true"
|
||||||
|
:connect="{ stream: true }"
|
||||||
|
/>
|
||||||
|
</template>
|
147
src/views/chatai/components/Bing.vue
Normal file
147
src/views/chatai/components/Bing.vue
Normal file
@ -0,0 +1,147 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import "deep-chat";
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
|
||||||
|
const chatRef = ref();
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
chatRef.value.demo = {
|
||||||
|
response: message => {
|
||||||
|
console.log(message);
|
||||||
|
return {
|
||||||
|
text: "仅演示,如需AI服务,请参考 https://deepchat.dev/docs/connect"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<deep-chat
|
||||||
|
ref="chatRef"
|
||||||
|
style="
|
||||||
|
background: linear-gradient(
|
||||||
|
90deg,
|
||||||
|
rgb(239 242 247) 0%,
|
||||||
|
7.6029%,
|
||||||
|
rgb(237 240 249) 15.2057%,
|
||||||
|
20.7513%,
|
||||||
|
rgb(235 239 248) 26.297%,
|
||||||
|
27.6386%,
|
||||||
|
rgb(235 239 248) 28.9803%,
|
||||||
|
38.2826%,
|
||||||
|
rgb(231 237 249) 47.585%,
|
||||||
|
48.1216%,
|
||||||
|
rgb(230 236 250) 48.6583%,
|
||||||
|
53.1306%,
|
||||||
|
rgb(228 236 249) 57.6029%,
|
||||||
|
61.5385%,
|
||||||
|
rgb(227 234 250) 65.4741%,
|
||||||
|
68.7835%,
|
||||||
|
rgb(222 234 250) 72.093%,
|
||||||
|
75.7603%,
|
||||||
|
rgb(219 230 248) 79.4275%,
|
||||||
|
82.8265%,
|
||||||
|
rgb(216 229 248) 86.2254%,
|
||||||
|
87.8354%,
|
||||||
|
rgb(213 228 249) 89.4454%,
|
||||||
|
91.8605%,
|
||||||
|
rgb(210 226 249) 94.2755%,
|
||||||
|
95.4383%,
|
||||||
|
rgb(209 225 248) 96.6011%,
|
||||||
|
98.3005%,
|
||||||
|
rgb(208 224 247) 100%
|
||||||
|
);
|
||||||
|
border-color: #e4e4e4;
|
||||||
|
border-radius: 10px;
|
||||||
|
"
|
||||||
|
:textInput="{
|
||||||
|
styles: {
|
||||||
|
container: {
|
||||||
|
borderRadius: '20px',
|
||||||
|
border: 'unset',
|
||||||
|
width: '78%',
|
||||||
|
marginLeft: '-15px',
|
||||||
|
boxShadow:
|
||||||
|
'0px 0.3px 0.9px rgba(0, 0, 0, 0.12), 0px 1.6px 3.6px rgba(0, 0, 0, 0.16)'
|
||||||
|
},
|
||||||
|
text: { padding: '10px', paddingLeft: '15px', paddingRight: '34px' }
|
||||||
|
},
|
||||||
|
placeholder: { text: '发送消息', style: { color: '#606060' } }
|
||||||
|
}"
|
||||||
|
:messageStyles="{
|
||||||
|
default: {
|
||||||
|
shared: {
|
||||||
|
bubble: {
|
||||||
|
backgroundColor: 'unset',
|
||||||
|
marginTop: '10px',
|
||||||
|
marginBottom: '10px',
|
||||||
|
boxShadow:
|
||||||
|
'0px 0.3px 0.9px rgba(0, 0, 0, 0.12), 0px 1.6px 3.6px rgba(0, 0, 0, 0.16)'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
user: {
|
||||||
|
bubble: {
|
||||||
|
background: 'linear-gradient(130deg, #2870EA 20%, #1B4AEF 77.5%)'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ai: { bubble: { background: 'rgba(255,255,255,0.7)' } }
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:submitButtonStyles="{
|
||||||
|
position: 'outside-right',
|
||||||
|
submit: {
|
||||||
|
container: {
|
||||||
|
default: {
|
||||||
|
bottom: '0.8em',
|
||||||
|
borderRadius: '25px',
|
||||||
|
padding: '6px 5px 4px',
|
||||||
|
backgroundColor: 'unset'
|
||||||
|
},
|
||||||
|
hover: { backgroundColor: '#b0deff4f' },
|
||||||
|
click: { backgroundColor: '#b0deffb5' }
|
||||||
|
},
|
||||||
|
svg: {
|
||||||
|
content:
|
||||||
|
'<?xml version="1.0" encoding="utf-8"?> <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m21.426 11.095-17-8A.999.999 0 0 0 3.03 4.242L4.969 12 3.03 19.758a.998.998 0 0 0 1.396 1.147l17-8a1 1 0 0 0 0-1.81zM5.481 18.197l.839-3.357L12 12 6.32 9.16l-.839-3.357L18.651 12l-13.17 6.197z"/></svg>',
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(10%) sepia(86%) saturate(6044%) hue-rotate(205deg) brightness(100%) contrast(100%)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
loading: {
|
||||||
|
svg: {
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(72%) sepia(0%) saturate(3044%) hue-rotate(322deg) brightness(100%) contrast(96%)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
stop: {
|
||||||
|
container: { hover: { backgroundColor: '#ededed94' } },
|
||||||
|
svg: {
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(72%) sepia(0%) saturate(3044%) hue-rotate(322deg) brightness(100%) contrast(96%)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:history="[
|
||||||
|
{ text: '赵云是谁?', role: 'user' },
|
||||||
|
{
|
||||||
|
text: '赵云(约168年-229年),字子龙,是三国时期蜀汉的重要将领,以其忠诚和勇敢著称。',
|
||||||
|
role: 'ai'
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
:demo="true"
|
||||||
|
:connect="{ stream: true }"
|
||||||
|
/>
|
||||||
|
</template>
|
75
src/views/chatai/components/Blue.vue
Normal file
75
src/views/chatai/components/Blue.vue
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import "deep-chat";
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
|
||||||
|
const chatRef = ref();
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
chatRef.value.demo = {
|
||||||
|
response: message => {
|
||||||
|
console.log(message);
|
||||||
|
return {
|
||||||
|
text: "仅演示,如需AI服务,请参考 https://deepchat.dev/docs/connect"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<deep-chat
|
||||||
|
ref="chatRef"
|
||||||
|
style="
|
||||||
|
border-radius: 10px;
|
||||||
|
border: unset;
|
||||||
|
background-image: url("https://xiaoxian521.github.io/hyperlink/img/vue-pure-admin/chatai/blue.jpg");
|
||||||
|
background-size: cover;
|
||||||
|
"
|
||||||
|
:messageStyles="{
|
||||||
|
default: {
|
||||||
|
user: {
|
||||||
|
bubble: { backgroundColor: '#2670ff' }
|
||||||
|
},
|
||||||
|
ai: { bubble: { backgroundColor: '#004f97', color: 'white' } }
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:submitButtonStyles="{
|
||||||
|
submit: {
|
||||||
|
svg: {
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(60%) sepia(79%) saturate(643%) hue-rotate(185deg) brightness(102%) contrast(100%)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:textInput="{
|
||||||
|
styles: {
|
||||||
|
container: {
|
||||||
|
backgroundColor: '#004f97',
|
||||||
|
color: 'white',
|
||||||
|
boxShadow: 'unset'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
placeholder: { text: '发送消息', style: { color: '#d1d1d1' } }
|
||||||
|
}"
|
||||||
|
auxiliaryStyle="
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background-color: #0174db;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background-color: unset;
|
||||||
|
}"
|
||||||
|
:history="[
|
||||||
|
{ text: '熬夜都有哪些坏处?', role: 'user' },
|
||||||
|
{
|
||||||
|
text: '熬夜会损害身体健康,导致免疫力下降、精神不振和工作效率降低。',
|
||||||
|
role: 'ai'
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
:demo="true"
|
||||||
|
:connect="{ stream: true }"
|
||||||
|
/>
|
||||||
|
</template>
|
114
src/views/chatai/components/ChatGPT.vue
Normal file
114
src/views/chatai/components/ChatGPT.vue
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import "deep-chat";
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
|
||||||
|
const chatRef = ref();
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
chatRef.value.demo = {
|
||||||
|
response: message => {
|
||||||
|
console.log(message);
|
||||||
|
return {
|
||||||
|
text: "仅演示,如需AI服务,请参考 https://deepchat.dev/docs/connect"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<deep-chat
|
||||||
|
ref="chatRef"
|
||||||
|
style="border-radius: 10px"
|
||||||
|
:messageStyles="{
|
||||||
|
default: {
|
||||||
|
shared: {
|
||||||
|
bubble: {
|
||||||
|
maxWidth: '100%',
|
||||||
|
backgroundColor: 'unset',
|
||||||
|
marginTop: '10px',
|
||||||
|
marginBottom: '10px'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
user: {
|
||||||
|
bubble: {
|
||||||
|
marginLeft: '0px',
|
||||||
|
color: 'black'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ai: {
|
||||||
|
outerContainer: {
|
||||||
|
backgroundColor: 'rgba(247,247,248)',
|
||||||
|
borderTop: '1px solid rgba(0,0,0,.1)',
|
||||||
|
borderBottom: '1px solid rgba(0,0,0,.1)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:avatars="{
|
||||||
|
default: { styles: { position: 'left' } },
|
||||||
|
ai: { src: 'https://xiaoxian521.github.io/hyperlink/svg/openai.svg' }
|
||||||
|
}"
|
||||||
|
:submitButtonStyles="{
|
||||||
|
submit: {
|
||||||
|
container: {
|
||||||
|
default: {
|
||||||
|
padding: '1px 0 0 5px',
|
||||||
|
backgroundColor: '#19c37d'
|
||||||
|
},
|
||||||
|
hover: { backgroundColor: '#0bab69' },
|
||||||
|
click: { backgroundColor: '#068e56' }
|
||||||
|
},
|
||||||
|
svg: {
|
||||||
|
content:
|
||||||
|
'<?xml version="1.0" ?> <svg viewBox="0 0 28 28" xmlns="http://www.w3.org/2000/svg"> <g> <path d="M21.66,12a2,2,0,0,1-1.14,1.81L5.87,20.75A2.08,2.08,0,0,1,5,21a2,2,0,0,1-1.82-2.82L5.46,13H11a1,1,0,0,0,0-2H5.46L3.18,5.87A2,2,0,0,1,5.86,3.25h0l14.65,6.94A2,2,0,0,1,21.66,12Z"> </path> </g> </svg>',
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(100%) sepia(28%) saturate(2%) hue-rotate(69deg) brightness(107%) contrast(100%)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
loading: {
|
||||||
|
container: { default: { backgroundColor: 'white' } },
|
||||||
|
svg: {
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(72%) sepia(0%) saturate(3044%) hue-rotate(322deg) brightness(100%) contrast(96%)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
stop: {
|
||||||
|
container: {
|
||||||
|
default: { backgroundColor: 'white' },
|
||||||
|
hover: { backgroundColor: '#dadada52' }
|
||||||
|
},
|
||||||
|
svg: {
|
||||||
|
content:
|
||||||
|
'<?xml version="1.0" encoding="utf-8"?> <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> <rect width="24" height="24" rx="4" ry="4" /> </svg>',
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
width: '0.95em',
|
||||||
|
marginTop: '0.32em',
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(72%) sepia(0%) saturate(3044%) hue-rotate(322deg) brightness(100%) contrast(96%)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:textInput="{ placeholder: { text: '发送消息' } }"
|
||||||
|
:history="[
|
||||||
|
{ text: '李白是谁?', role: 'user' },
|
||||||
|
{
|
||||||
|
text: '李白(701年2月28日-762年),号青莲居士,又号“谪仙人”,是唐代著名的浪漫主义诗人,被后人誉为“诗仙”。',
|
||||||
|
role: 'ai'
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
:demo="true"
|
||||||
|
:connect="{ stream: true }"
|
||||||
|
/>
|
||||||
|
</template>
|
85
src/views/chatai/components/Dark.vue
Normal file
85
src/views/chatai/components/Dark.vue
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import "deep-chat";
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
|
||||||
|
const chatRef = ref();
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
chatRef.value.demo = {
|
||||||
|
response: message => {
|
||||||
|
console.log(message);
|
||||||
|
return {
|
||||||
|
text: "仅演示,如需AI服务,请参考 https://deepchat.dev/docs/connect"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<deep-chat
|
||||||
|
ref="chatRef"
|
||||||
|
style="background-color: #292929; border: unset; border-radius: 10px"
|
||||||
|
:messageStyles="{
|
||||||
|
default: {
|
||||||
|
ai: { bubble: { backgroundColor: '#545454', color: 'white' } }
|
||||||
|
},
|
||||||
|
loading: {
|
||||||
|
message: {
|
||||||
|
styles: {
|
||||||
|
bubble: { backgroundColor: '#545454', color: 'white' }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:textInput="{
|
||||||
|
styles: {
|
||||||
|
container: {
|
||||||
|
backgroundColor: '#666666',
|
||||||
|
border: 'unset',
|
||||||
|
color: '#e8e8e8'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
placeholder: {
|
||||||
|
text: '发送消息',
|
||||||
|
style: { color: '#bcbcbc' }
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:submitButtonStyles="{
|
||||||
|
submit: {
|
||||||
|
container: {
|
||||||
|
default: { bottom: '0.7rem' }
|
||||||
|
},
|
||||||
|
svg: {
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(70%) sepia(52%) saturate(5617%) hue-rotate(185deg) brightness(101%) contrast(101%)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
auxiliaryStyle="
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background-color: grey;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background-color: unset;
|
||||||
|
}"
|
||||||
|
:history="[
|
||||||
|
{ text: '什么水果适合减脂期间吃?', role: 'user' },
|
||||||
|
{
|
||||||
|
text: '减脂期间适合吃苹果、柑橘类水果、蓝莓和草莓等低热量、高纤维的水果,有助于增加饱腹感并促进新陈代谢。',
|
||||||
|
role: 'ai'
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
:demo="true"
|
||||||
|
:connect="{ stream: true }"
|
||||||
|
/>
|
||||||
|
</template>
|
64
src/views/chatai/components/FullInput.vue
Normal file
64
src/views/chatai/components/FullInput.vue
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import "deep-chat";
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
|
||||||
|
const chatRef = ref();
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
chatRef.value.demo = {
|
||||||
|
response: message => {
|
||||||
|
console.log(message);
|
||||||
|
return {
|
||||||
|
text: "仅演示,如需AI服务,请参考 https://deepchat.dev/docs/connect"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<deep-chat
|
||||||
|
ref="chatRef"
|
||||||
|
style="border-radius: 10px"
|
||||||
|
:textInput="{
|
||||||
|
styles: {
|
||||||
|
container: {
|
||||||
|
width: '100%',
|
||||||
|
margin: '0',
|
||||||
|
border: 'unset',
|
||||||
|
borderTop: '1px solid #d5d5d5',
|
||||||
|
borderRadius: '0px',
|
||||||
|
boxShadow: 'unset'
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
fontSize: '1.05em',
|
||||||
|
paddingTop: '11px',
|
||||||
|
paddingBottom: '13px',
|
||||||
|
paddingLeft: '12px',
|
||||||
|
paddingRight: '2.4em'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
placeholder: { text: '发送消息', style: { color: '#bcbcbc' } }
|
||||||
|
}"
|
||||||
|
:submitButtonStyles="{
|
||||||
|
submit: {
|
||||||
|
container: {
|
||||||
|
default: {
|
||||||
|
transform: 'scale(1.21)',
|
||||||
|
marginBottom: '-3px',
|
||||||
|
marginRight: '0.4em'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:history="[
|
||||||
|
{ text: '预防心梗、脑梗的方法?', role: 'user' },
|
||||||
|
{
|
||||||
|
text: '预防心梗和脑梗的关键方法包括保持健康的生活方式,如均衡饮食、定期锻炼、控制血压和血脂、戒烟限酒以及管理压力。',
|
||||||
|
role: 'ai'
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
:demo="true"
|
||||||
|
:connect="{ stream: true }"
|
||||||
|
/>
|
||||||
|
</template>
|
60
src/views/chatai/components/Group.vue
Normal file
60
src/views/chatai/components/Group.vue
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import "deep-chat";
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
|
||||||
|
const chatRef = ref();
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
chatRef.value.demo = {
|
||||||
|
response: message => {
|
||||||
|
console.log(message);
|
||||||
|
return {
|
||||||
|
text: "仅演示,如需AI服务,请参考 https://deepchat.dev/docs/connect"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<deep-chat
|
||||||
|
ref="chatRef"
|
||||||
|
auxiliaryStyle="
|
||||||
|
.deep-chat-top-message .message-bubble {
|
||||||
|
border-top-left-radius: 5px !important;
|
||||||
|
border-top-right-radius: 5px !important;
|
||||||
|
}
|
||||||
|
.deep-chat-middle-message .message-bubble {
|
||||||
|
margin-top: 0px;
|
||||||
|
}
|
||||||
|
.deep-chat-bottom-message .message-bubble {
|
||||||
|
margin-top: 0px;
|
||||||
|
border-bottom-left-radius: 5px !important;
|
||||||
|
border-bottom-right-radius: 5px !important;
|
||||||
|
}
|
||||||
|
.deep-chat-top-message.deep-chat-bottom-message .message-bubble {
|
||||||
|
margin-top: 10px;
|
||||||
|
}"
|
||||||
|
:messageStyles="{
|
||||||
|
default: {
|
||||||
|
shared: {
|
||||||
|
bubble: {
|
||||||
|
borderRadius: '0px'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:textInput="{
|
||||||
|
placeholder: { text: '发送消息' }
|
||||||
|
}"
|
||||||
|
:history="[
|
||||||
|
{ text: '组1', role: 'group1' },
|
||||||
|
{ text: '组2-1', role: 'group2' },
|
||||||
|
{ text: '组2-2', role: 'group2' },
|
||||||
|
{ text: '组2-3', role: 'group2' },
|
||||||
|
{ text: '组3-1', role: 'group3' },
|
||||||
|
{ text: '组3-2', role: 'group3' }
|
||||||
|
]"
|
||||||
|
:demo="true"
|
||||||
|
/>
|
||||||
|
</template>
|
48
src/views/chatai/components/IntroPanel.vue
Normal file
48
src/views/chatai/components/IntroPanel.vue
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import "deep-chat";
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
|
||||||
|
const chatRef = ref();
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
chatRef.value.demo = {
|
||||||
|
response: message => {
|
||||||
|
console.log(message);
|
||||||
|
return {
|
||||||
|
text: "仅演示,如需AI服务,请参考 https://deepchat.dev/docs/connect"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<deep-chat
|
||||||
|
ref="chatRef"
|
||||||
|
:textInput="{
|
||||||
|
placeholder: { text: '发送消息' }
|
||||||
|
}"
|
||||||
|
demo="true"
|
||||||
|
style="border-radius: 8px"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
style="
|
||||||
|
display: none;
|
||||||
|
width: 200px;
|
||||||
|
padding: 12px;
|
||||||
|
padding-bottom: 15px;
|
||||||
|
background-color: #f3f3f3;
|
||||||
|
border-radius: 10px;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<div style="margin-bottom: 8px; font-size: 16px; text-align: center">
|
||||||
|
<b>简介面板</b>
|
||||||
|
</div>
|
||||||
|
<div style="font-size: 15px; line-height: 20px">
|
||||||
|
插入描述以帮助您的用户了解如何使用该组件
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</deep-chat>
|
||||||
|
</template>
|
100
src/views/chatai/components/LoFi.vue
Normal file
100
src/views/chatai/components/LoFi.vue
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import "deep-chat";
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
|
||||||
|
const chatRef = ref();
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
chatRef.value.demo = {
|
||||||
|
response: message => {
|
||||||
|
console.log(message);
|
||||||
|
return {
|
||||||
|
text: "仅演示,如需AI服务,请参考 https://deepchat.dev/docs/connect"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<deep-chat
|
||||||
|
ref="chatRef"
|
||||||
|
style="
|
||||||
|
border-radius: 10px;
|
||||||
|
border: unset;
|
||||||
|
background-image: url("https://xiaoxian521.github.io/hyperlink/img/vue-pure-admin/chatai/lofi.png");
|
||||||
|
background-size: cover;
|
||||||
|
"
|
||||||
|
:messageStyles="{
|
||||||
|
default: {
|
||||||
|
user: {
|
||||||
|
bubble: {
|
||||||
|
background:
|
||||||
|
'linear-gradient(90deg, rgb(225 37 255) 0%, rgb(161, 99, 233) 100%)',
|
||||||
|
color: 'white'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ai: {
|
||||||
|
bubble: {
|
||||||
|
background:
|
||||||
|
'linear-gradient(90deg, rgb(0, 162, 255) 30%, rgb(197 119 255) 100%)',
|
||||||
|
color: 'white'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
loading: {
|
||||||
|
message: {
|
||||||
|
styles: {
|
||||||
|
bubble: {
|
||||||
|
background:
|
||||||
|
'linear-gradient(90deg, rgb(0, 162, 255) 30%, rgb(197 119 255) 100%)',
|
||||||
|
color: 'white'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:textInput="{
|
||||||
|
placeholder: { text: '发送消息' },
|
||||||
|
styles: {
|
||||||
|
container: {
|
||||||
|
backgroundColor: 'rgb(239 245 255)',
|
||||||
|
color: '#0d008d'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:submitButtonStyles="{
|
||||||
|
submit: {
|
||||||
|
svg: {
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(26%) sepia(95%) saturate(6989%) hue-rotate(288deg) brightness(107%) contrast(122%)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
auxiliaryStyle="
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background-color: #54a7ff;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background-color: unset;
|
||||||
|
}"
|
||||||
|
:history="[
|
||||||
|
{ text: '公认的最减肥运动推荐一个?', role: 'user' },
|
||||||
|
{
|
||||||
|
text: '公认的最减肥运动之一是高强度间歇训练(HIIT),它通过短时间内的高强度运动和短暂休息交替进行,不仅在运动过程中燃烧大量卡路里,还能通过“后燃效应”让身体在运动结束后继续消耗热量。',
|
||||||
|
role: 'ai'
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
:demo="true"
|
||||||
|
:connect="{ stream: true }"
|
||||||
|
/>
|
||||||
|
</template>
|
44
src/views/chatai/components/MessageCode.vue
Normal file
44
src/views/chatai/components/MessageCode.vue
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import "deep-chat";
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
import hljs from "highlight.js";
|
||||||
|
// @ts-expect-error
|
||||||
|
window.hljs = hljs;
|
||||||
|
|
||||||
|
const chatRef = ref();
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
chatRef.value.demo = {
|
||||||
|
response: message => {
|
||||||
|
console.log(message);
|
||||||
|
return {
|
||||||
|
text: "仅演示,如需AI服务,请参考 https://deepchat.dev/docs/connect"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<deep-chat
|
||||||
|
ref="chatRef"
|
||||||
|
style="border-radius: 8px"
|
||||||
|
:history="[
|
||||||
|
{
|
||||||
|
text: '```java\nwhile (i < 5) {\n console.log("hi");\n i+= 1;\n}\n```',
|
||||||
|
role: 'ai'
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
:textInput="{
|
||||||
|
placeholder: { text: '发送消息' }
|
||||||
|
}"
|
||||||
|
:messageStyles="{
|
||||||
|
default: {
|
||||||
|
shared: {
|
||||||
|
bubble: { maxWidth: '270px' }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:demo="true"
|
||||||
|
/>
|
||||||
|
</template>
|
65
src/views/chatai/components/Red.vue
Normal file
65
src/views/chatai/components/Red.vue
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import "deep-chat";
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
|
||||||
|
const chatRef = ref();
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
chatRef.value.demo = {
|
||||||
|
response: message => {
|
||||||
|
console.log(message);
|
||||||
|
return {
|
||||||
|
text: "仅演示,如需AI服务,请参考 https://deepchat.dev/docs/connect"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<deep-chat
|
||||||
|
ref="chatRef"
|
||||||
|
:messageStyles="{
|
||||||
|
default: { user: { bubble: { backgroundColor: '#ff2020' } } }
|
||||||
|
}"
|
||||||
|
:avatars="{
|
||||||
|
ai: {
|
||||||
|
src: 'https://xiaoxian521.github.io/hyperlink/img/vue-pure-admin/chatai/robot.png'
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:submitButtonStyles="{
|
||||||
|
submit: {
|
||||||
|
svg: {
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(15%) sepia(50%) saturate(6203%) hue-rotate(352deg) brightness(111%) contrast(127%)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:textInput="{
|
||||||
|
styles: {
|
||||||
|
container: {
|
||||||
|
border: '1px solid #ffd9d9',
|
||||||
|
backgroundColor: '#fffcfc'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
placeholder: { text: '发送消息' }
|
||||||
|
}"
|
||||||
|
auxiliaryStyle="
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background-color: red;
|
||||||
|
}"
|
||||||
|
:history="[
|
||||||
|
{ text: '健身的最佳时间?', role: 'user' },
|
||||||
|
{
|
||||||
|
text: '健身的最佳时间是根据个人作息和偏好而定,但一般建议在下午或傍晚进行锻炼以达到最佳状态。',
|
||||||
|
role: 'ai'
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
:demo="true"
|
||||||
|
:connect="{ stream: true }"
|
||||||
|
/>
|
||||||
|
</template>
|
35
src/views/chatai/components/Speech.vue
Normal file
35
src/views/chatai/components/Speech.vue
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import "deep-chat";
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
|
||||||
|
const chatRef = ref();
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
chatRef.value.demo = {
|
||||||
|
response: message => {
|
||||||
|
console.log(message);
|
||||||
|
return {
|
||||||
|
text: "仅演示,如需AI服务,请参考 https://deepchat.dev/docs/connect"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<deep-chat
|
||||||
|
ref="chatRef"
|
||||||
|
style="border-radius: 8px"
|
||||||
|
:speechToText="{
|
||||||
|
webSpeech: { language: 'zh-CN' },
|
||||||
|
button: { position: 'outside-left' }
|
||||||
|
}"
|
||||||
|
:textInput="{
|
||||||
|
placeholder: { text: '发送消息' }
|
||||||
|
}"
|
||||||
|
:introMessage="{
|
||||||
|
text: '单击左下角麦克风开始转录您的讲话。'
|
||||||
|
}"
|
||||||
|
:demo="true"
|
||||||
|
/>
|
||||||
|
</template>
|
135
src/views/chatai/components/iMessage.vue
Normal file
135
src/views/chatai/components/iMessage.vue
Normal file
@ -0,0 +1,135 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import "deep-chat";
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
|
||||||
|
const chatRef = ref();
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
chatRef.value.demo = {
|
||||||
|
response: message => {
|
||||||
|
console.log(message);
|
||||||
|
return {
|
||||||
|
text: "仅演示,如需AI服务,请参考 https://deepchat.dev/docs/connect"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<deep-chat
|
||||||
|
ref="chatRef"
|
||||||
|
style="
|
||||||
|
border-radius: 10px;
|
||||||
|
font-size: 16px;
|
||||||
|
font-family:
|
||||||
|
system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
|
||||||
|
"Apple Color Emoji", "Segoe UI Emoji",
|
||||||
|
"Segoe UI Symbol";
|
||||||
|
"
|
||||||
|
:messageStyles="{
|
||||||
|
default: {
|
||||||
|
shared: {
|
||||||
|
bubble: {
|
||||||
|
maxWidth: '75%',
|
||||||
|
borderRadius: '1em',
|
||||||
|
padding: '.42em .7em',
|
||||||
|
fontSize: '15px'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
user: { bubble: { backgroundColor: '#00c82a' } }
|
||||||
|
},
|
||||||
|
loading: {
|
||||||
|
message: {
|
||||||
|
styles: {
|
||||||
|
bubble: { padding: '0.6em 0.75em 0.6em 1.3em' }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:submitButtonStyles="{
|
||||||
|
submit: {
|
||||||
|
container: {
|
||||||
|
default: {
|
||||||
|
width: '0.95em',
|
||||||
|
height: '0.95em',
|
||||||
|
justifyContent: 'center',
|
||||||
|
display: 'flex',
|
||||||
|
borderRadius: '25px',
|
||||||
|
padding: '0.3em',
|
||||||
|
backgroundColor: '#00c82a'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
svg: {
|
||||||
|
content:
|
||||||
|
'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 115.4 122.88"><path d="M24.94,67.88A14.66,14.66,0,0,1,4.38,47L47.83,4.21a14.66,14.66,0,0,1,20.56,0L111,46.15A14.66,14.66,0,0,1,90.46,67.06l-18-17.69-.29,59.17c-.1,19.28-29.42,19-29.33-.25L43.14,50,24.94,67.88Z"/></svg>',
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(315deg) brightness(99%) contrast(102%)',
|
||||||
|
transform: 'scale(0.95)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:textInput="{
|
||||||
|
placeholder: { text: '发送消息' },
|
||||||
|
styles: {
|
||||||
|
container: {
|
||||||
|
boxShadow: 'none',
|
||||||
|
borderRadius: '1em',
|
||||||
|
border: '1px solid rgba(0,0,0,0.2)'
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
padding: '0.4em 0.8em',
|
||||||
|
paddingRight: '2.5em'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:images="true"
|
||||||
|
:dropupStyles="{
|
||||||
|
button: {
|
||||||
|
styles: {
|
||||||
|
container: {
|
||||||
|
default: {
|
||||||
|
width: '1.6em',
|
||||||
|
height: '1.6em',
|
||||||
|
borderRadius: '25px',
|
||||||
|
backgroundColor: '#8282821a'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
svg: {
|
||||||
|
styles: {
|
||||||
|
default: {
|
||||||
|
width: '1em',
|
||||||
|
left: '5px',
|
||||||
|
top: '0.2em',
|
||||||
|
filter:
|
||||||
|
'brightness(0) saturate(100%) invert(56%) sepia(0%) saturate(2755%) hue-rotate(104deg) brightness(96%) contrast(93%)'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
content:
|
||||||
|
'<?xml version="1.0" encoding="utf-8"?><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M3,11h8V3a1,1,0,0,1,2,0v8h8a1,1,0,0,1,0,2H13v8a1,1,0,0,1-2,0V13H3a1,1,0,0,1,0-2Z"/></svg>'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
:attachmentContainerStyle="{
|
||||||
|
backgroundColor: 'rgba(255, 255, 255, 0.6)',
|
||||||
|
borderRadius: '5px 5px 0 0',
|
||||||
|
border: '1px solid rgba(0,0,0,0.2)',
|
||||||
|
top: '-2.6em',
|
||||||
|
height: '4em'
|
||||||
|
}"
|
||||||
|
:history="[
|
||||||
|
{ text: '钓鱼需要准备什么东西?', role: 'user' },
|
||||||
|
{
|
||||||
|
text: '钓鱼需要准备鱼竿、渔轮、钓线、鱼钩、浮漂、铅坠和适合的饵料。',
|
||||||
|
role: 'ai'
|
||||||
|
}
|
||||||
|
]"
|
||||||
|
:demo="true"
|
||||||
|
:connect="{ stream: true }"
|
||||||
|
/>
|
||||||
|
</template>
|
13
src/views/chatai/components/index.ts
Normal file
13
src/views/chatai/components/index.ts
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
export { default as ChatGPT } from "./ChatGPT.vue";
|
||||||
|
export { default as Bard } from "./Bard.vue";
|
||||||
|
export { default as Bing } from "./Bing.vue";
|
||||||
|
export { default as iMessage } from "./iMessage.vue";
|
||||||
|
export { default as Blue } from "./Blue.vue";
|
||||||
|
export { default as LoFi } from "./LoFi.vue";
|
||||||
|
export { default as Red } from "./Red.vue";
|
||||||
|
export { default as Dark } from "./Dark.vue";
|
||||||
|
export { default as FullInput } from "./FullInput.vue";
|
||||||
|
export { default as Group } from "./Group.vue";
|
||||||
|
export { default as MessageCode } from "./MessageCode.vue";
|
||||||
|
export { default as Speech } from "./Speech.vue";
|
||||||
|
export { default as IntroPanel } from "./IntroPanel.vue";
|
150
src/views/chatai/index.vue
Normal file
150
src/views/chatai/index.vue
Normal file
@ -0,0 +1,150 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { h } from "vue";
|
||||||
|
import { ElEmpty } from "element-plus";
|
||||||
|
import { deviceDetection } from "@pureadmin/utils";
|
||||||
|
import {
|
||||||
|
ChatGPT,
|
||||||
|
Bard,
|
||||||
|
Bing,
|
||||||
|
iMessage,
|
||||||
|
Blue,
|
||||||
|
LoFi,
|
||||||
|
Red,
|
||||||
|
Dark,
|
||||||
|
FullInput,
|
||||||
|
Group,
|
||||||
|
MessageCode,
|
||||||
|
Speech,
|
||||||
|
IntroPanel
|
||||||
|
} from "./components";
|
||||||
|
|
||||||
|
defineOptions({
|
||||||
|
name: "ChatAi"
|
||||||
|
});
|
||||||
|
|
||||||
|
const swiperExample: any[] = [
|
||||||
|
{ id: 0, label: "ChatGPT 风格", component: ChatGPT },
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
label: "Gemini 风格",
|
||||||
|
component: Bard
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
label: "BingChat 风格",
|
||||||
|
component: Bing
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
label: "iMessage 风格",
|
||||||
|
component: iMessage
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
label: "蓝色主题且可设置背景图像",
|
||||||
|
component: Blue
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
label: "渐变主题且可设置背景图像",
|
||||||
|
component: LoFi
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
label: "红色风格",
|
||||||
|
component: Red
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 7,
|
||||||
|
label: "深色模式",
|
||||||
|
component: Dark
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 8,
|
||||||
|
label: "全宽输入框",
|
||||||
|
component: FullInput
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 9,
|
||||||
|
label: "分组消息",
|
||||||
|
component: Group
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 10,
|
||||||
|
label: "代码消息",
|
||||||
|
component: MessageCode
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 11,
|
||||||
|
label: "语音输入",
|
||||||
|
component: Speech
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 12,
|
||||||
|
label: "简介面板",
|
||||||
|
component: IntroPanel
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 13,
|
||||||
|
label: "更多示例",
|
||||||
|
component: h(ElEmpty, {
|
||||||
|
description: "敬请期待",
|
||||||
|
style: { minWidth: "320px", height: "350px" }
|
||||||
|
})
|
||||||
|
}
|
||||||
|
];
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-card shadow="never">
|
||||||
|
<template #header>
|
||||||
|
<div class="card-header">
|
||||||
|
<span class="font-medium">
|
||||||
|
Ai聊天组件,采用开源的
|
||||||
|
<el-link
|
||||||
|
href="https://deepchat.dev/"
|
||||||
|
target="_blank"
|
||||||
|
style="margin: 0 4px 5px; font-size: 16px"
|
||||||
|
>
|
||||||
|
deep-chat
|
||||||
|
</el-link>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<el-link
|
||||||
|
class="mt-2"
|
||||||
|
href="https://github.com/pure-admin/vue-pure-admin/blob/main/src/views/chatai"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
代码位置 src/views/chatai
|
||||||
|
</el-link>
|
||||||
|
</template>
|
||||||
|
<el-space wrap>
|
||||||
|
<el-card
|
||||||
|
v-for="item in swiperExample"
|
||||||
|
:key="item.id"
|
||||||
|
:class="['mt-4', !deviceDetection() && 'ml-16']"
|
||||||
|
>
|
||||||
|
<template #header>
|
||||||
|
{{ item.label }}
|
||||||
|
</template>
|
||||||
|
<component :is="item.component" />
|
||||||
|
</el-card>
|
||||||
|
</el-space>
|
||||||
|
</el-card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
:deep(.el-card__body) {
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (width <= 750px) {
|
||||||
|
:deep(.el-card__body) {
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-content {
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -233,10 +233,10 @@ watch(size, val =>
|
|||||||
|
|
||||||
.el-button .custom-loading .circular .path {
|
.el-button .custom-loading .circular .path {
|
||||||
stroke: var(--el-button-text-color);
|
stroke: var(--el-button-text-color);
|
||||||
|
stroke-width: 2;
|
||||||
|
stroke-linecap: round;
|
||||||
stroke-dasharray: 90, 150;
|
stroke-dasharray: 90, 150;
|
||||||
stroke-dashoffset: 0;
|
stroke-dashoffset: 0;
|
||||||
stroke-linecap: round;
|
|
||||||
stroke-width: 2;
|
|
||||||
animation: loading-dash 1.5s ease-in-out infinite;
|
animation: loading-dash 1.5s ease-in-out infinite;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -3,7 +3,7 @@ import { h } from "vue";
|
|||||||
import hot from "@/assets/svg/hot.svg?component";
|
import hot from "@/assets/svg/hot.svg?component";
|
||||||
import { message, closeAllMessage } from "@/utils/message";
|
import { message, closeAllMessage } from "@/utils/message";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
import Check from "@iconify-icons/ep/check";
|
import Check from "~icons/ep/check";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "Message"
|
name: "Message"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<script setup lang="tsx">
|
<script setup lang="tsx">
|
||||||
import { h, ref, watch } from "vue";
|
import { h, ref, watch } from "vue";
|
||||||
import { message } from "@/utils/message";
|
import { message } from "@/utils/message";
|
||||||
import HomeFilled from "@iconify-icons/ep/home-filled";
|
import HomeFilled from "~icons/ep/home-filled";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
import Segmented, { type OptionsType } from "@/components/ReSegmented";
|
import Segmented, { type OptionsType } from "@/components/ReSegmented";
|
||||||
|
|
||||||
|
@ -51,10 +51,10 @@ const formatTooltip = (val: number) => {
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 44px;
|
line-height: 44px;
|
||||||
color: var(--el-text-color-secondary);
|
color: var(--el-text-color-secondary);
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,10 +32,10 @@ const value2 = ref(0);
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 44px;
|
line-height: 44px;
|
||||||
color: var(--el-text-color-secondary);
|
color: var(--el-text-color-secondary);
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ import { markRaw } from "vue";
|
|||||||
import { randomGradient } from "@pureadmin/utils";
|
import { randomGradient } from "@pureadmin/utils";
|
||||||
import { useRenderFlicker } from "@/components/ReFlicker";
|
import { useRenderFlicker } from "@/components/ReFlicker";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
import Iphone from "@iconify-icons/ep/iphone";
|
import Iphone from "~icons/ep/iphone";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "TimeLine"
|
name: "TimeLine"
|
||||||
|
@ -4,7 +4,7 @@ import { formUpload } from "@/api/mock";
|
|||||||
import { message } from "@/utils/message";
|
import { message } from "@/utils/message";
|
||||||
import { createFormData } from "@pureadmin/utils";
|
import { createFormData } from "@pureadmin/utils";
|
||||||
|
|
||||||
import UploadIcon from "@iconify-icons/ri/upload-2-line";
|
import UploadIcon from "~icons/ri/upload-2-line";
|
||||||
|
|
||||||
const formRef = ref();
|
const formRef = ref();
|
||||||
const uploadRef = ref();
|
const uploadRef = ref();
|
||||||
|
@ -8,9 +8,9 @@ import { message } from "@/utils/message";
|
|||||||
import type { UploadFile } from "element-plus";
|
import type { UploadFile } from "element-plus";
|
||||||
import { getKeyList, extractFields, downloadByData } from "@pureadmin/utils";
|
import { getKeyList, extractFields, downloadByData } from "@pureadmin/utils";
|
||||||
|
|
||||||
import Add from "@iconify-icons/ep/plus";
|
import Add from "~icons/ep/plus";
|
||||||
import Eye from "@iconify-icons/ri/eye-line";
|
import Eye from "~icons/ri/eye-line";
|
||||||
import Delete from "@iconify-icons/ri/delete-bin-7-line";
|
import Delete from "~icons/ri/delete-bin-7-line";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "PureUpload"
|
name: "PureUpload"
|
||||||
|
@ -5,7 +5,7 @@ import laptopIcon from "@/assets/svg/laptop.svg?component";
|
|||||||
import serviceIcon from "@/assets/svg/service.svg?component";
|
import serviceIcon from "@/assets/svg/service.svg?component";
|
||||||
import calendarIcon from "@/assets/svg/calendar.svg?component";
|
import calendarIcon from "@/assets/svg/calendar.svg?component";
|
||||||
import userAvatarIcon from "@/assets/svg/user_avatar.svg?component";
|
import userAvatarIcon from "@/assets/svg/user_avatar.svg?component";
|
||||||
import More2Fill from "@iconify-icons/ri/more-2-fill";
|
import More2Fill from "~icons/ri/more-2-fill";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "ReCard"
|
name: "ReCard"
|
||||||
@ -139,10 +139,10 @@ const cardLogoClass = computed(() => [
|
|||||||
height: 40px;
|
height: 40px;
|
||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
font-size: 12px;
|
|
||||||
line-height: 20px;
|
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
-webkit-line-clamp: 2;
|
-webkit-line-clamp: 2;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 20px;
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ import { ref, onMounted, nextTick } from "vue";
|
|||||||
import ListCard from "./components/ListCard.vue";
|
import ListCard from "./components/ListCard.vue";
|
||||||
import ListDialogForm from "./components/ListDialogForm.vue";
|
import ListDialogForm from "./components/ListDialogForm.vue";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
import AddFill from "@iconify-icons/ri/add-circle-line";
|
import AddFill from "~icons/ri/add-circle-line";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "CardList"
|
name: "CardList"
|
||||||
|
@ -9,7 +9,8 @@ import { $t, transformI18n } from "@/plugins/i18n";
|
|||||||
import { useVerifyCode } from "../utils/verifyCode";
|
import { useVerifyCode } from "../utils/verifyCode";
|
||||||
import { useUserStoreHook } from "@/store/modules/user";
|
import { useUserStoreHook } from "@/store/modules/user";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
import Iphone from "@iconify-icons/ep/iphone";
|
import Iphone from "~icons/ep/iphone";
|
||||||
|
import Keyhole from "~icons/ri/shield-keyhole-line";
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
@ -64,7 +65,7 @@ function onBack() {
|
|||||||
v-model="ruleForm.verifyCode"
|
v-model="ruleForm.verifyCode"
|
||||||
clearable
|
clearable
|
||||||
:placeholder="t('login.pureSmsVerifyCode')"
|
:placeholder="t('login.pureSmsVerifyCode')"
|
||||||
:prefix-icon="useRenderIcon('ri:shield-keyhole-line')"
|
:prefix-icon="useRenderIcon(Keyhole)"
|
||||||
/>
|
/>
|
||||||
<el-button
|
<el-button
|
||||||
:disabled="isDisabled"
|
:disabled="isDisabled"
|
||||||
|
@ -9,9 +9,10 @@ import { useVerifyCode } from "../utils/verifyCode";
|
|||||||
import { $t, transformI18n } from "@/plugins/i18n";
|
import { $t, transformI18n } from "@/plugins/i18n";
|
||||||
import { useUserStoreHook } from "@/store/modules/user";
|
import { useUserStoreHook } from "@/store/modules/user";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
import Lock from "@iconify-icons/ri/lock-fill";
|
import Lock from "~icons/ri/lock-fill";
|
||||||
import Iphone from "@iconify-icons/ep/iphone";
|
import Iphone from "~icons/ep/iphone";
|
||||||
import User from "@iconify-icons/ri/user-3-fill";
|
import User from "~icons/ri/user-3-fill";
|
||||||
|
import Keyhole from "~icons/ri/shield-keyhole-line";
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const checked = ref(false);
|
const checked = ref(false);
|
||||||
@ -118,7 +119,7 @@ function onBack() {
|
|||||||
v-model="ruleForm.verifyCode"
|
v-model="ruleForm.verifyCode"
|
||||||
clearable
|
clearable
|
||||||
:placeholder="t('login.pureSmsVerifyCode')"
|
:placeholder="t('login.pureSmsVerifyCode')"
|
||||||
:prefix-icon="useRenderIcon('ri:shield-keyhole-line')"
|
:prefix-icon="useRenderIcon(Keyhole)"
|
||||||
/>
|
/>
|
||||||
<el-button
|
<el-button
|
||||||
:disabled="isDisabled"
|
:disabled="isDisabled"
|
||||||
|
@ -9,8 +9,9 @@ import { useVerifyCode } from "../utils/verifyCode";
|
|||||||
import { $t, transformI18n } from "@/plugins/i18n";
|
import { $t, transformI18n } from "@/plugins/i18n";
|
||||||
import { useUserStoreHook } from "@/store/modules/user";
|
import { useUserStoreHook } from "@/store/modules/user";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
import Lock from "@iconify-icons/ri/lock-fill";
|
import Lock from "~icons/ri/lock-fill";
|
||||||
import Iphone from "@iconify-icons/ep/iphone";
|
import Iphone from "~icons/ep/iphone";
|
||||||
|
import Keyhole from "~icons/ri/shield-keyhole-line";
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
@ -88,7 +89,7 @@ function onBack() {
|
|||||||
v-model="ruleForm.verifyCode"
|
v-model="ruleForm.verifyCode"
|
||||||
clearable
|
clearable
|
||||||
:placeholder="t('login.pureSmsVerifyCode')"
|
:placeholder="t('login.pureSmsVerifyCode')"
|
||||||
:prefix-icon="useRenderIcon('ri:shield-keyhole-line')"
|
:prefix-icon="useRenderIcon(Keyhole)"
|
||||||
/>
|
/>
|
||||||
<el-button
|
<el-button
|
||||||
:disabled="isDisabled"
|
:disabled="isDisabled"
|
||||||
|
@ -28,10 +28,11 @@ 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 globalization from "@/assets/svg/globalization.svg?component";
|
import globalization from "@/assets/svg/globalization.svg?component";
|
||||||
import Lock from "@iconify-icons/ri/lock-fill";
|
import Lock from "~icons/ri/lock-fill";
|
||||||
import Check from "@iconify-icons/ep/check";
|
import Check from "~icons/ep/check";
|
||||||
import User from "@iconify-icons/ri/user-3-fill";
|
import User from "~icons/ri/user-3-fill";
|
||||||
import Info from "@iconify-icons/ri/information-line";
|
import Info from "~icons/ri/information-line";
|
||||||
|
import Keyhole from "~icons/ri/shield-keyhole-line";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "Login"
|
name: "Login"
|
||||||
@ -224,7 +225,7 @@ watch(loginDay, value => {
|
|||||||
v-model="ruleForm.verifyCode"
|
v-model="ruleForm.verifyCode"
|
||||||
clearable
|
clearable
|
||||||
:placeholder="t('login.pureVerifyCode')"
|
:placeholder="t('login.pureVerifyCode')"
|
||||||
:prefix-icon="useRenderIcon('ri:shield-keyhole-line')"
|
:prefix-icon="useRenderIcon(Keyhole)"
|
||||||
>
|
>
|
||||||
<template v-slot:append>
|
<template v-slot:append>
|
||||||
<ReImageVerify v-model:code="imgCode" />
|
<ReImageVerify v-model:code="imgCode" />
|
||||||
|
@ -5,8 +5,8 @@ import { getPickerShortcuts } from "../../utils";
|
|||||||
import { PureTableBar } from "@/components/RePureTableBar";
|
import { PureTableBar } from "@/components/RePureTableBar";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
|
|
||||||
import Delete from "@iconify-icons/ep/delete";
|
import Delete from "~icons/ep/delete";
|
||||||
import Refresh from "@iconify-icons/ep/refresh";
|
import Refresh from "~icons/ep/refresh";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "LoginLog"
|
name: "LoginLog"
|
||||||
|
@ -5,8 +5,8 @@ import { getPickerShortcuts } from "../../utils";
|
|||||||
import { PureTableBar } from "@/components/RePureTableBar";
|
import { PureTableBar } from "@/components/RePureTableBar";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
|
|
||||||
import Delete from "@iconify-icons/ep/delete";
|
import Delete from "~icons/ep/delete";
|
||||||
import Refresh from "@iconify-icons/ep/refresh";
|
import Refresh from "~icons/ep/refresh";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "OperationLog"
|
name: "OperationLog"
|
||||||
|
@ -6,7 +6,7 @@ import type { PaginationProps } from "@pureadmin/table";
|
|||||||
import { type Ref, reactive, ref, onMounted, toRaw } from "vue";
|
import { type Ref, reactive, ref, onMounted, toRaw } from "vue";
|
||||||
import { getKeyList, useCopyToClipboard } from "@pureadmin/utils";
|
import { getKeyList, useCopyToClipboard } from "@pureadmin/utils";
|
||||||
import { getSystemLogsList, getSystemLogsDetail } from "@/api/system";
|
import { getSystemLogsList, getSystemLogsDetail } from "@/api/system";
|
||||||
import Info from "@iconify-icons/ri/question-line";
|
import Info from "~icons/ri/question-line";
|
||||||
|
|
||||||
export function useRole(tableRef: Ref) {
|
export function useRole(tableRef: Ref) {
|
||||||
const form = reactive({
|
const form = reactive({
|
||||||
|
@ -5,9 +5,9 @@ import { getPickerShortcuts } from "../../utils";
|
|||||||
import { PureTableBar } from "@/components/RePureTableBar";
|
import { PureTableBar } from "@/components/RePureTableBar";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
|
|
||||||
import View from "@iconify-icons/ep/view";
|
import View from "~icons/ep/view";
|
||||||
import Delete from "@iconify-icons/ep/delete";
|
import Delete from "~icons/ep/delete";
|
||||||
import Refresh from "@iconify-icons/ep/refresh";
|
import Refresh from "~icons/ep/refresh";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "SystemLog"
|
name: "SystemLog"
|
||||||
|
@ -4,8 +4,8 @@ import { useRole } from "./hook";
|
|||||||
import { PureTableBar } from "@/components/RePureTableBar";
|
import { PureTableBar } from "@/components/RePureTableBar";
|
||||||
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
||||||
|
|
||||||
import Plane from "@iconify-icons/ri/plane-line";
|
import Plane from "~icons/ri/plane-line";
|
||||||
import Refresh from "@iconify-icons/ep/refresh";
|
import Refresh from "~icons/ep/refresh";
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: "OnlineUser"
|
name: "OnlineUser"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import ArrowRightSLine from "@iconify-icons/ri/arrow-right-s-line";
|
import ArrowRightSLine from "~icons/ri/arrow-right-s-line";
|
||||||
import CloseCircleLine from "@iconify-icons/ri/close-circle-line";
|
import CloseCircleLine from "~icons/ri/close-circle-line";
|
||||||
|
|
||||||
export function useColumns() {
|
export function useColumns() {
|
||||||
const columns = [
|
const columns = [
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user