!106 czh-20260722-调整所务会党委会把把脉表格列顺序和宽度

Merge pull request !106 from 陈志浩/feature/table-columns-adjust-20260722
This commit is contained in:
陈志浩
2026-07-22 06:35:33 +00:00
committed by Gitee
2 changed files with 164 additions and 137 deletions
@@ -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: '是否需要所办领导审批',
+103 -89
View File
@@ -6,142 +6,156 @@ import {JVxeTypes,JVxeColumn} from '/@/components/jeecg/JVxeTable/types'
import { getWeekMonthQuarterYear } from '/@/utils';
//列表数据
export const columns: BasicColumn[] = [
{
title: '年份',
align:"center",
dataIndex: 'year_dictText'
},
{
title: '序号',
{
title: '年份',
align:"center",
dataIndex: 'number'
},
{
dataIndex: 'year_dictText',
width: '60px',
},
{
title: '会议类型',
align:"center",
dataIndex: 'taskType_dictText'
},
{
dataIndex: 'taskType_dictText',
width: '140px',
},
{
title: '类别',
align:"center",
dataIndex: 'type'
},
{
title: '提出人',
align:"center",
dataIndex: 'proposer_dictText'
},
{
dataIndex: 'type',
width: '140px',
},
{
title: '意见主题',
align:"center",
dataIndex: 'title'
},
{
dataIndex: 'title',
width: '350px',
},
{
title: '具体意见',
align:"center",
dataIndex: 'content'
},
{
dataIndex: 'content',
width: '350px',
},
{
title: '分管所领导',
align:"center",
dataIndex: 'manageSuoleader_dictText'
},
{
dataIndex: 'manageSuoleader_dictText',
width: '120px',
},
{
title: '序号',
align:"center",
dataIndex: 'number',
width: '100px',
},
{
title: '提出人',
align:"center",
dataIndex: 'proposer_dictText',
width: '100px',
},
{
title: '责任领导',
align:"center",
dataIndex: 'suoleader_dictText'
},
{
dataIndex: 'suoleader_dictText',
width: '100px',
},
{
title: '牵头部门',
align:"center",
dataIndex: 'responDeptid_dictText'
},
{
dataIndex: 'responDeptid_dictText',
width: '120px',
},
{
title: '协办部门',
align:"center",
dataIndex: 'assistDeptid_dictText'
},
{
dataIndex: 'assistDeptid_dictText',
width: '120px',
},
{
title: '落实部门',
align:"center",
dataIndex: 'implementDeptid'
},
{
dataIndex: 'implementDeptid',
width: '100px',
},
{
title: '是否采纳',
align:"center",
dataIndex: 'isAdopt',
width: '80px',
customRender:({text}) => {
return render.renderSwitch(text, [{text:'是',value:'1'},{text:'否',value:'0'}])
},
},
{
},
{
title: '落实措施/解释说明',
align:"center",
dataIndex: 'measure'
},
dataIndex: 'measure',
width: '350px',
},
{
title: '措施数量',
align:"center",
dataIndex: 'measureNumber',
width: '80px',
},
{
title: '成果形式',
align:"center",
dataIndex: 'achievement',
width: '350px',
},
{
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: 'measureNumber'
},
{
title: '成果形式',
align:"center",
dataIndex: 'achievement'
},
{
title: '备注',
align:"center",
dataIndex: 'remark'
},
// {
// title: '执行情况',
// align:"center",
// dataIndex: 'actualExect'
// },
{
{
title: '实际完成时间',
align:"center",
dataIndex: 'actualTime'
},
{
dataIndex: 'actualTime',
width: '110px',
},
{
title: '提出人确认',
align:"center",
dataIndex: 'proposerConfirm'
},
{
title: '完成状态',
align:"center",
dataIndex: 'bpmStatus_dictText'
},
// {
// title: '调整落实措施及执行情况',
// align:"center",
// dataIndex: 'actSt'
// },
{
dataIndex: 'proposerConfirm',
width: '100px',
},
{
title: '督办次数',
align:"center",
dataIndex: 'superviseCount'
},
{
dataIndex: 'superviseCount',
width: '80px',
},
{
title: '紧急程度',
align:"center",
dataIndex: 'urgencyLevel_dictText'
},
dataIndex: 'urgencyLevel_dictText',
width: '80px',
},
{
title: '密级',
align:"center",
dataIndex: 'secretLevel_dictText'
dataIndex: 'secretLevel_dictText',
width: '60px',
},
{
title: '备注',
align:"center",
dataIndex: 'remark',
width: '350px',
},
{
title: '完成状态',
align:"center",
dataIndex: 'bpmStatus_dictText',
width: '80px',
},
];