wsq-前端-20260727-新增功能-改善提案页面新增弹窗调整

This commit is contained in:
王淑勤
2026-07-27 15:21:27 +08:00
parent 31d897e2a5
commit 86dcdc9a36
4 changed files with 198 additions and 80 deletions
@@ -25,21 +25,21 @@ export const columns: BasicColumn[] = [
return text;
},
},
{
title: '提案部门ID',
align:"center",
dataIndex: 'proposalDeptId'
},
// {
// title: '提案部门ID',
// align:"center",
// dataIndex: 'proposalDeptId'
// },
{
title: '提案部门名称',
align:"center",
dataIndex: 'proposalDeptName'
},
{
title: '申请人ID',
align:"center",
dataIndex: 'applicantId'
},
// {
// title: '申请人ID',
// align:"center",
// dataIndex: 'applicantId'
// },
{
title: '申请人姓名',
align:"center",
@@ -53,7 +53,7 @@ export const columns: BasicColumn[] = [
{
title: '提案类别',
align:"center",
dataIndex: 'proposalCategory'
dataIndex: 'proposalCategory_dictText'
},
{
title: '问题描述',
@@ -65,15 +65,15 @@ export const columns: BasicColumn[] = [
align:"center",
dataIndex: 'improvementMethod'
},
{
title: '最终奖项',
align:"center",
dataIndex: 'finalAward'
},
// {
// title: '最终奖项',
// align:"center",
// dataIndex: 'finalAward'
// },
{
title: '业务展示状态',
align:"center",
dataIndex: 'bpmStatus'
dataIndex: 'bpmStatus_dictText'
},
];
@@ -272,9 +272,9 @@ export const superQuerySchema = {
proposalNo: {title: '提案编号',order: 0,view: 'text', type: 'string',},
proposalName: {title: '提案名称',order: 1,view: 'text', type: 'string',},
proposalDate: {title: '提出日期',order: 2,view: 'date', type: 'string',},
proposalDeptId: {title: '提案部门ID',order: 3,view: 'text', type: 'string',},
// proposalDeptId: {title: '提案部门ID',order: 3,view: 'text', type: 'string',},
proposalDeptName: {title: '提案部门名称',order: 4,view: 'text', type: 'string',},
applicantId: {title: '申请人ID',order: 5,view: 'text', type: 'string',},
// applicantId: {title: '申请人ID',order: 5,view: 'text', type: 'string',},
applicantName: {title: '申请人姓名',order: 6,view: 'text', type: 'string',},
teamName: {title: '团队名称',order: 7,view: 'text', type: 'string',},
proposalCategory: {title: '提案类别',order: 8,view: 'text', type: 'string',},