fix: 过滤列表组件位置布局错误

This commit is contained in:
dataeaseShu 2022-06-22 17:15:43 +08:00
parent 9998ae2bc9
commit 2e0e2b433f
3 changed files with 11 additions and 4 deletions

View File

@ -153,7 +153,7 @@
<div v-if="attrShow('titlePostion')" style="width: 20px;float: left;margin-top: 2px;margin-left: 10px;">
<el-tooltip content="标题位置">
<title-postion :show-vertical="showVertical" :style-info="styleInfo" />
<title-postion :elementType="elementType" :show-vertical="showVertical" :style-info="styleInfo" />
</el-tooltip>
</div>
<!--tab 内部组件样式-->
@ -352,6 +352,9 @@ export default {
styleInfo() {
return this.$store.state.curComponent.style
},
elementType() {
return this.$store.state.curComponent.component
},
canvasWidth() {
return this.canvasStyleData.width * this.curCanvasScale.scalePointWidth
},

View File

@ -147,7 +147,7 @@ export default {
this.outsideStyle = {
flexWrap: 'wrap'
}
if (vertical !== 'top') {
if (vertical !== 'top' && this.element.component !== 'de-select-grid') {
this.titleStyle = null
this.outsideStyle = {
flexDirection: horizontal === 'right' ? 'row-reverse' : '',

View File

@ -9,7 +9,7 @@
<el-form-item :label="$t('chart.text_h_position')" class="form-item">
<el-radio-group v-model="styleInfo.horizontal" size="mini">
<el-radio-button label="left">{{ $t('chart.text_pos_left') }}</el-radio-button>
<el-radio-button :disabled="styleInfo.vertical === 'center'" label="center">{{ $t('chart.text_pos_center') }}</el-radio-button>
<el-radio-button :disabled="styleInfo.vertical === 'center' && this.elementType !== 'de-select-grid'" label="center">{{ $t('chart.text_pos_center') }}</el-radio-button>
<el-radio-button label="right">{{ $t('chart.text_pos_right') }}</el-radio-button>
</el-radio-group>
</el-form-item>
@ -40,7 +40,11 @@ export default {
showVertical: {
type: Boolean,
default: false
}
},
elementType: {
type: String,
default: ''
},
}
}