fix: 修复设置里面不显示tab页签,导致某些页面需要点击查询按钮才有数据出来的bug

This commit is contained in:
xiaojunnuo
2026-06-14 14:57:47 +08:00
parent 48ab1fbffe
commit c1b5a35f90
25 changed files with 70 additions and 112 deletions
+2 -1
View File
@@ -12,7 +12,8 @@
"dev-build": "npm run build",
"preview": "vite preview",
"test:unit": "cross-env NODE_ENV=unittest echo no unit tests",
"pub": "npm publish"
"pub": "npm publish",
"compile": "npm run build"
},
"dependencies": {
"axios": "^1.9.0",
+2 -1
View File
@@ -15,7 +15,8 @@
"build2": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test:unit": "cross-env NODE_ENV=unittest echo no unit tests",
"pub": "npm publish"
"pub": "npm publish",
"compile": "npm run build"
},
"dependencies": {
"nanoid": "^4.0.0"
+5 -1
View File
@@ -6,11 +6,15 @@
"module": "./dist/bundle.js",
"types": "./dist/d/index.d.ts",
"scripts": {
"before-build": "node -e \"const fs=require('fs');fs.rmSync('dist',{recursive:true,force:true});fs.rmSync('tsconfig.tsbuildinfo',{force:true});fs.rmSync('.rollup.cache',{recursive:true,force:true});\"",
"build": "npm run before-build && rollup -c ",
"dev-build": "npm run build",
"test:unit": "cross-env NODE_ENV=unittest echo no unit tests",
"pub": "npm publish"
"pub": "npm publish",
"compile": "npm run build"
},
"author": "",
"license": "Apache",
+2 -1
View File
@@ -16,7 +16,8 @@
"test:unit": "cross-env NODE_ENV=unittest echo no unit tests",
"cov": "midway-bin cov --ts",
"prepublish": "npm run build",
"pub": "npm publish"
"pub": "npm publish",
"compile": "npm run build"
},
"keywords": [],
"author": "greper",