build(deps): update deps

This commit is contained in:
Soybean
2022-07-19 00:03:25 +08:00
parent d0823b030b
commit 94ff787053
2 changed files with 17 additions and 17 deletions

View File

@ -35,7 +35,7 @@
"@better-scroll/core": "^2.4.2", "@better-scroll/core": "^2.4.2",
"@soybeanjs/vue-admin-layout": "^1.1.1", "@soybeanjs/vue-admin-layout": "^1.1.1",
"@soybeanjs/vue-admin-tab": "^1.0.5", "@soybeanjs/vue-admin-tab": "^1.0.5",
"@vueuse/core": "^8.9.3", "@vueuse/core": "^8.9.4",
"axios": "^0.27.2", "axios": "^0.27.2",
"clipboard": "^2.0.11", "clipboard": "^2.0.11",
"colord": "^2.9.2", "colord": "^2.9.2",
@ -60,20 +60,20 @@
"@amap/amap-jsapi-types": "^0.0.8", "@amap/amap-jsapi-types": "^0.0.8",
"@commitlint/cli": "^17.0.3", "@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3", "@commitlint/config-conventional": "^17.0.3",
"@iconify/json": "^2.1.78", "@iconify/json": "^2.1.79",
"@iconify/vue": "^3.2.1", "@iconify/vue": "^3.2.1",
"@types/bmapgl": "^0.0.5", "@types/bmapgl": "^0.0.5",
"@types/crypto-js": "^4.1.1", "@types/crypto-js": "^4.1.1",
"@types/node": "^18.0.5", "@types/node": "^18.0.6",
"@types/qs": "^6.9.7", "@types/qs": "^6.9.7",
"@types/ua-parser-js": "^0.7.36", "@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.30.6", "@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6", "@typescript-eslint/parser": "^5.30.6",
"@vitejs/plugin-vue": "^3.0.0", "@vitejs/plugin-vue": "^3.0.1",
"@vitejs/plugin-vue-jsx": "^2.0.0", "@vitejs/plugin-vue-jsx": "^2.0.0",
"@vue/eslint-config-prettier": "^7.0.0", "@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0", "@vue/eslint-config-typescript": "^11.0.0",
"commitizen": "^4.2.4", "commitizen": "^4.2.5",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0", "cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.9.1", "cz-customizable": "^6.9.1",
@ -97,13 +97,13 @@
"unplugin-icons": "^0.14.7", "unplugin-icons": "^0.14.7",
"unplugin-vue-components": "0.21.1", "unplugin-vue-components": "0.21.1",
"unplugin-vue-define-options": "^0.6.2", "unplugin-vue-define-options": "^0.6.2",
"vite": "^3.0.0", "vite": "^3.0.1",
"vite-plugin-compression": "^0.5.1", "vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.0", "vite-plugin-html": "^3.2.0",
"vite-plugin-mock": "^2.9.6", "vite-plugin-mock": "^2.9.6",
"vite-plugin-svg-icons": "^2.0.1", "vite-plugin-svg-icons": "^2.0.1",
"vue-eslint-parser": "^9.0.3", "vue-eslint-parser": "^9.0.3",
"vue-tsc": "^0.38.7" "vue-tsc": "^0.38.8"
}, },
"homepage": "https://github.com/honghuangdc/soybean-admin", "homepage": "https://github.com/honghuangdc/soybean-admin",
"repository": { "repository": {

View File

@ -469,21 +469,21 @@ const radarOptions = ref<ECOption>({
radar: [ radar: [
{ {
indicator: [ indicator: [
{ text: 'Brand', max: 100 }, { name: 'Brand', max: 100 },
{ text: 'Content', max: 100 }, { name: 'Content', max: 100 },
{ text: 'Usability', max: 100 }, { name: 'Usability', max: 100 },
{ text: 'Function', max: 100 } { name: 'Function', max: 100 }
], ],
center: ['25%', '40%'], center: ['25%', '40%'],
radius: 80 radius: 80
}, },
{ {
indicator: [ indicator: [
{ text: 'Look', max: 100 }, { name: 'Look', max: 100 },
{ text: 'Photo', max: 100 }, { name: 'Photo', max: 100 },
{ text: 'System', max: 100 }, { name: 'System', max: 100 },
{ text: 'Performance', max: 100 }, { name: 'Performance', max: 100 },
{ text: 'Screen', max: 100 } { name: 'Screen', max: 100 }
], ],
radius: 80, radius: 80,
center: ['50%', '60%'] center: ['50%', '60%']
@ -492,7 +492,7 @@ const radarOptions = ref<ECOption>({
indicator: (() => { indicator: (() => {
const res = []; const res = [];
for (let i = 1; i <= 12; i += 1) { for (let i = 1; i <= 12; i += 1) {
res.push({ text: `${i}`, max: 100 }); res.push({ name: `${i}`, max: 100 });
} }
return res; return res;
})(), })(),