diff --git a/frontend/src/views/chart/chart/common/common_table.js b/frontend/src/views/chart/chart/common/common_table.js
index 6de4952283..42f93da6a5 100644
--- a/frontend/src/views/chart/chart/common/common_table.js
+++ b/frontend/src/views/chart/chart/common/common_table.js
@@ -21,7 +21,7 @@ export function getCustomTheme(chart) {
backgroundColor: headerColor,
horizontalBorderColor: borderColor,
verticalBorderColor: borderColor,
- verticalBorderWidth: 0 //左上角顶点单元格左右边缘宽度要设置为 0,不然序号列的数字部分会比表头多几个像素,视觉上会突出去
+ verticalBorderWidth: 0 // 左上角顶点单元格左右边缘宽度要设置为 0,不然序号列的数字部分会比表头多几个像素,视觉上会突出去
},
text: {
fill: DEFAULT_COLOR_CASE.tableHeaderFontColor,
diff --git a/frontend/src/views/chart/chart/table/table-info.js b/frontend/src/views/chart/chart/table/table-info.js
index 6ba94691b2..2324b6b0fd 100644
--- a/frontend/src/views/chart/chart/table/table-info.js
+++ b/frontend/src/views/chart/chart/table/table-info.js
@@ -128,9 +128,9 @@ export function baseTableInfo(s2, container, chart, action, tableData) {
style: getSize(chart),
conditions: getConditions(chart)
}
- //开启序号之后,第一列就是序号列,修改 label 即可
+ // 开启序号之后,第一列就是序号列,修改 label 即可
if (s2Options.showSeriesNumber) {
- s2Options.colCell= (node) => {
+ s2Options.colCell = (node) => {
if (node.colIndex === 0) {
node.label = customAttr.size.indexLabel
}
@@ -266,9 +266,9 @@ export function baseTableNormal(s2, container, chart, action, tableData) {
style: getSize(chart),
conditions: getConditions(chart)
}
- //开启序号之后,第一列就是序号列,修改 label 即可
+ // 开启序号之后,第一列就是序号列,修改 label 即可
if (s2Options.showSeriesNumber) {
- s2Options.colCell= (node) => {
+ s2Options.colCell = (node) => {
if (node.colIndex === 0) {
node.label = customAttr.size.indexLabel
}
diff --git a/frontend/src/views/chart/components/shape-attr/SizeSelector.vue b/frontend/src/views/chart/components/shape-attr/SizeSelector.vue
index 74668a1b1d..d94b954a9a 100644
--- a/frontend/src/views/chart/components/shape-attr/SizeSelector.vue
+++ b/frontend/src/views/chart/components/shape-attr/SizeSelector.vue
@@ -380,14 +380,15 @@
input-size="mini"
@change="changeBarSizeCase('tableShowIndex')"
>
- {{$t('panel.yes')}}
- {{$t('panel.no')}}
+ {{ $t('panel.yes') }}
+ {{ $t('panel.no') }}
+ class="form-item"
+ >
-
- {{$t('panel.yes')}}
- {{$t('panel.no')}}
+ {{ $t('panel.yes') }}
+ {{ $t('panel.no') }}
+ class="form-item"
+ >
+ :title="indexLabel"
+ />
{
if (columnIndex === 0 && x.length > 0) {
means.push('合计')
@@ -356,7 +357,7 @@ export default {
requireSumIndex++
}
if (columnIndex >= requireSumIndex) {
- const values = data.map(item => Number(item[column.property]));
+ const values = data.map(item => Number(item[column.property]))
// 合计
if (!values.every(value => isNaN(value))) {
means[columnIndex] = values.reduce((prev, curr) => {
@@ -372,7 +373,7 @@ export default {
means[columnIndex] = ''
}
} else {
- means[columnIndex] = '';
+ means[columnIndex] = ''
}
}
})
diff --git a/frontend/src/views/system/SysParam/BasicSetting.vue b/frontend/src/views/system/SysParam/BasicSetting.vue
index 0eb42544d9..4d7b7bc4a2 100644
--- a/frontend/src/views/system/SysParam/BasicSetting.vue
+++ b/frontend/src/views/system/SysParam/BasicSetting.vue
@@ -193,7 +193,7 @@
import { basicInfo, updateInfo } from '@/api/system/basic'
import { ldapStatus, oidcStatus, casStatus } from '@/api/user'
import bus from '@/utils/bus'
-import operater from './Operater'
+import operater from './operater'
import msgCfm from '@/components/msgCfm'
import PluginCom from '@/views/system/plugin/PluginCom'
export default {
diff --git a/frontend/src/views/system/SysParam/ClusterModeSetting.vue b/frontend/src/views/system/SysParam/ClusterModeSetting.vue
index 2b02318f2f..85047f1575 100644
--- a/frontend/src/views/system/SysParam/ClusterModeSetting.vue
+++ b/frontend/src/views/system/SysParam/ClusterModeSetting.vue
@@ -182,7 +182,7 @@