Skip to content

Commit

Permalink
build(deps): update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
honghuangdc committed Jul 18, 2022
1 parent d0823b0 commit 94ff787
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@better-scroll/core": "^2.4.2",
"@soybeanjs/vue-admin-layout": "^1.1.1",
"@soybeanjs/vue-admin-tab": "^1.0.5",
"@vueuse/core": "^8.9.3",
"@vueuse/core": "^8.9.4",
"axios": "^0.27.2",
"clipboard": "^2.0.11",
"colord": "^2.9.2",
Expand All @@ -60,20 +60,20 @@
"@amap/amap-jsapi-types": "^0.0.8",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@iconify/json": "^2.1.78",
"@iconify/json": "^2.1.79",
"@iconify/vue": "^3.2.1",
"@types/bmapgl": "^0.0.5",
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.0.5",
"@types/node": "^18.0.6",
"@types/qs": "^6.9.7",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^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",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"commitizen": "^4.2.4",
"commitizen": "^4.2.5",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.9.1",
Expand All @@ -97,13 +97,13 @@
"unplugin-icons": "^0.14.7",
"unplugin-vue-components": "0.21.1",
"unplugin-vue-define-options": "^0.6.2",
"vite": "^3.0.0",
"vite": "^3.0.1",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.0",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-svg-icons": "^2.0.1",
"vue-eslint-parser": "^9.0.3",
"vue-tsc": "^0.38.7"
"vue-tsc": "^0.38.8"
},
"homepage": "https:/honghuangdc/soybean-admin",
"repository": {
Expand Down
20 changes: 10 additions & 10 deletions src/views/plugin/charts/echarts/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -469,21 +469,21 @@ const radarOptions = ref<ECOption>({
radar: [
{
indicator: [
{ text: 'Brand', max: 100 },
{ text: 'Content', max: 100 },
{ text: 'Usability', max: 100 },
{ text: 'Function', max: 100 }
{ name: 'Brand', max: 100 },
{ name: 'Content', max: 100 },
{ name: 'Usability', max: 100 },
{ name: 'Function', max: 100 }
],
center: ['25%', '40%'],
radius: 80
},
{
indicator: [
{ text: 'Look', max: 100 },
{ text: 'Photo', max: 100 },
{ text: 'System', max: 100 },
{ text: 'Performance', max: 100 },
{ text: 'Screen', max: 100 }
{ name: 'Look', max: 100 },
{ name: 'Photo', max: 100 },
{ name: 'System', max: 100 },
{ name: 'Performance', max: 100 },
{ name: 'Screen', max: 100 }
],
radius: 80,
center: ['50%', '60%']
Expand All @@ -492,7 +492,7 @@ const radarOptions = ref<ECOption>({
indicator: (() => {
const res = [];
for (let i = 1; i <= 12; i += 1) {
res.push({ text: `${i}月`, max: 100 });
res.push({ name: `${i}月`, max: 100 });
}
return res;
})(),
Expand Down

1 comment on commit 94ff787

@vercel
Copy link

@vercel vercel bot commented on 94ff787 Jul 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.