【update】会议酒店推荐-处理表格宽度

This commit is contained in:
fengchenchen
2024-07-11 15:30:08 +08:00
parent 12c69c1236
commit b715ae4b95
@@ -83,7 +83,7 @@
size="middle" size="middle"
bordered bordered
rowKey="id" rowKey="id"
:scroll="{x:true}" :scroll="{x:1600}"
:columns="columns" :columns="columns"
:dataSource="dataSource" :dataSource="dataSource"
:pagination="ipagination" :pagination="ipagination"
@@ -142,7 +142,7 @@ export default {
align: 'center', align: 'center',
dataIndex: 'recommendPeople', dataIndex: 'recommendPeople',
scopedSlots: {customRender: 'text'}, scopedSlots: {customRender: 'text'},
width: 100, width: 80,
}, },
{ {
title: '酒店名称', title: '酒店名称',
@@ -156,14 +156,14 @@ export default {
align: 'center', align: 'center',
dataIndex: 'hotelProvince', dataIndex: 'hotelProvince',
scopedSlots: {customRender: 'text'}, scopedSlots: {customRender: 'text'},
width: 100, width: 80,
}, },
{ {
title: '所在城市', title: '所在城市',
align: 'center', align: 'center',
dataIndex: 'hotelCity', dataIndex: 'hotelCity',
scopedSlots: {customRender: 'text'}, scopedSlots: {customRender: 'text'},
width: 100, width: 80,
}, },
{ {
title: '是否举办过标准院会议', title: '是否举办过标准院会议',
@@ -191,14 +191,14 @@ export default {
align: 'center', align: 'center',
dataIndex: 'remark', dataIndex: 'remark',
scopedSlots: {customRender: 'text'}, scopedSlots: {customRender: 'text'},
width: 100, width: 150
}, },
{ {
title: '操作', title: '操作',
dataIndex: 'action', dataIndex: 'action',
align: 'center', align: 'center',
// fixed: 'right', // fixed: 'right',
width: 100, width: 80,
scopedSlots: { customRender: 'action' } scopedSlots: { customRender: 'action' }
} }
], ],