修改xispeak前端界面,增加必填项,按照bg给出的新excel表格更新主表子表字段。
This commit is contained in:
@@ -34,15 +34,15 @@ export const columns: BasicColumn[] = [
|
||||
align: 'center',
|
||||
dataIndex: 'responsiblePerson_dictText',
|
||||
},
|
||||
{
|
||||
title: '落实方案',
|
||||
align: 'center',
|
||||
dataIndex: 'implPlan',
|
||||
},
|
||||
// {
|
||||
// title: '落实方案',
|
||||
// align: 'center',
|
||||
// dataIndex: 'implPlan',
|
||||
// },
|
||||
{
|
||||
title: '牵头部门',
|
||||
align: 'center',
|
||||
dataIndex: 'leadDepartment_dictText',
|
||||
dataIndex: 'implDept_dictText',
|
||||
},
|
||||
{
|
||||
title: '贯彻落实措施',
|
||||
@@ -54,36 +54,36 @@ export const columns: BasicColumn[] = [
|
||||
align: 'center',
|
||||
dataIndex: 'numberOfResolutions',
|
||||
},
|
||||
// {
|
||||
// title: '落实情况',
|
||||
// align: 'left',
|
||||
// dataIndex: 'implStatus',
|
||||
// },
|
||||
{
|
||||
title: '落实情况',
|
||||
align: 'left',
|
||||
dataIndex: 'implStatus',
|
||||
},
|
||||
{
|
||||
title: '落实条数',
|
||||
title: '落实措施条数',
|
||||
align: 'center',
|
||||
dataIndex: 'implCount',
|
||||
},
|
||||
{
|
||||
title: '已闭环数量',
|
||||
title: '措施已闭环数',
|
||||
align: 'center',
|
||||
dataIndex: 'closedCount',
|
||||
},
|
||||
{
|
||||
title: '报告反馈情况',
|
||||
align: 'center',
|
||||
dataIndex: 'reportFeedbackStatus',
|
||||
},
|
||||
{
|
||||
title: '是否存在完成风险(0不存在,1存在)',
|
||||
align: 'center',
|
||||
dataIndex: 'isCompletionRisk',
|
||||
},
|
||||
{
|
||||
title: '拖期风险应对措施',
|
||||
align: 'center',
|
||||
dataIndex: 'delayRiskMitigation',
|
||||
},
|
||||
// {
|
||||
// title: '报告反馈情况',
|
||||
// align: 'center',
|
||||
// dataIndex: 'reportFeedbackStatus',
|
||||
// },
|
||||
// {
|
||||
// title: '是否存在完成风险(0不存在,1存在)',
|
||||
// align: 'center',
|
||||
// dataIndex: 'isCompletionRisk',
|
||||
// },
|
||||
// {
|
||||
// title: '拖期风险应对措施',
|
||||
// align: 'center',
|
||||
// dataIndex: 'delayRiskMitigation',
|
||||
// },
|
||||
{
|
||||
title: '完成状态',
|
||||
align: 'center',
|
||||
@@ -105,11 +105,6 @@ export const columns: BasicColumn[] = [
|
||||
return text.length > 10 ? text.substr(0, 10) : text;
|
||||
},
|
||||
},
|
||||
{
|
||||
title: '落实部门',
|
||||
align: 'center',
|
||||
dataIndex: 'implDept_dictText',
|
||||
},
|
||||
// {
|
||||
// title: '层深(最顶层节点层深为0)',
|
||||
// align: 'center',
|
||||
@@ -220,7 +215,12 @@ export const bgXiSpeakFeedbackColumns: BasicColumn[] = [
|
||||
{
|
||||
title: '完成状态',
|
||||
align: 'center',
|
||||
dataIndex: 'completionStatus',
|
||||
dataIndex: 'completionStatus_dictText',
|
||||
},
|
||||
{
|
||||
title: '是否有报送上级报告',
|
||||
align: 'center',
|
||||
dataIndex: 'isReportedToHigher_dictText',
|
||||
},
|
||||
{
|
||||
title: '落实计划',
|
||||
@@ -257,7 +257,7 @@ export const superQuerySchema = {
|
||||
status: { title: '学习传达研究部署情况', order: 4, view: 'text', type: 'string' },
|
||||
responsiblePerson: { title: '责任人', order: 5, view: 'sel_user', type: 'string' },
|
||||
implPlan: { title: '落实方案', order: 6, view: 'text', type: 'string' },
|
||||
leadDepartment: { title: '牵头部门', order: 7, view: 'sel_depart', type: 'string' },
|
||||
implDept: { title: '牵头部门', order: 7, view: 'sel_depart', type: 'string' },
|
||||
implMeasures: { title: '贯彻落实措施', order: 8, view: 'text', type: 'string' },
|
||||
numberOfResolutions: { title: '会议决策数', order: 9, view: 'number', type: 'number' },
|
||||
implStatus: { title: '落实情况', order: 10, view: 'text', type: 'string' },
|
||||
@@ -268,7 +268,6 @@ export const superQuerySchema = {
|
||||
delayRiskMitigation: { title: '拖期风险应对措施', order: 15, view: 'text', type: 'string' },
|
||||
completionStatus: { title: '完成状态(督办中,1已完成)', order: 16, view: 'number', type: 'number' },
|
||||
deadline: { title: '截止日期', order: 17, view: 'date', type: 'string' },
|
||||
implDept: { title: '落实部门id', order: 18, view: 'sel_depart', type: 'string' },
|
||||
treeDepth: { title: '层深(最顶层节点层深为0)', order: 18, view: 'number', type: 'number' },
|
||||
sortOrder: { title: '同级数据排序号', order: 19, view: 'number', type: 'number' },
|
||||
bpmStatus: { title: '流程引擎状态字段', order: 21, view: 'number', type: 'number' },
|
||||
|
||||
Reference in New Issue
Block a user