refactor: 轴线自定义刻度数限制不超过100

This commit is contained in:
junjie 2021-11-02 15:35:53 +08:00
parent f58adcda97
commit d2a6ad05b4
6 changed files with 27 additions and 3 deletions

View File

@ -956,7 +956,8 @@ export default {
result_mode_all: 'ALL',
chart_word_cloud: 'Word Cloud',
drag_block_word_cloud_label: 'Word Label',
drag_block_word_cloud_size: 'Word Size'
drag_block_word_cloud_size: 'Word Size',
splitCount_less_100: 'Split Count must less 100'
},
dataset: {
sheet_warn: 'There are multiple sheet pages, and the first one is extracted by default',

View File

@ -957,7 +957,8 @@ export default {
result_mode_all: '全部',
chart_word_cloud: '詞雲',
drag_block_word_cloud_label: '詞標簽',
drag_block_word_cloud_size: '詞大小'
drag_block_word_cloud_size: '詞大小',
splitCount_less_100: '刻度數不能超過100'
},
dataset: {
sheet_warn: '有多個 Sheet 頁,默認抽取第一個',

View File

@ -960,7 +960,8 @@ export default {
result_mode_all: '全部',
chart_word_cloud: '词云',
drag_block_word_cloud_label: '词标签',
drag_block_word_cloud_size: '词大小'
drag_block_word_cloud_size: '词大小',
splitCount_less_100: '刻度数不能超过100'
},
dataset: {
sheet_warn: '有多个 Sheet 页,默认抽取第一个',

View File

@ -160,6 +160,13 @@ export default {
if (!this.axisForm.show) {
this.isSetting = false
}
if (this.axisForm.axisValue.splitCount && parseInt(this.axisForm.axisValue.splitCount) > 100) {
this.$message({
message: this.$t('chart.splitCount_less_100'),
type: 'error'
})
return
}
this.$emit('onChangeXAxisForm', this.axisForm)
}
}

View File

@ -163,6 +163,13 @@ export default {
if (!this.axisForm.show) {
this.isSetting = false
}
if (this.axisForm.axisValue.splitCount && parseInt(this.axisForm.axisValue.splitCount) > 100) {
this.$message({
message: this.$t('chart.splitCount_less_100'),
type: 'error'
})
return
}
this.$emit('onChangeYAxisForm', this.axisForm)
}
}

View File

@ -171,6 +171,13 @@ export default {
if (!this.axisForm.show) {
this.isSetting = false
}
if (this.axisForm.axisValue.splitCount && parseInt(this.axisForm.axisValue.splitCount) > 100) {
this.$message({
message: this.$t('chart.splitCount_less_100'),
type: 'error'
})
return
}
this.$emit('onChangeYAxisForm', this.axisForm)
}
}