[fix 87546] 标签管理-操作列字段没有居中展示

This commit is contained in:
danshihao
2024-07-31 16:14:54 +08:00
parent a5cd6c3e0c
commit 35ebd22fd6
2 changed files with 8 additions and 8 deletions
@@ -123,7 +123,7 @@ export default {
title: this.$t('operation'), title: this.$t('operation'),
scopedSlots: { customRender: 'action' }, scopedSlots: { customRender: 'action' },
align: 'center', align: 'center',
fixed: 'right', // fixed: 'right',
width: 170 width: 170
} }
], ],
+7 -7
View File
@@ -121,37 +121,37 @@ export default {
columns: [ columns: [
{ {
title: this.$t('system.tag.attributeName'), title: this.$t('system.tag.attributeName'),
width: 170, width: 100,
dataIndex: 'dbFieldTxt', dataIndex: 'dbFieldTxt',
scopedSlots: { customRender: 'text' } scopedSlots: { customRender: 'text' }
}, },
{ {
title: this.$t('system.tag.attributeNameEnglish'), title: this.$t('system.tag.attributeNameEnglish'),
width: 170, width: 100,
dataIndex: 'dbFieldEnName', dataIndex: 'dbFieldEnName',
scopedSlots: { customRender: 'text' } scopedSlots: { customRender: 'text' }
}, },
{ {
title: this.$t('system.tag.attributeType'), title: this.$t('system.tag.attributeType'),
width: 170, width: 100,
dataIndex: 'fieldShowType_dictText', dataIndex: 'fieldShowType_dictText',
scopedSlots: { customRender: 'text' } scopedSlots: { customRender: 'text' }
}, },
{ {
title: this.$t('system.tag.fieldLength'), title: this.$t('system.tag.fieldLength'),
width: 170, width: 100,
dataIndex: 'dbLength', dataIndex: 'dbLength',
scopedSlots: { customRender: 'text' } scopedSlots: { customRender: 'text' }
}, },
{ {
title: this.$t('system.tag.displayOrder'), title: this.$t('system.tag.displayOrder'),
width: 170, width: 100,
dataIndex: 'orderNum', dataIndex: 'orderNum',
scopedSlots: { customRender: 'text' } scopedSlots: { customRender: 'text' }
}, },
{ {
title: this.$t('system.tag.showArea'), title: this.$t('system.tag.showArea'),
width: 170, width: 100,
dataIndex: 'showArea_dictText', dataIndex: 'showArea_dictText',
scopedSlots: { customRender: 'text' } scopedSlots: { customRender: 'text' }
}, },
@@ -159,7 +159,7 @@ export default {
title: this.$t('operation'), title: this.$t('operation'),
scopedSlots: { customRender: 'action' }, scopedSlots: { customRender: 'action' },
align: 'center', align: 'center',
fixed: 'right', // fixed: 'right',
width: 150 width: 150
} }
], ],