xiangpei
2025-03-24 1b9b94bd65d49581f72a771f1936fb36db98ca5a
src/views/components/tidingsTable.vue
@@ -35,6 +35,7 @@
                :label="column.label"
                :min-width="column.minWidth"
                :prop="column.prop"
                :show-overflow-tooltip="column.showOverflowTooltip"
            >
                <template v-if="column.slot === 'sort'" #default="scope">
                    <div
@@ -115,7 +116,7 @@
            //配置表格表头数据
            currentTableHeaders: [
                { label: '#', prop: 'index', minWidth: 50, align: 'center', slot: 'sort' },
                { label: '消息内容', prop: 'content', minWidth: 300, align: 'left' },
                { label: '消息内容', prop: 'content', minWidth: 300, align: 'left', showOverflowTooltip: true },
                { label: '时间', prop: 'gmtCreate', minWidth: 143, align: 'left' }
            ]
        }