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

This commit is contained in:
zhihao
2026-07-22 14:33:59 +08:00
parent 11916d7da1
commit c785bf6e45
2 changed files with 164 additions and 137 deletions
@@ -14,102 +14,115 @@ export const columns: BasicColumn[] = [
{ {
title: '事项名称', title: '事项名称',
align:"center", align:"center",
dataIndex: 'title' dataIndex: 'title',
}, width: '350px',
{
title: '序号',
align:"center",
dataIndex: 'number',
sorter: true,
}, },
{ {
title: '会议决议', title: '会议决议',
align:"center", align:"center",
dataIndex: 'content' dataIndex: 'content',
width: '350px',
}, },
{ {
title: '事项目录编码', title: '分管所领导',
align:"center", 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: '督办次数', title: '督办次数',
align:"center", align:"center",
dataIndex: 'superviseCount', dataIndex: 'superviseCount',
width: '100px', width: '80px',
}, },
{ {
title: '会议时间', title: '主办部门',
align:"center", 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}) =>{ customRender:({text}) =>{
text = !text ? "" : (text.length > 10 ? text.substr(0,10) : text); text = !text ? "" : (text.length > 10 ? text.substr(0,10) : text);
return text; return text;
}, },
},
{
title: '序号',
align:"center",
dataIndex: 'number',
width: '100px',
sorter: true, sorter: true,
}, },
{ {
title: '议题序号', title: '议题序号',
align:"center", align:"center",
dataIndex: 'itemNumber', dataIndex: 'itemNumber',
sorter: true,
width: '100px', width: '100px',
sorter: true,
},
{
title: '事项目录编码',
align:"center",
dataIndex: 'matterCode',
width: '120px',
}, },
{ {
title: '抄告单编号', title: '抄告单编号',
align:"center", align:"center",
dataIndex: 'noticeNumber' dataIndex: 'noticeNumber',
width: '120px',
}, },
{ {
title: '是否为三重一大决策', title: '是否为三重一大决策',
align:"center", align:"center",
dataIndex: 'isImportant_dictText' dataIndex: 'isImportant_dictText',
}, width: '160px',
{
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;
},
}, },
{ {
title: '是否急件', title: '是否急件',
align:"center", align:"center",
dataIndex: 'urgencyLevel_dictText', dataIndex: 'urgencyLevel_dictText',
width: '80px',
},
{
title: '实际执行情况',
align:"center",
dataIndex: 'actualExect',
width: '350px',
}, },
{ {
title: '密级', title: '密级',
align:"center", align:"center",
dataIndex: 'secretLevel_dictText', dataIndex: 'secretLevel_dictText',
width: '60px',
}, },
{ {
title: '完成状态', title: '完成状态',
align:"center", align:"center",
dataIndex: 'bpmStatus_dictText' dataIndex: 'bpmStatus_dictText',
width: '80px',
}, },
// { // {
// title: '是否需要所办领导审批', // title: '是否需要所办领导审批',
+103 -89
View File
@@ -6,142 +6,156 @@ import {JVxeTypes,JVxeColumn} from '/@/components/jeecg/JVxeTable/types'
import { getWeekMonthQuarterYear } from '/@/utils'; import { getWeekMonthQuarterYear } from '/@/utils';
//列表数据 //列表数据
export const columns: BasicColumn[] = [ export const columns: BasicColumn[] = [
{ {
title: '年份', title: '年份',
align:"center",
dataIndex: 'year_dictText'
},
{
title: '序号',
align:"center", align:"center",
dataIndex: 'number' dataIndex: 'year_dictText',
}, width: '60px',
{ },
{
title: '会议类型', title: '会议类型',
align:"center", align:"center",
dataIndex: 'taskType_dictText' dataIndex: 'taskType_dictText',
}, width: '140px',
{ },
{
title: '类别', title: '类别',
align:"center", align:"center",
dataIndex: 'type' dataIndex: 'type',
}, width: '140px',
{ },
title: '提出人', {
align:"center",
dataIndex: 'proposer_dictText'
},
{
title: '意见主题', title: '意见主题',
align:"center", align:"center",
dataIndex: 'title' dataIndex: 'title',
}, width: '350px',
{ },
{
title: '具体意见', title: '具体意见',
align:"center", align:"center",
dataIndex: 'content' dataIndex: 'content',
}, width: '350px',
{ },
{
title: '分管所领导', title: '分管所领导',
align:"center", 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: '责任领导', title: '责任领导',
align:"center", align:"center",
dataIndex: 'suoleader_dictText' dataIndex: 'suoleader_dictText',
}, width: '100px',
{ },
{
title: '牵头部门', title: '牵头部门',
align:"center", align:"center",
dataIndex: 'responDeptid_dictText' dataIndex: 'responDeptid_dictText',
}, width: '120px',
{ },
{
title: '协办部门', title: '协办部门',
align:"center", align:"center",
dataIndex: 'assistDeptid_dictText' dataIndex: 'assistDeptid_dictText',
}, width: '120px',
{ },
{
title: '落实部门', title: '落实部门',
align:"center", align:"center",
dataIndex: 'implementDeptid' dataIndex: 'implementDeptid',
}, width: '100px',
{ },
{
title: '是否采纳', title: '是否采纳',
align:"center", align:"center",
dataIndex: 'isAdopt', dataIndex: 'isAdopt',
width: '80px',
customRender:({text}) => { customRender:({text}) => {
return render.renderSwitch(text, [{text:'是',value:'1'},{text:'否',value:'0'}]) return render.renderSwitch(text, [{text:'是',value:'1'},{text:'否',value:'0'}])
}, },
}, },
{ {
title: '落实措施/解释说明', title: '落实措施/解释说明',
align:"center", align:"center",
dataIndex: 'measure' dataIndex: 'measure',
}, width: '350px',
},
{
title: '措施数量',
align:"center",
dataIndex: 'measureNumber',
width: '80px',
},
{
title: '成果形式',
align:"center",
dataIndex: 'achievement',
width: '350px',
},
{ {
title: '要求完成日期', title: '要求完成日期',
align:"center", align:"center",
dataIndex: 'deadline', dataIndex: 'deadline',
width: '110px',
customRender:({text}) =>{ customRender:({text}) =>{
text = !text ? "" : (text.length > 10 ? text.substr(0,10) : text); text = !text ? "" : (text.length > 10 ? text.substr(0,10) : text);
return text; return text;
}, },
}, },
{ {
title: '措施数量',
align:"center",
dataIndex: 'measureNumber'
},
{
title: '成果形式',
align:"center",
dataIndex: 'achievement'
},
{
title: '备注',
align:"center",
dataIndex: 'remark'
},
// {
// title: '执行情况',
// align:"center",
// dataIndex: 'actualExect'
// },
{
title: '实际完成时间', title: '实际完成时间',
align:"center", align:"center",
dataIndex: 'actualTime' dataIndex: 'actualTime',
}, width: '110px',
{ },
{
title: '提出人确认', title: '提出人确认',
align:"center", align:"center",
dataIndex: 'proposerConfirm' dataIndex: 'proposerConfirm',
}, width: '100px',
{ },
title: '完成状态', {
align:"center",
dataIndex: 'bpmStatus_dictText'
},
// {
// title: '调整落实措施及执行情况',
// align:"center",
// dataIndex: 'actSt'
// },
{
title: '督办次数', title: '督办次数',
align:"center", align:"center",
dataIndex: 'superviseCount' dataIndex: 'superviseCount',
}, width: '80px',
{ },
{
title: '紧急程度', title: '紧急程度',
align:"center", align:"center",
dataIndex: 'urgencyLevel_dictText' dataIndex: 'urgencyLevel_dictText',
}, width: '80px',
},
{ {
title: '密级', title: '密级',
align:"center", 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',
}, },
]; ];