build(projects): 更换eslint依赖为eslint-config-soybeanjs-vue

This commit is contained in:
Soybean
2022-08-28 14:48:00 +08:00
parent 7240be8495
commit 07325a4236
8 changed files with 27 additions and 21 deletions

View File

@@ -287,7 +287,7 @@ function renderScatterChart() {
chart.axis('GDP', {
label: {
formatter(value) {
return `${(+value / 1000).toFixed(0)}k`;
return `${(Number(value) / 1000).toFixed(0)}k`;
} // 格式化坐标轴的显示
}
});