补全信息

This commit is contained in:
2025-11-18 15:47:41 +08:00
parent 47e3c5f637
commit 80ef6f7ce8
6 changed files with 614 additions and 583 deletions

1132
cdTMP/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -13,54 +13,53 @@
"dependencies": {
"@arco-design/color": "^0.4.0",
"@arco-design/web-vue": "^2.57.0",
"@tanstack/vue-query": "^5.83.1",
"@tanstack/vue-query": "^5.91.2",
"@tinymce/tinymce-vue": "^6.3.0",
"@vueuse/core": "^13.6.0",
"axios": "^1.11.0",
"@vueuse/core": "^14.0.0",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"dayjs": "^1.11.19",
"file2md5": "^1.3.0",
"lodash-es": "^4.17.21",
"lucide-vue-next": "^0.539.0",
"mammoth": "^1.10.0",
"mammoth": "^1.11.0",
"mitt": "^3.0.1",
"nprogress": "^0.2.0",
"pinia": "^3.0.3",
"pinyin-match": "^1.2.8",
"pinia": "^3.0.4",
"pinyin-match": "^1.2.9",
"postcss-import": "^16.1.1",
"qs": "^6.14.0",
"tailwind-merge": "^3.3.1",
"tinymce": "^8.0.2",
"tw-animate-css": "^1.3.6",
"vue": "^3.5.18",
"tailwind-merge": "^3.4.0",
"tinymce": "^7.9.1",
"tw-animate-css": "^1.4.0",
"vue": "^3.5.24",
"vue-clipboard3": "^2.0.0",
"vue-color-kit": "^1.0.6",
"vue-data-ui": "^2.17.11",
"vue-router": "^4.5.1",
"vue-data-ui": "^3.7.6",
"vue-router": "^4.6.3",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/vite": "^4.1.11",
"@tailwindcss/postcss": "^4.1.17",
"@tailwindcss/vite": "^4.1.17",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.2.1",
"@types/node": "^24.10.1",
"@types/nprogress": "^0.2.3",
"@types/qs": "^6.14.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.0.1",
"@vue/babel-plugin-jsx": "^1.5.0",
"browserslist": "^4.25.2",
"eslint": "^9.33.0",
"eslint-plugin-vue": "^10.4.0",
"less": "^4.4.0",
"@vitejs/plugin-vue-jsx": "^5.1.1",
"@vue/babel-plugin-jsx": "^2.0.1",
"browserslist": "^4.28.0",
"eslint": "^9.39.1",
"eslint-plugin-vue": "^10.5.1",
"less": "^4.4.2",
"less-loader": "^12.3.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"rollup-plugin-visualizer": "^6.0.3",
"tailwindcss": "^4.1.11",
"typescript": "^5.9.2",
"vite": "^7.1.2",
"rollup-plugin-visualizer": "^6.0.5",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vue-eslint-parser": "^10.2.0"
}
}

View File

@@ -150,7 +150,12 @@ import ParentPreview from "@/views/project/ParentPreview/index.vue"
// 判断是否有
const formKey = computed(() => {
// 去掉双击被测件即key.split("").length > 1
if (form.value.key && form.value.key.split("-").length > 2) {
if (
form.value.key &&
typeof form.value.key !== "number" &&
form.value.key &&
form.value.key.split("-").length > 2
) {
// 如果存在则取前面的
return form.value.key.slice(0, -2)
}

View File

@@ -12,7 +12,7 @@
:heading="5"
>
<div
class="font-extrabold bg-clip-text text-transparent bg-gradient-to-r from-blue-500 to-purple-600"
class="font-extrabold bg-clip-text text-transparent bg-linear-to-r from-blue-500 to-purple-600"
>
测试管理平台
</div>

View File

@@ -1,5 +1,6 @@
{
"compilerOptions": {
"ignoreDeprecations": "6.0",
"composite": false,
"outDir": "build",
"declaration": true,