czh-20260722-调整所务会党委会把把脉表格列顺序和宽度
This commit is contained in:
@@ -14,102 +14,115 @@ export const columns: BasicColumn[] = [
|
||||
{
|
||||
title: '事项名称',
|
||||
align:"center",
|
||||
dataIndex: 'title'
|
||||
},
|
||||
{
|
||||
title: '序号',
|
||||
align:"center",
|
||||
dataIndex: 'number',
|
||||
sorter: true,
|
||||
dataIndex: 'title',
|
||||
width: '350px',
|
||||
},
|
||||
{
|
||||
title: '会议决议',
|
||||
align:"center",
|
||||
dataIndex: 'content'
|
||||
dataIndex: 'content',
|
||||
width: '350px',
|
||||
},
|
||||
{
|
||||
title: '事项目录编码',
|
||||
title: '分管所领导',
|
||||
align:"center",
|
||||
dataIndex: 'matterCode'
|
||||
dataIndex: 'manageSuoleader_dictText',
|
||||
width: '120px',
|
||||
},
|
||||
{
|
||||
title: '会议时间',
|
||||
align:"center",
|
||||
dataIndex: 'matterTime',
|
||||
width: '110px',
|
||||
customRender:({text}) =>{
|
||||
text = !text ? "" : (text.length > 10 ? text.substr(0,10) : text);
|
||||
return text;
|
||||
},
|
||||
sorter: true,
|
||||
},
|
||||
{
|
||||
title: '督办次数',
|
||||
align:"center",
|
||||
dataIndex: 'superviseCount',
|
||||
width: '100px',
|
||||
width: '80px',
|
||||
},
|
||||
|
||||
{
|
||||
title: '会议时间',
|
||||
title: '主办部门',
|
||||
align:"center",
|
||||
dataIndex: 'matterTime',
|
||||
dataIndex: 'responDeptid_dictText',
|
||||
width: '120px',
|
||||
},
|
||||
{
|
||||
title: '协办部门',
|
||||
align:"center",
|
||||
dataIndex: 'assistDeptid_dictText',
|
||||
width: '120px',
|
||||
},
|
||||
{
|
||||
title: '要求完成时间',
|
||||
align:"center",
|
||||
dataIndex: 'deadline',
|
||||
width: '110px',
|
||||
customRender:({text}) =>{
|
||||
text = !text ? "" : (text.length > 10 ? text.substr(0,10) : text);
|
||||
return text;
|
||||
},
|
||||
},
|
||||
{
|
||||
title: '序号',
|
||||
align:"center",
|
||||
dataIndex: 'number',
|
||||
width: '100px',
|
||||
sorter: true,
|
||||
},
|
||||
{
|
||||
title: '议题序号',
|
||||
align:"center",
|
||||
dataIndex: 'itemNumber',
|
||||
sorter: true,
|
||||
width: '100px',
|
||||
sorter: true,
|
||||
},
|
||||
{
|
||||
title: '事项目录编码',
|
||||
align:"center",
|
||||
dataIndex: 'matterCode',
|
||||
width: '120px',
|
||||
},
|
||||
|
||||
{
|
||||
title: '抄告单编号',
|
||||
align:"center",
|
||||
dataIndex: 'noticeNumber'
|
||||
dataIndex: 'noticeNumber',
|
||||
width: '120px',
|
||||
},
|
||||
{
|
||||
title: '是否为三重一大决策',
|
||||
align:"center",
|
||||
dataIndex: 'isImportant_dictText'
|
||||
},
|
||||
{
|
||||
title: '分管所领导',
|
||||
align:"center",
|
||||
dataIndex: 'manageSuoleader_dictText'
|
||||
},
|
||||
{
|
||||
title: '主办部门',
|
||||
align:"center",
|
||||
dataIndex: 'responDeptid_dictText'
|
||||
},
|
||||
{
|
||||
title: '协办部门',
|
||||
align:"center",
|
||||
dataIndex: 'assistDeptid_dictText'
|
||||
},
|
||||
{
|
||||
title: '实际执行情况',
|
||||
align:"center",
|
||||
dataIndex: 'actualExect'
|
||||
},
|
||||
{
|
||||
title: '要求完成日期',
|
||||
align:"center",
|
||||
dataIndex: 'deadline',
|
||||
customRender:({text}) =>{
|
||||
text = !text ? "" : (text.length > 10 ? text.substr(0,10) : text);
|
||||
return text;
|
||||
},
|
||||
dataIndex: 'isImportant_dictText',
|
||||
width: '160px',
|
||||
},
|
||||
{
|
||||
title: '是否急件',
|
||||
align:"center",
|
||||
dataIndex: 'urgencyLevel_dictText',
|
||||
width: '80px',
|
||||
},
|
||||
{
|
||||
title: '实际执行情况',
|
||||
align:"center",
|
||||
dataIndex: 'actualExect',
|
||||
width: '350px',
|
||||
},
|
||||
{
|
||||
title: '密级',
|
||||
align:"center",
|
||||
dataIndex: 'secretLevel_dictText',
|
||||
width: '60px',
|
||||
},
|
||||
{
|
||||
title: '完成状态',
|
||||
align:"center",
|
||||
dataIndex: 'bpmStatus_dictText'
|
||||
dataIndex: 'bpmStatus_dictText',
|
||||
width: '80px',
|
||||
},
|
||||
// {
|
||||
// title: '是否需要所办领导审批',
|
||||
|
||||
Reference in New Issue
Block a user