update 升级 全部依赖版本与适配性代码修改

This commit is contained in:
疯狂的狮子Li 2026-07-16 18:39:42 +08:00
parent 21fc08193e
commit c3477b3a5a
5 changed files with 870 additions and 916 deletions

View File

@ -25,49 +25,50 @@
"@highlightjs/vue-plugin": "2.1.2",
"@iconify/vue": "^5.0.1",
"@vueuse/core": "14.3.0",
"@wangeditor-next/editor": "5.7.13",
"@wangeditor-next/editor": "5.7.16",
"@wangeditor-next/editor-for-vue": "5.1.14",
"animate.css": "4.1.1",
"await-to-js": "3.0.0",
"axios": "1.18.1",
"crypto-js": "4.2.0",
"echarts": "6.1.0",
"element-plus": "2.14.2",
"element-plus": "2.14.3",
"highlight.js": "11.11.1",
"image-conversion": "2.1.1",
"jsencrypt": "3.5.4",
"nprogress": "0.2.0",
"pinia": "3.0.4",
"vue": "3.5.39",
"pinia": "4.0.2",
"vue": "3.5.40",
"vue-cropper": "1.1.4",
"vue-i18n": "11.4.6",
"vue-json-pretty": "2.6.0",
"vue-router": "5.1.0",
"vue-router": "5.2.0",
"vue-types": "7.0.0",
"vxe-table": "4.19.21"
"vxe-pc-ui": "4.16.13",
"vxe-table": "4.20.2"
},
"devDependencies": {
"@types/crypto-js": "4.2.2",
"@types/node": "^26.0.1",
"@types/node": "^26.1.1",
"@types/nprogress": "0.2.3",
"@unocss/preset-attributify": "66.7.3",
"@unocss/preset-wind3": "66.7.3",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/compiler-sfc": "3.5.39",
"autoprefixer": "10.5.2",
"oxfmt": "^0.56.0",
"oxlint": "^1.71.0",
"oxlint-tsgolint": "^0.23.0",
"@unocss/preset-attributify": "66.7.5",
"@unocss/preset-wind3": "66.7.5",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/compiler-sfc": "3.5.40",
"autoprefixer": "10.5.3",
"oxfmt": "^0.59.0",
"oxlint": "^1.74.0",
"oxlint-tsgolint": "^0.24.0",
"sass": "1.101.0",
"typescript": "^6.0.3",
"unocss": "66.7.3",
"unocss": "66.7.5",
"unplugin-auto-import": "21.0.0",
"unplugin-vue-components": "32.1.0",
"unplugin-vue-setup-extend-plus": "1.0.1",
"vite": "^8.1.0",
"vite-plugin-svg-icons-ng": "^1.9.1",
"vitest": "4.1.9",
"vue-tsc": "^3.3.5"
"vite": "^8.1.5",
"vite-plugin-svg-icons-ng": "^1.9.2",
"vitest": "4.1.10",
"vue-tsc": "^3.3.7"
},
"browserslist": [
"Chrome >= 87",

1736
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -104,7 +104,7 @@
</template>
<script setup lang="ts">
import { VxeTableInstance } from 'vxe-table';
import type { VxeTableInstance } from 'vxe-table';
import animateConfig from '@/animate';
import api from '@/api/system/role';
import { RoleVO, RoleQuery } from '@/api/system/role/types';

View File

@ -167,7 +167,7 @@
</template>
<script setup lang="ts">
import { VxeTableInstance } from 'vxe-table';
import type { VxeTableInstance } from 'vxe-table';
import animateConfig from '@/animate';
import { DeptTreeVO, DeptVO } from '@/api/system/dept/types';
import api from '@/api/system/user';

View File

@ -1,13 +1,15 @@
import HighLight from '@highlightjs/vue-plugin';
import { ElDialog } from 'element-plus';
import { createApp } from 'vue';
import { install as VxeTablePlugin, VxeUI } from 'vxe-table';
import VxeUIPlugin, { VxeUI } from 'vxe-pc-ui';
import VxeTablePlugin from 'vxe-table';
import 'virtual:uno.css';
import 'element-plus/theme-chalk/dark/css-vars.css';
import '@/assets/styles/index.scss';
import 'highlight.js/styles/atom-one-dark.css';
import 'highlight.js/lib/common';
import 'virtual:svg-icons-register';
import 'vxe-pc-ui/lib/style.css';
import 'vxe-table/lib/style.css';
import i18n from '@/lang/index';
import ElementIcons from '@/plugins/svgicon';
@ -31,6 +33,7 @@ app.use(ElementIcons);
app.use(store);
app.use(router);
app.use(i18n);
app.use(VxeUIPlugin);
app.use(VxeTablePlugin);
app.use(plugins);
directive(app);