- {{
- status.mergedConfig.valueFormatter
- ? status.mergedConfig.valueFormatter(item)
- : item.value
- }}
+ {{ status.mergedConfig.valueFormatter ? status.mergedConfig.valueFormatter(item) : item.value }}
{{ unit }}
-
@@ -39,8 +32,8 @@ import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore
const props = defineProps({
chartConfig: {
type: Object as PropType
,
- required: true,
- },
+ required: true
+ }
})
const { w, h } = toRefs(props.chartConfig.attr)
const { rowNum, unit, color, textColor, borderColor, indexFontSize, leftFontSize, rightFontSize } = toRefs(
@@ -50,13 +43,15 @@ const { rowNum, unit, color, textColor, borderColor, indexFontSize, leftFontSize
const status = reactive({
mergedConfig: props.chartConfig.option,
rowsData: [],
- rows: [{
- scroll: 0,
- ranking: 1,
- name: '',
- value: '',
- percent: 0
- }],
+ rows: [
+ {
+ scroll: 0,
+ ranking: 1,
+ name: '',
+ value: '',
+ percent: 0
+ }
+ ],
heights: [0],
animationIndex: 0,
animationHandler: 0,
@@ -81,16 +76,16 @@ const calcRowsData = () => {
// abs of max
const maxAbs = Math.abs(max)
const total = max + minAbs
- dataset = dataset.map((row: any, i:number) => ({
+ dataset = dataset.map((row: any, i: number) => ({
...row,
ranking: i + 1,
- percent: ((row.value + minAbs) / total) * 100,
+ percent: ((row.value + minAbs) / total) * 100
}))
const rowLength = dataset.length
if (rowLength > rowNum && rowLength < 2 * rowNum) {
dataset = [...dataset, ...dataset]
}
- dataset = dataset.map((d:any, i:number) => ({ ...d, scroll: i }))
+ dataset = dataset.map((d: any, i: number) => ({ ...d, scroll: i }))
status.rowsData = dataset
status.rows = dataset
}
@@ -134,11 +129,15 @@ const stopAnimation = () => {
}
const onRestart = async () => {
- if (!status.mergedConfig) return
- stopAnimation()
- calcRowsData()
- calcHeights(true)
- animation(true)
+ try {
+ if (!status.mergedConfig) return
+ stopAnimation()
+ calcRowsData()
+ calcHeights(true)
+ animation(true)
+ } catch (error) {
+ console.log(error)
+ }
}
onRestart()
diff --git a/src/packages/components/Tables/Tables/TableScrollBoard/index.vue b/src/packages/components/Tables/Tables/TableScrollBoard/index.vue
index 3ea2a228..669be3ed 100644
--- a/src/packages/components/Tables/Tables/TableScrollBoard/index.vue
+++ b/src/packages/components/Tables/Tables/TableScrollBoard/index.vue
@@ -1,24 +1,47 @@
-