|
@@ -84,7 +84,7 @@
|
|
|
:pagination="ipagination"
|
|
|
:loading="loading"
|
|
|
:rowSelection="{fixed:true,selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
|
|
|
-
|
|
|
+ :scroll="{ x: 1000}"
|
|
|
@change="handleTableChange">
|
|
|
|
|
|
<template slot="htmlSlot" slot-scope="text">
|
|
@@ -161,22 +161,26 @@
|
|
|
{
|
|
|
title:'会议议题',
|
|
|
align:"center",
|
|
|
- dataIndex: 'conferenceTitle'
|
|
|
+ dataIndex: 'conferenceTitle',
|
|
|
+ width:180,
|
|
|
},
|
|
|
{
|
|
|
title:'会议信息发布人',
|
|
|
align:"center",
|
|
|
- dataIndex: 'postedPerson'
|
|
|
+ dataIndex: 'postedPerson',
|
|
|
+ width:140,
|
|
|
},
|
|
|
{
|
|
|
title:'发布部门',
|
|
|
align:"center",
|
|
|
- dataIndex: 'postedDept'
|
|
|
+ dataIndex: 'postedDept',
|
|
|
+ width:120,
|
|
|
},
|
|
|
{
|
|
|
title:'发布日期',
|
|
|
align:"center",
|
|
|
dataIndex: 'postedDate',
|
|
|
+ width:120,
|
|
|
customRender:function (text) {
|
|
|
return !text?"":(text.length>10?text.substr(0,10):text)
|
|
|
}
|
|
@@ -185,6 +189,7 @@
|
|
|
title:'会议日期',
|
|
|
align:"center",
|
|
|
dataIndex: 'conferenceDate',
|
|
|
+ width:100,
|
|
|
customRender:function (text) {
|
|
|
return !text?"":(text.length>10?text.substr(0,10):text)
|
|
|
}
|
|
@@ -192,38 +197,44 @@
|
|
|
{
|
|
|
title:'开始时间',
|
|
|
align:"center",
|
|
|
+ width:120,
|
|
|
dataIndex: 'startTime'
|
|
|
},
|
|
|
{
|
|
|
title:'结束时间',
|
|
|
align:"center",
|
|
|
+ width:120,
|
|
|
dataIndex: 'endTime'
|
|
|
},
|
|
|
{
|
|
|
title:'会议地点',
|
|
|
align:"center",
|
|
|
+ width:120,
|
|
|
dataIndex: 'conferenceAddress'
|
|
|
},
|
|
|
{
|
|
|
title:'出席人员',
|
|
|
align:"center",
|
|
|
+ width:100,
|
|
|
dataIndex: 'attendPerson'
|
|
|
},
|
|
|
{
|
|
|
title:'出席部门',
|
|
|
align:"center",
|
|
|
+ width:100,
|
|
|
dataIndex: 'attendDept'
|
|
|
},
|
|
|
{
|
|
|
title:'其他参会人',
|
|
|
align:"center",
|
|
|
+ width:160,
|
|
|
dataIndex: 'otherPerson'
|
|
|
},
|
|
|
{
|
|
|
title: '操作',
|
|
|
dataIndex: 'action',
|
|
|
align:"center",
|
|
|
- width: 120,
|
|
|
+ width: 140,
|
|
|
scopedSlots: { customRender: 'action' }
|
|
|
}
|
|
|
],
|