Merge remote-tracking branch 'origin/main' into main

This commit is contained in:
wangjiahao 2021-06-11 11:36:18 +08:00
commit 7ffb2209ec
2 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,7 @@
:placeholder="$t('chart.title')"
clearable
@blur="changeTitleStyle"
@input="inputOnInput($event)"
/>
</el-form-item>
<el-form-item :label="$t('chart.text_fontsize')" class="form-item">
@ -124,6 +125,9 @@ export default {
this.isSetting = false
}
this.$emit('onTextChange', this.titleForm)
},
inputOnInput: function(e) {
this.$forceUpdate()
}
}
}

View File

@ -202,6 +202,7 @@
:show-close="false"
width="70%"
class="dialog-css"
:destroy-on-close="true"
>
<el-row style="width: 400px;">
<el-form ref="form" :model="table" label-width="80px" size="mini" class="form-item">
@ -544,6 +545,7 @@ export default {
selectTable() {
this.selectTableFlag = true
this.chartName = this.$t('chart.chartName')
},
closeCreateChart() {