diff --git a/src/api/ai/auditContent/index.ts b/src/api/ai/auditContent/index.ts index 2b1ffb2..5c6216f 100644 --- a/src/api/ai/auditContent/index.ts +++ b/src/api/ai/auditContent/index.ts @@ -92,6 +92,51 @@ export async function exportExpenseTable(data: { return Promise.reject(new Error('导出失败')); } +/** + * 生成单位发展战略执行审计表 + */ +export async function generateStrategyAuditTable(data: { + kbIds?: string; + libraryIds?: string; + projectLibrary?: string; + history?: string; + suggestion?: string; + docList?: any[]; + fileList?: any[]; +}) { + const res = await request.post>( + MODULES_API_URL + '/ai/auditContent2/generateStrategyAuditTable', + data + ); + + if (res.data.code === 0) { + return res.data; + } + return Promise.reject(new Error(res.data.message)); +} + +/** + * 导出单位发展战略执行审计表到Excel + */ +export async function exportStrategyAuditTable(data: { + data?: any[]; + companyName?: string; + auditTime?: string; +}) { + const res = await request.post( + MODULES_API_URL + '/ai/auditContent2/exportStrategyAuditTable', + data, + { + responseType: 'blob' + } + ); + + if (res.status === 200) { + return res.data; + } + return Promise.reject(new Error('导出失败')); +} + /** * 生成八项规定对比分析表 */ @@ -222,6 +267,519 @@ export async function exportDecisionTable(data: { } ); + if (res.status === 200) { + return res.data; + } + return Promise.reject(new Error('导出失败')); +} + +// =============== 审计内容4:目标完成情况 =============== + +/** + * 生成目标责任完成情况表 + */ +export async function generateTargetTable(data: { + kbIds?: string; + libraryIds?: string; + projectLibrary?: string; + history?: string; + suggestion?: string; + docList?: any[]; + fileList?: any[]; +}) { + const res = await request.post>( + MODULES_API_URL + '/ai/auditContent4/generateTargetTable', + data + ); + + if (res.data.code === 0) { + return res.data; + } + return Promise.reject(new Error(res.data.message)); +} + +/** + * 导出目标责任完成情况表到Excel + */ +export async function exportTargetTable(data: { + data?: any[]; + companyName?: string; + auditTime?: string; +}) { + const res = await request.post( + MODULES_API_URL + '/ai/auditContent4/exportTargetTable', + data, + { + responseType: 'blob' + } + ); + + if (res.status === 200) { + return res.data; + } + return Promise.reject(new Error('导出失败')); +} + +// =============== 审计内容5:财务管理情况 =============== + +/** + * 生成预算管理审计表 + */ +export async function generateBudgetManageTable(data: { + kbIds?: string; + libraryIds?: string; + projectLibrary?: string; + history?: string; + suggestion?: string; + docList?: any[]; + fileList?: any[]; +}) { + const res = await request.post>( + MODULES_API_URL + '/ai/auditContent5/generateBudgetManageTable', + data + ); + + if (res.data.code === 0) { + return res.data; + } + return Promise.reject(new Error(res.data.message)); +} + +/** + * 导出预算管理审计表到Excel + */ +export async function exportBudgetManageTable(data: { + data?: any[]; + companyName?: string; + auditTime?: string; +}) { + const res = await request.post( + MODULES_API_URL + '/ai/auditContent5/exportBudgetManageTable', + data, + { + responseType: 'blob' + } + ); + + if (res.status === 200) { + return res.data; + } + return Promise.reject(new Error('导出失败')); +} + +/** + * 生成预算执行情况审计表 + */ +export async function generateBudgetExecutionTable(data: { + kbIds?: string; + libraryIds?: string; + projectLibrary?: string; + history?: string; + suggestion?: string; + docList?: any[]; + fileList?: any[]; +}) { + const res = await request.post>( + MODULES_API_URL + '/ai/auditContent5/generateBudgetExecutionTable', + data + ); + + if (res.data.code === 0) { + return res.data; + } + return Promise.reject(new Error(res.data.message)); +} + +/** + * 导出预算执行情况审计表到Excel + */ +export async function exportBudgetExecutionTable(data: { + data?: any[]; + companyName?: string; + auditTime?: string; +}) { + const res = await request.post( + MODULES_API_URL + '/ai/auditContent5/exportBudgetExecutionTable', + data, + { + responseType: 'blob' + } + ); + + if (res.status === 200) { + return res.data; + } + return Promise.reject(new Error('导出失败')); +} + +// =============== 审计内容6:国资管理情况 =============== + +/** + * 生成国有资产管理审计表 + */ +export async function generateAssetsTable(data: { + kbIds?: string; + libraryIds?: string; + projectLibrary?: string; + history?: string; + suggestion?: string; + docList?: any[]; + fileList?: any[]; +}) { + const res = await request.post>( + MODULES_API_URL + '/ai/auditContent6/generateAssetsTable', + data + ); + + if (res.data.code === 0) { + return res.data; + } + return Promise.reject(new Error(res.data.message)); +} + +/** + * 导出国有资产管理审计表到Excel + */ +export async function exportAssetsTable(data: { + data?: any[]; + companyName?: string; + auditTime?: string; +}) { + const res = await request.post( + MODULES_API_URL + '/ai/auditContent6/exportAssetsTable', + data, + { + responseType: 'blob' + } + ); + + if (res.status === 200) { + return res.data; + } + return Promise.reject(new Error('导出失败')); +} + +// =============== 审计内容7:重大投资情况 =============== + +/** + * 生成重大对外投资审计表 + */ +export async function generateInvestmentTable(data: { + kbIds?: string; + libraryIds?: string; + projectLibrary?: string; + history?: string; + suggestion?: string; + docList?: any[]; + fileList?: any[]; +}) { + const res = await request.post>( + MODULES_API_URL + '/ai/auditContent7/generateInvestmentTable', + data + ); + + if (res.data.code === 0) { + return res.data; + } + return Promise.reject(new Error(res.data.message)); +} + +/** + * 导出重大对外投资审计表到Excel + */ +export async function exportInvestmentTable(data: { + data?: any[]; + companyName?: string; + auditTime?: string; +}) { + const res = await request.post( + MODULES_API_URL + '/ai/auditContent7/exportInvestmentTable', + data, + { + responseType: 'blob' + } + ); + + if (res.status === 200) { + return res.data; + } + return Promise.reject(new Error('导出失败')); +} + +/** + * 生成重大工程建设审计表 + */ +export async function generateProjectConstructionTable(data: { + kbIds?: string; + libraryIds?: string; + projectLibrary?: string; + history?: string; + suggestion?: string; + docList?: any[]; + fileList?: any[]; +}) { + const res = await request.post>( + MODULES_API_URL + '/ai/auditContent7/generateProjectConstructionTable', + data + ); + + if (res.data.code === 0) { + return res.data; + } + return Promise.reject(new Error(res.data.message)); +} + +/** + * 导出重大工程建设审计表到Excel + */ +export async function exportProjectConstructionTable(data: { + data?: any[]; + companyName?: string; + auditTime?: string; +}) { + const res = await request.post( + MODULES_API_URL + '/ai/auditContent7/exportProjectConstructionTable', + data, + { + responseType: 'blob' + } + ); + + if (res.status === 200) { + return res.data; + } + return Promise.reject(new Error('导出失败')); +} + +// =============== 审计内容8:治理结构与内部控制 =============== + +/** + * 生成内部控制测试表 + */ +export async function generateInternalControlTable(data: { + kbIds?: string; + libraryIds?: string; + projectLibrary?: string; + history?: string; + suggestion?: string; + docList?: any[]; + fileList?: any[]; +}) { + const res = await request.post>( + MODULES_API_URL + '/ai/auditContent8/generateInternalControlTable', + data + ); + + if (res.data.code === 0) { + return res.data; + } + return Promise.reject(new Error(res.data.message)); +} + +/** + * 导出内部控制测试表到Excel + */ +export async function exportInternalControlTable(data: { + data?: any[]; + companyName?: string; + auditTime?: string; +}) { + const res = await request.post( + MODULES_API_URL + '/ai/auditContent8/exportInternalControlTable', + data, + { + responseType: 'blob' + } + ); + + if (res.status === 200) { + return res.data; + } + return Promise.reject(new Error('导出失败')); +} + +// =============== 审计内容9:人员编制管理 =============== + +/** + * 生成人员编制管理审计表 + */ +export async function generatePersonnelTable(data: { + kbIds?: string; + libraryIds?: string; + projectLibrary?: string; + history?: string; + suggestion?: string; + docList?: any[]; + fileList?: any[]; +}) { + const res = await request.post>( + MODULES_API_URL + '/ai/auditContent9/generatePersonnelTable', + data + ); + + if (res.data.code === 0) { + return res.data; + } + return Promise.reject(new Error(res.data.message)); +} + +/** + * 导出人员编制管理审计表到Excel + */ +export async function exportPersonnelTable(data: { + data?: any[]; + companyName?: string; + auditTime?: string; +}) { + const res = await request.post( + MODULES_API_URL + '/ai/auditContent9/exportPersonnelTable', + data, + { + responseType: 'blob' + } + ); + + if (res.status === 200) { + return res.data; + } + return Promise.reject(new Error('导出失败')); +} + +// =============== 审计内容10:廉政情况 =============== + +/** + * 生成党风廉政建设责任制审计表 + */ +export async function generatePartyConductTable(data: { + kbIds?: string; + libraryIds?: string; + projectLibrary?: string; + history?: string; + suggestion?: string; + docList?: any[]; + fileList?: any[]; +}) { + const res = await request.post>( + MODULES_API_URL + '/ai/auditContent10/generatePartyConductTable', + data + ); + + if (res.data.code === 0) { + return res.data; + } + return Promise.reject(new Error(res.data.message)); +} + +/** + * 导出党风廉政建设责任制审计表到Excel + */ +export async function exportPartyConductTable(data: { + data?: any[]; + companyName?: string; + auditTime?: string; +}) { + const res = await request.post( + MODULES_API_URL + '/ai/auditContent10/exportPartyConductTable', + data, + { + responseType: 'blob' + } + ); + + if (res.status === 200) { + return res.data; + } + return Promise.reject(new Error('导出失败')); +} + +// =============== 审计内容11:历史审计问题整改 =============== + +/** + * 生成历史审计问题整改表 + */ +export async function generateHistoryTable(data: { + kbIds?: string; + libraryIds?: string; + projectLibrary?: string; + history?: string; + suggestion?: string; + docList?: any[]; + fileList?: any[]; +}) { + const res = await request.post>( + MODULES_API_URL + '/ai/auditContent11/generateHistoryTable', + data + ); + + if (res.data.code === 0) { + return res.data; + } + return Promise.reject(new Error(res.data.message)); +} + +/** + * 导出历史审计问题整改表到Excel + */ +export async function exportHistoryTable(data: { + data?: any[]; + companyName?: string; + auditTime?: string; +}) { + const res = await request.post( + MODULES_API_URL + '/ai/auditContent11/exportHistoryTable', + data, + { + responseType: 'blob' + } + ); + + if (res.status === 200) { + return res.data; + } + return Promise.reject(new Error('导出失败')); +} + +// =============== 审计内容1:贯策决策部署情况 - 补充缺失的接口 =============== + +/** + * 生成贯策决策部署表 + */ +export async function generateDefault1Table(data: { + kbIds?: string; + libraryIds?: string; + projectLibrary?: string; + history?: string; + suggestion?: string; + docList?: any[]; + fileList?: any[]; +}) { + const res = await request.post>( + MODULES_API_URL + '/ai/auditContent1/generateDefault1Table', + data + ); + + if (res.data.code === 0) { + return res.data; + } + return Promise.reject(new Error(res.data.message)); +} + +/** + * 导出贯策决策部署表到Excel + */ +export async function exportDefault1Table(data: { + data?: any[]; + companyName?: string; + auditTime?: string; +}) { + const res = await request.post( + MODULES_API_URL + '/ai/auditContent1/exportDefault1Table', + data, + { + responseType: 'blob' + } + ); + if (res.status === 200) { return res.data; } diff --git a/src/views/pwl/pwlProject/components/data/funcs.ts b/src/views/pwl/pwlProject/components/data/funcs.ts index e481600..8088ab4 100644 --- a/src/views/pwl/pwlProject/components/data/funcs.ts +++ b/src/views/pwl/pwlProject/components/data/funcs.ts @@ -1,5 +1,10 @@ -import navigationItems from '@/views/pwl/pwlProject/components/data/navigationItems'; +// 导入Vue相关依赖 +import { ref } from 'vue'; +// 当前章节的ref +const currentSection = ref(0); + +// 滚动到指定章节 export const scrollToSection = (index: number) => { const element = document.getElementById(`section-${index}`); if (element) { @@ -10,88 +15,71 @@ export const scrollToSection = (index: number) => { } }; +// 获取滚动容器 export const getScrollContainer = () => { - return document.querySelector('.ant-modal-body'); + const drawer = document.querySelector('.ant-drawer-body'); + return drawer || document.querySelector('.ant-modal-body') || document.documentElement; }; - -/* 监听滚动位置更新当前章节 */ +// 监听滚动位置更新当前章节 export const handleScroll = () => { - const sections = navigationItems.map((_, index) => - document.getElementById(`section-${index}`) - ); - const scrollContainer = getScrollContainer(); if (!scrollContainer) return; - const containerTop = scrollContainer.getBoundingClientRect().top; + const containerScrollTop = scrollContainer.scrollTop || document.documentElement.scrollTop; + + // 获取所有章节元素 + const sections = Array.from(document.querySelectorAll('.audit-section')); for (let i = sections.length - 1; i >= 0; i--) { const section = sections[i]; - if (section) { - const sectionTop = section.getBoundingClientRect().top - containerTop; - if (sectionTop <= 100) { - // 100px 的偏移量 - currentSection.value = i; - break; - } + const sectionTop = section.offsetTop; + + if (sectionTop - 100 <= containerScrollTop) { + currentSection.value = i; + break; } } }; +// 检查章节是否有内容 +export const hasContent = (section: any) => { + if (!section) return false; -/* 新增:构建导出数据的公共方法 */ + if (section.mode === 'table') { + return section.data && section.data.length > 0; + } else if (section.textareaList) { + return section.textareaList.some(textarea => textarea.content && textarea.content.trim()); + } else { + return !!section.content?.trim(); + } +}; + +// 构建导出数据 export const buildExportData = () => { + // 这里根据实际情况构建数据 + // 由于navigationItems现在是函数返回的ref,需要先获取值 + const items = navigationItems ? navigationItems.value : []; + const exportData: any = { - from00: form.code, - from10: navigationItems[0].content, - from20: navigationItems[1].content, - from30: navigationItems[2].content + companyName: form?.name || '', + auditTime: form?.expirationTime || '' }; - // 被审计单位基本情况 - const basicInfoSection: any = navigationItems[3]; - if (basicInfoSection?.children) { - exportData.from41 = basicInfoSection.children[0].content; - exportData.from42 = basicInfoSection.children[1].content; - exportData.from43 = basicInfoSection.children[2].content; - exportData.from44 = [basicInfoSection.children[3].content]; - exportData.from45 = basicInfoSection.children[4].content; - } - - // 审计内容和重点及审计方法 - const auditContentSection: any = navigationItems[4]; - if (auditContentSection?.children) { - exportData.from51 = auditContentSection.children[0].content; - exportData.from52 = auditContentSection.children[1].content; - exportData.from53 = auditContentSection.children[2].content; - exportData.from54 = auditContentSection.children[3].content; - exportData.from55 = auditContentSection.children[4].content; - exportData.from56 = auditContentSection.children[5].content; - exportData.from57 = auditContentSection.children[6].content; - exportData.from58 = auditContentSection.children[7].content; - } - - // 重要风险的识别及应对 - const riskSection: any = navigationItems[5]; - if (riskSection?.children) { - exportData.from61 = riskSection.children[0].content; - exportData.from62 = riskSection.children[1].content; - } - - // 其他部分 - exportData.from70 = navigationItems[6].content; - exportData.from80 = navigationItems[7].content; - exportData.from90 = navigationItems[8].content; + // 收集所有表格数据 + items.forEach((item, index) => { + if (item.mode === 'table' && item.data && item.data.length > 0) { + const currentTable = item.tableOptions[item.currentTableIndex]; + if (currentTable) { + exportData[`table${index + 1}_${currentTable.value}`] = item.data; + } + } else if (item.content) { + exportData[`content${index + 1}`] = item.content; + } + }); return exportData; }; -export const hasContent = (section: any) => { - if (!section) return false; - - if (section.children) { - return section.children.some((child) => child.content?.trim()); - } - return !!section.content?.trim(); -}; +// 导出currentSection以便其他文件使用 +export { currentSection }; \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/data/navigationItems.ts b/src/views/pwl/pwlProject/components/data/navigationItems.ts index 59f33b5..ff87b63 100644 --- a/src/views/pwl/pwlProject/components/data/navigationItems.ts +++ b/src/views/pwl/pwlProject/components/data/navigationItems.ts @@ -1,647 +1,45 @@ -import columns from './columns'; -import table3Columns from '@/views/pwl/pwlProject/components/data/table3Columns'; -import table1Columns from '@/views/pwl/pwlProject/components/data/table1Columns'; -import table4Columns from '@/views/pwl/pwlProject/components/data/table4Columns'; import { ref } from 'vue'; +import { getTableConfig } from './tableCommon'; -export default ref([ - { - number: '一', - name: '审计内容1', - title: '', - description: '点击"AI生成"按钮让AI为您生成该部分内容,或直接在下方编辑', - placeholder: '请输入审计依据内容...', - content: '', - suggestion: '', - formCommit: 10, - rows: 10, - generating: false, - extra1: true, - file1: true, - mode: 'table', - columns: table1Columns.columns0, - count: 1 - }, - { - number: '二', - name: '审计内容2', - title: '', - description: '点击"AI生成"按钮让AI为您生成该部分内容,或直接在下方编辑', - placeholder: '请输入审计目标内容...', - content: '', - suggestion: '', - formCommit: 20, - rows: 6, - generating: false, - mode: 'text', - count: 2 - }, - { - number: '三', - name: '审计内容3', - title: '重大经济决策调查表', - description: '点击"AI生成"按钮生成重大经济决策调查表数据', - generating: false, - extra3: true, - file3: true, - generateMethod: null, - mode: 'table', - columns: table3Columns.columns0, - data: [], - count: 3 - }, - { - number: '四', - name: '审计内容4', - title: '', - description: '点击"AI生成"按钮让AI为您生成该部分内容,或直接在下方编辑', - generating: false, - mode: 'table', - columns: table4Columns.columns0, - count: 4 - }, - { - number: '五', - name: '审计内容5', - title: '', - description: '点击"AI生成"按钮让AI为您生成该部分内容,或直接在下方编辑', - generating: false, - mode: 'text', - columns: [], - count: 5 - }, - { - number: '六', - name: '审计内容6', - title: '', - description: '点击"AI生成"按钮让AI为您生成该部分内容,或直接在下方编辑', - generating: false, - mode: 'text', - count: 6, - textareaList: [ - { - label: '审查财务支出凭据', - rows: 8, - content: '' - }, - { - label: '是否存在应报政府采购而未报的情', - rows: 8, - content: '' - }, - { - label: '已执行政府采购的名单', - rows: 8, - content: '' - }, - { - label: '单一采购来源', - rows: 8, - content: '' - } - ], - columns: [] - }, - { - number: '七', - name: '审计内容7', - title: '', - description: '点击"AI生成"按钮让AI为您生成该部分内容,或直接在下方编辑', - placeholder: '请输入审计技术方法内容...', - content: '', - suggestion: '', - formCommit: 70, - rows: 8, - generating: false, - mode: 'text', - columns, - count: 7 - }, - { - number: '八', - name: '审计内容8', - title: '', - description: '点击"AI生成"按钮让AI为您生成该部分内容,或直接在下方编辑', - placeholder: '请输入工作步骤与时间安排内容...', - content: '', - suggestion: '', - formCommit: 80, - rows: 10, - generating: false, - mode: 'radio', - count: 8, - radioList: [ - { - label: '(1)审计是否确定内部控制职能部门或牵头部门。', - content: '' - }, - { - label: '(2)审计是否建立单位各部门在内部控制中的沟通协调和联动机制。', - content: '' - }, - { - label: - '(3)审计是否建立健全集体研究、专家论证和技术咨询相结合的议事决策机制,是否建立经济活动风险定期评估机制。', - content: '' - }, - { - label: - '(4)审计是否建立健全岗位责任制,明确各岗位职责与分工,办理业务和事项的权限范围、审批程序和相关责任。', - content: '' - }, - { - label: - '(5)审计是否建立健全内部监督机制,明确各相关部门或岗位在内部监督中的职责权限,规定内部监督的程序和要求,是否定期对内部控制建立与实施情况进行内部监督检查与自我评价。重点关注内部审计监督制度和内部审计机构是否健全等。', - content: '' - }, - { - label: - '(6)审计是否建立工作人员的培训、评价、轮岗制度;应持从业资格证上岗的岗位人员是否都持有从业资格证书。', - content: '' - }, - { - label: - '(7)是否建立健全预算编制、审批、执行、决算与评价等预算内部管理制度。', - content: '' - }, - { - label: - '(8)是否按照国家统一的会计制度对经济业务进行账务处理并编制财务会计报告。', - content: '' - }, - { - label: - '(9)是否建立健全单位财务管理制度、收入、支出内部管理制度,明确单位经济活动的各项支出标准、明确支出报销流程;是否建立健全票据管理制度;是否建立健全债务内部管理制度。重点关注货币资金管理制度和财务报销制度,包括货币资金业务岗位责任,货币资金业务不相容岗位分离、制约和监督,货币资金收支控制,现金日记账登记与核对,银行账户管理,资金管理关键岗位的稽核等方面有无制度规定。财务报销管理中支出审批权限和报销审核、不相容职务分离等方面有无控制制度;', - content: '' - }, - { - label: - '(10)是否建立健全政府采购预算与计划管理、政府采购活动管理、验收管理等政府采购内部管理制度。物资采购重点关注预算、政府采购、验收、付款等物资采购关键环节的内部管理与控制制度是否健全;', - content: '' - }, - { - label: - '(11)是否建立健全资产内部管理制度,重点关注资产的购置、验收、分配、使用、维修、处置、财务核算等管理制度是否健全;是否建立健全对外投资的责任追究制度。', - content: '' - }, - { - label: - '(12)是否建立健全业务管理制度。关注各业务管理环节的管理办法或制度是否健全。', - content: '' - }, - { - label: '(13)是否建立健全合同内部管理制度', - content: '' - } - ], - textareaList: [ - { - label: '内部控制的有效性', - rows: 8, - content: '' - }, - { - label: '对所属单位(企业)的管理和监督的情况', - rows: 8, - content: '' - }, - { - label: '被审计领导干部任职期间新增加或新变动的重要管理或业务', - rows: 8, - content: '' - }, - { - label: '单一采购来源', - rows: 8, - content: '' - } - ] - }, - { - number: '九', - name: '审计内容9', - title: '', - description: '点击"AI生成"按钮让AI为您生成该部分内容,或直接在下方编辑', - placeholder: '请输入审计工作的组织实施内容...', - content: '', - suggestion: '', - formCommit: 90, - rows: 8, - generating: false, - mode: 'text', - count: 9 - }, - { - number: '十', - name: '审计内容10', - title: '', - description: '点击"AI生成"按钮让AI为您生成该部分内容,或直接在下方编辑', - placeholder: '请输入审计工作的组织实施内容...', - content: '', - suggestion: '', - formCommit: 90, - rows: 8, - generating: false, - mode: 'table', - count: 10, - columns: [ - { - title: '大类', - dataIndex: 'col0', - key: '', - align: 'center', - customCell: (_, index) => { - if (index === 0) return { rowSpan: 37 }; - else if (index === 37) return { rowSpan: 3 }; - else if (index === 40) return { rowSpan: 3 }; - return { rowSpan: 0 }; - } - }, - { - title: '子类', - dataIndex: 'col1', - key: '', - align: 'center', - customCell: (_, index) => { - if (index === 0) return { rowSpan: 17 }; - else if (index === 17) return { rowSpan: 8 }; - else if (index === 25) return { rowSpan: 8 }; - else if (index === 33) return { rowSpan: 4 }; - else if (index === 37) return { rowSpan: 3 }; - else if (index === 40) return { rowSpan: 3 }; - return { rowSpan: 0 }; - } - }, - { - title: '小类', - dataIndex: 'col2', - key: '', - align: 'center', - customCell: (row, index) => { - console.log(index, row); - if ( - [4, 17, 22, 25, 26, 27, 28, 29, 32, 33, 34, 37, 38, 39, 42].includes( - index - ) - ) - return { rowSpan: 1 }; - else if ([18, 20, 23, 30, 35, 40].includes(index)) return { rowSpan: 2 }; - if (index === 0) return { rowSpan: 4 }; - else if (index === 5) return { rowSpan: 4 }; - else if (index === 9) return { rowSpan: 5 }; - else if (index === 14) return { rowSpan: 3 }; - return { rowSpan: 0 }; - } - }, - { - title: '内容', - dataIndex: 'content', - key: '', - align: 'center' - }, - { - title: '执行情况', - dataIndex: 'result', - key: '', - align: 'center' - }, - { - title: '工作底稿索引', - dataIndex: 'workPaperIndex', - key: 'workPaperIndex', - align: 'center', - width: 140, - ellipsis: true - }, - { - title: '操作', - key: 'action', - align: 'center', - width: 140 - } - ], - data: [ - { - id: 1, - col0: '一、落实党风廉政建设责任制', - col1: '落实主体责任和监督责任', - col2: '强化组织领导', - content: '建立责任清单、明确党组、纪检责任' - }, - { - id: 2, - col0: '', - col1: '', - col2: '', - content: - '建立健全反腐败领导机制,人员调整后及时进行分工,并全年召开两次以上协调会' - }, - { - id: 3, - col0: '', - col1: '', - col2: '', - content: - '主要领导认真履行第一责任人责任,对党风廉政建设重要工作亲自部署、重大问题亲自过问、重点环节亲自协调、重要案件亲自督办5次以上' - }, - { - id: 4, - col0: '', - col1: '', - col2: '', - content: - '领导班子其他成员对职责范围内的党风廉政建设承担主要责任,与分管联系部门研究安排党风廉政建设工作4次以上' - }, - { - id: 5, - col0: '', - col1: '', - col2: '及时部署工作任务', - content: - '有党风廉政建设任务分工方案,党组专题研究部署党风廉政建设工作4次以上' - }, - { - id: 6, - col0: '', - col1: '', - col2: '层层传到责任和压力', - content: - '主要领导检查和调研党风廉政建设各一次以上,每年听取分管联系部门的党风廉政建设一次以上,且每年亲自上廉政党课不少于1次' - }, - { - id: 7, - col0: '', - col1: '', - col2: '', - content: - '分管领导对分管联系部门党风廉政建设检查和调研各1次以上,每年听取分管联系部门的党风廉政建设情况汇报一次以上,到分管联系部门上廉政党课1次以上' - }, - { - id: 8, - col0: '', - col1: '', - col2: '', - content: - '党组、纪检组注重抓早抓小,经常进行咬耳扯袖、红脸出汗,及时开展约谈、集体廉政谈话等工作3次以上' - }, - { - id: 9, - col0: '', - col1: '', - col2: '', - content: '开展述责评议工作' - }, - { - id: 10, - col0: '', - col1: '', - col2: '坚持“一案双查”', - content: - '对发生在本单位的较严重的违反政治纪律、组织纪律等问题进行“一案双查”' - }, - { - id: 11, - col0: '', - col1: '', - col2: '', - content: '出现“四风”和腐败等顶风违纪问题的' - }, - { - id: 12, - col0: '', - col1: '', - col2: '', - content: '出现区域性系统性违纪违法问题突出的' - }, - { - id: 13, - col0: '', - col1: '', - col2: '', - content: '出现上级交办的党风廉政建设事项不传达部署和落实的' - }, - { - id: 14, - col0: '', - col1: '', - col2: '', - content: - '出现违纪行为隐瞒不报压案不查等问题而未进行责任追究被中央、自治区进行挂牌督办或直接问责、约谈' - }, - { - id: 15, - col0: '', - col1: '', - col2: '及时汇报工作情况', - content: '党组、纪检组向自治区党委、纪委汇报“两个”责任落实情况两次以上' - }, - { - id: 16, - col0: '', - col1: '', - col2: '', - content: '班子成员年底向自治区纪委报送个人落实“两个责任”情况报告' - }, - { - id: 17, - col0: '', - col1: '', - col2: '', - content: '按照自治区纪委部署开展其他工作,并按时报送总结报告的' - }, - { - id: 18, - col0: '', - col1: '落实中央八项规定精神工作', - col2: '开展监督检查', - content: '部署开展监督检查3次以上,' - }, - { - id: 19, - col0: '', - col1: '', - col2: '报送数据和资料', - content: '每月按时报送中央八项规定精神案件有关统计数据和有关资料' - }, - { - id: 20, - col0: '', - col1: '', - col2: '', - content: '每月不按时报送或未按要求报送的' - }, - { - id: 21, - col0: '', - col1: '', - col2: '查办违反中央八项规定精神案件', - content: '及时查处监督检查中发现的问题和中央、自治区转办督办的问题线索' - }, - { - id: 22, - col0: '', - col1: '', - col2: '', - content: - '出现违反中央八项规定精神问题被上级查处的,或查处但问责太轻,被上级责令重新查办' - }, - { - id: 23, - col0: '', - col1: '', - col2: '通报曝光', - content: '对受到党纪政纪处分的问题全部进行通报曝光的' - }, - { - id: 24, - col0: '', - col1: '', - col2: '清退干部职工多占住房', - content: '到年底还不能完成干部职工多占住房清退的' - }, - { - id: 25, - col0: '', - col1: '', - col2: '', - content: '信访反映清房工作不到位被查实的' - }, - { - id: 26, - col0: '', - col1: '开展查处发生在群众身边的“四风”和腐败问题专项工作', - col2: '及时梳理处置问题线索', - content: '对收到或者上级交办问题线索进行转办督办或直接查办的' - }, - { - id: 27, - col0: '', - col1: '', - col2: '查处一批案件', - content: '因查处案件不力被自治区约谈或通报批评的' - }, - { - id: 28, - col0: '', - col1: '', - col2: '通报曝光一批典型案件', - content: '对查处的案件进行通报曝光' - }, - { - id: 29, - col0: '', - col1: '', - col2: '营造氛围', - content: '加大宣传力度,用典型案例进行警示教育' - }, - { - id: 30, - col0: '', - col1: '', - col2: '督促违纪人员主动交代问题', - content: - '以文件形式或在网络、报纸、电视等媒介上发布公告,督促违纪人员主动交代问题并主动上缴违纪所得' - }, - { - id: 31, - col0: '', - col1: '', - col2: '进行总结并建立长效机制', - content: '没有在6月20日前进行总结' - }, - { - id: 32, - col0: '', - col1: '', - col2: '', - content: '没有结合专项工作中发现存在的突出问题建立完善制度措施' - }, - { - id: 33, - col0: '', - col1: '', - col2: '专项工作纳入常态化治理', - content: '6月后,在全部二层单位开展专项工作' - }, - { - id: 34, - col0: '', - col1: '严明纪律确保政令畅通', - col2: '严明政治纪律和组织纪律', - content: '有违反政治纪律等问题被中央、自治区查处的' - }, - { - id: 35, - col0: '', - col1: '', - col2: '按时完成中央和自治区重大决策部署', - content: '出现问题被中央、自治区问责的' - }, - { - id: 36, - col0: '', - col1: '', - col2: '按时完成转办督办案件', - content: '按时完成自治区纪委转办督办的党风政风类案件' - }, - { - id: 37, - col0: '', - col1: '', - col2: '', - content: '不按时完成或不完成的' - }, - { - id: 38, - col0: '二、巡视整改工作', - col1: '', - col2: '', - content: '严格执行月报告制度' - }, - { - id: 39, - col0: '', - col1: '', - col2: '', - content: '按时完成整改任务' - }, - { - id: 40, - col0: '', - col1: '', - col2: '', - content: '因巡视整改不给力被追究' - }, - { - id: 41, - col0: '三、深化纪律检查体制改革', - col1: '', - col2: '聚焦主业主责,持续深化“三转”工作', - content: '纪检组长或纪工委书记不分管具体业务工作,专职抓执纪监督问责工作' - }, - { - id: 42, - col0: '', - col1: '', - col2: '', - content: '检查发现有参与业务工作' - }, - { - id: 43, - col0: '', - col1: '', - col2: '健全完善深化纪检体制改革的相关制度文件并抓好贯彻落实', - content: '年底前制定有1项以上配套制度文件' - } - ] +const navigationItems = ref([]); + +// 初始化导航项 +export function initNavigationItems() { + navigationItems.value = Array.from({ length: 11 }, (_, index) => { + const config = getTableConfig(index); + return { + number: getChineseNumber(index + 1), + name: `审计内容${index + 1}`, + title: config?.title || `审计内容${index + 1}`, + description: '点击"AI生成"按钮让AI为您生成该部分内容,或直接在下方编辑', + generating: false, + suggestion: '', + mode: 'table', + showFileSelect: true, // 所有项都显示文件选择 + data: [], + currentTableIndex: 0, // 当前选中的表格索引 + columns: null, + tableOptions: config?.options || [], + count: index + 1, + tableType: config?.type || `auditContent${index + 1}`, + content: '', + rows: 8 + }; + }); + + return navigationItems; +} + +// 获取中文数字 +function getChineseNumber(num) { + const chineseNumbers = ['一', '二', '三', '四', '五', '六', '七', '八', '九', '十', '十一']; + return chineseNumbers[num - 1] || num; +} + +// 导出初始化的导航项 +export default function useNavigationItems() { + if (navigationItems.value.length === 0) { + initNavigationItems(); } -]); - - - - - - - - - + return navigationItems; +} \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/data/table10Columns.ts b/src/views/pwl/pwlProject/components/data/table10Columns.ts new file mode 100644 index 0000000..cece972 --- /dev/null +++ b/src/views/pwl/pwlProject/components/data/table10Columns.ts @@ -0,0 +1,81 @@ +// 党风廉政建设责任制表格列 +export const partyConductColumns = [ + { + title: '大类', + dataIndex: 'category', + key: 'category', + align: 'center', + width: 150, + customCell: (_, index) => { + if (index === 0) return { rowSpan: 37 }; + else if (index === 37) return { rowSpan: 3 }; + else if (index === 40) return { rowSpan: 3 }; + return { rowSpan: 0 }; + } + }, + { + title: '子类', + dataIndex: 'subCategory', + key: 'subCategory', + align: 'center', + width: 180, + customCell: (_, index) => { + if (index === 0) return { rowSpan: 17 }; + else if (index === 17) return { rowSpan: 8 }; + else if (index === 25) return { rowSpan: 8 }; + else if (index === 33) return { rowSpan: 4 }; + else if (index === 37) return { rowSpan: 3 }; + else if (index === 40) return { rowSpan: 3 }; + return { rowSpan: 0 }; + } + }, + { + title: '小类', + dataIndex: 'detailCategory', + key: 'detailCategory', + align: 'center', + width: 150, + customCell: (_, index) => { + if ([4, 17, 22, 25, 26, 27, 28, 29, 32, 33, 34, 37, 38, 39, 42].includes(index)) + return { rowSpan: 1 }; + else if ([18, 20, 23, 30, 35, 40].includes(index)) return { rowSpan: 2 }; + if (index === 0) return { rowSpan: 4 }; + else if (index === 5) return { rowSpan: 4 }; + else if (index === 9) return { rowSpan: 5 }; + else if (index === 14) return { rowSpan: 3 }; + return { rowSpan: 0 }; + } + }, + { + title: '内容', + dataIndex: 'content', + key: 'content', + align: 'left', + width: 300 + }, + { + title: '执行情况', + dataIndex: 'executionStatus', + key: 'executionStatus', + align: 'center', + width: 120 + }, + { + title: '工作底稿索引', + dataIndex: 'workPaperIndex', + key: 'workPaperIndex', + align: 'center', + width: 140, + ellipsis: true + }, + { + title: '操作', + key: 'action', + align: 'center', + width: 100 + } +]; + +export default { + partyConductColumns +}; \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/data/table11Columns.ts b/src/views/pwl/pwlProject/components/data/table11Columns.ts new file mode 100644 index 0000000..820b176 --- /dev/null +++ b/src/views/pwl/pwlProject/components/data/table11Columns.ts @@ -0,0 +1,94 @@ +// 历史审计问题整改表格列 +export const auditHistoryColumns = [ + { + title: '序号', + dataIndex: 'index', + key: 'index', + width: 80, + align: 'center' + }, + { + title: '审计年度', + dataIndex: 'auditYear', + key: 'auditYear', + align: 'center', + width: 100 + }, + { + title: '审计类型', + dataIndex: 'auditType', + key: 'auditType', + align: 'center', + width: 120 + }, + { + title: '审计发现的问题', + dataIndex: 'problemFound', + key: 'problemFound', + align: 'left', + width: 250, + ellipsis: true + }, + { + title: '整改要求', + dataIndex: 'rectificationRequirement', + key: 'rectificationRequirement', + align: 'left', + width: 200, + ellipsis: true + }, + { + title: '整改措施', + dataIndex: 'rectificationMeasures', + key: 'rectificationMeasures', + align: 'left', + width: 200, + ellipsis: true + }, + { + title: '整改完成情况', + dataIndex: 'rectificationStatus', + key: 'rectificationStatus', + align: 'center', + width: 120 + }, + { + title: '整改完成时间', + dataIndex: 'completionDate', + key: 'completionDate', + align: 'center', + width: 120 + }, + { + title: '整改责任人', + dataIndex: 'responsiblePerson', + key: 'responsiblePerson', + align: 'center', + width: 120 + }, + { + title: '备注', + dataIndex: 'remark', + key: 'remark', + align: 'center', + width: 150 + }, + { + title: '工作底稿索引', + dataIndex: 'workPaperIndex', + key: 'workPaperIndex', + align: 'center', + width: 140, + ellipsis: true + }, + { + title: '操作', + key: 'action', + align: 'center', + width: 100 + } +]; + +export default { + auditHistoryColumns +}; \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/data/table1Columns.ts b/src/views/pwl/pwlProject/components/data/table1Columns.ts index 43a3779..c971871 100644 --- a/src/views/pwl/pwlProject/components/data/table1Columns.ts +++ b/src/views/pwl/pwlProject/components/data/table1Columns.ts @@ -1,4 +1,14 @@ -export const columns0 = [ +// 创建测试结果渲染函数 +export function createTestResultRender() { + return ({ text }) => { + if (text === '通过') return '通过'; + if (text === '不通过') return '不通过'; + return text || '待检查'; + }; +} + +// 贯彻决策部署表格列 +export const default1Columns = [ { title: '序号', dataIndex: 'index', @@ -8,26 +18,26 @@ export const columns0 = [ }, { title: '单位名称', - dataIndex: '', - key: '', + dataIndex: 'unitName', + key: 'unitName', align: 'center' }, { title: '规格', - dataIndex: '', - key: '', + dataIndex: 'specification', + key: 'specification', align: 'center' }, { title: '经费来源', - dataIndex: '', - key: '', + dataIndex: 'fundSource', + key: 'fundSource', align: 'center' }, { title: '编制数额', - dataIndex: '', - key: '', + dataIndex: 'establishmentNum', + key: 'establishmentNum', align: 'center' }, { @@ -36,14 +46,14 @@ export const columns0 = [ children: [ { title: '其他编制', - dataIndex: '', - key: '', + dataIndex: 'otherEstablishment', + key: 'otherEstablishment', align: 'center' }, { title: '事业编制', - dataIndex: '', - key: '', + dataIndex: 'institutionEstablishment', + key: 'institutionEstablishment', align: 'center' } ] @@ -54,14 +64,14 @@ export const columns0 = [ children: [ { title: '参公人数', - dataIndex: '', - key: '', + dataIndex: 'publicServantNum', + key: 'publicServantNum', align: 'center' }, { title: '聘用人数', - dataIndex: '', - key: '', + dataIndex: 'employedNum', + key: 'employedNum', align: 'center' } ] @@ -76,14 +86,14 @@ export const columns0 = [ children: [ { title: '核定数', - dataIndex: '', - key: '', + dataIndex: 'departmentApproved', + key: 'departmentApproved', align: 'center' }, { - title: '核定数', - dataIndex: '', - key: '', + title: '实有数', + dataIndex: 'departmentActual', + key: 'departmentActual', align: 'center' } ] @@ -94,14 +104,14 @@ export const columns0 = [ children: [ { title: '核定数', - dataIndex: '', - key: '', + dataIndex: 'sectionApproved', + key: 'sectionApproved', align: 'center' }, { - title: '核定数', - dataIndex: '', - key: '', + title: '实有数', + dataIndex: 'sectionActual', + key: 'sectionActual', align: 'center' } ] @@ -112,14 +122,14 @@ export const columns0 = [ children: [ { title: '核定数', - dataIndex: '', - key: '', + dataIndex: 'teamApproved', + key: 'teamApproved', align: 'center' }, { - title: '核定数', - dataIndex: '', - key: '', + title: '实有数', + dataIndex: 'teamActual', + key: 'teamActual', align: 'center' } ] @@ -136,14 +146,14 @@ export const columns0 = [ children: [ { title: '核定数', - dataIndex: '', - key: '', + dataIndex: 'nonLeaderDeptApproved', + key: 'nonLeaderDeptApproved', align: 'center' }, { - title: '核定数', - dataIndex: '', - key: '', + title: '实有数', + dataIndex: 'nonLeaderDeptActual', + key: 'nonLeaderDeptActual', align: 'center' } ] @@ -154,14 +164,14 @@ export const columns0 = [ children: [ { title: '核定数', - dataIndex: '', - key: '', + dataIndex: 'nonLeaderSectionApproved', + key: 'nonLeaderSectionApproved', align: 'center' }, { - title: '核定数', - dataIndex: '', - key: '', + title: '实有数', + dataIndex: 'nonLeaderSectionActual', + key: 'nonLeaderSectionActual', align: 'center' } ] @@ -172,14 +182,14 @@ export const columns0 = [ children: [ { title: '核定数', - dataIndex: '', - key: '', + dataIndex: 'nonLeaderTeamApproved', + key: 'nonLeaderTeamApproved', align: 'center' }, { - title: '核定数', - dataIndex: '', - key: '', + title: '实有数', + dataIndex: 'nonLeaderTeamActual', + key: 'nonLeaderTeamActual', align: 'center' } ] @@ -192,20 +202,20 @@ export const columns0 = [ children: [ { title: '管理岗位', - dataIndex: '', - key: '', + dataIndex: 'managementPosition', + key: 'managementPosition', align: 'center' }, { title: '专业技术岗位', - dataIndex: '', - key: '', + dataIndex: 'technicalPosition', + key: 'technicalPosition', align: 'center' }, { title: '工勤技能岗位', - dataIndex: '', - key: '', + dataIndex: 'workerPosition', + key: 'workerPosition', align: 'center' } ] @@ -226,7 +236,8 @@ export const columns0 = [ } ]; -export const columns1 = [ +// 领导班子名单列 +export const leaderListColumns = [ { title: '单位', dataIndex: 'unit', @@ -305,8 +316,8 @@ export const columns1 = [ } ]; -// 修改 columns2 的定义 -export const columns2 = [ +// 决策支出表列 +export const expenseColumns = [ { title: '支出类型', dataIndex: 'expenseType', @@ -379,46 +390,15 @@ export const columns2 = [ } ]; -// 添加示例数据 -export const columns2Data = [ +// 八项规定表格列 +export const eightRegColumns = [ { - expenseType: '公务接待', - year: '2020', - finalStatementAmount: '150,000.00', - initialBudgetAmount: '120,000.00', - changePercentage: '25.0%', - budgetRatio: '125.0%', - remark: '超预算25%,主要原因为接待任务增加', - dataSource: '2020年度部门决算报表', - workPaperIndex: ['《2020年度部门决算报表》', '《2020年预算执行情况分析》'] + title: '审计内容', + dataIndex: 'title', + key: 'title', + align: 'center', + width: 120 }, - { - expenseType: '出国', - year: '2020', - finalStatementAmount: '80,000.00', - initialBudgetAmount: '100,000.00', - changePercentage: '-20.0%', - budgetRatio: '80.0%', - remark: '受疫情影响,出国任务减少', - dataSource: '2020年度部门决算报表', - workPaperIndex: ['《2020年度部门决算报表》'] - } -]; - -export const columns3 = [ - { - title: '审计内容', - dataIndex: 'title', - key: 'title', - align: 'center', - width: 120, - // customCell: (_, index) => { - // // 保持原有的行合并逻辑 - // if (index === 0) return { rowSpan: 8 }; - // else if (index === 8) return { rowSpan: 30 }; - // return { rowSpan: 0 }; - // } - }, { title: '审计内容', dataIndex: 'content', @@ -438,7 +418,8 @@ export const columns3 = [ dataIndex: 'result', key: 'result', align: 'center', - width: 100 + width: 100, + customRender: createTestResultRender() }, { title: '工作底稿索引', @@ -456,315 +437,10 @@ export const columns3 = [ } ]; - - -export const columns3Data = [ - { - title: '《中共中央八项规定》', - content: - '一、中央政治局全体同志要改进调查研究,到基层调研要深入了解真实情况,总结经验、研究问题、解决困难、指导工作,向群众学习、向实践学习,多同群众座谈,多同干部谈心,多商量讨论,多解剖典型。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中共中央八项规定》', - content: - '二、 要精简会议活动,切实改进会风,严格控制以中央名义召开的各类全国性会议和举行的重大活动,不开泛泛部署工作和提要求的会,未经中央批准一律不出席各类剪彩、奠基活动和庆祝会、纪念会、表彰会、博览会、研讨会及各类论坛;提高会议实效,开短会、讲短话,力戒空话、套话。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中共中央八项规定》', - content: - '三、 要精简文件简报,切实改进文风,没有实质内容、可发可不发的文件、简报一律不发。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中共中央八项规定》', - content: - '四、要规范出访活动,从外交工作大局需要出发合理安排出访活动,严格控制出访随行人员,严格按照规定乘坐交通工具,一般不安排中资机构、华侨华人、留学生代表等到机场迎送。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中共中央八项规定》', - content: - '五、要改进警卫工作,坚持有利于联系群众的原则,减少交通管制,一般情况下不得封路、不清场闭馆。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中共中央八项规定》', - content: - '六、要改进新闻报道,中央政治局同志出席会议和活动应根据工作需要、新闻价值、社会效果决定是否报道,进一步压缩报道的数量、字数、时长。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中共中央八项规定》', - content: - '七、要严格文稿发表,除中央统一安排外,个人不公开出版著作、讲话单行本,不发贺信、贺电,不题词、题字。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中共中央八项规定》', - content: - '八、 要厉行勤俭节约,严格遵守廉洁从政有关规定,严格执行住房、车辆配备等有关工作和生活待遇的规定。', - testContent: '', - result: '', - workPaperIndex: '' - }, - - { - title: '《中央八项规定实施细则》', - content: - '1.注重实际效果。安排中央政治局委员(含中央政治局常委,下同)到基层调研要紧紧围调研主题,实事求是地安排考查内容,为领导同志深入基层、深入群众、深入实际创造条件,既要到工作开展好的地方去总结经验,更要到困难较多、情况复杂、矛盾尖锐的地方去调研解决问题。在考察点上,要使领导同志有更多的自主活动,力求准确、全面、深入了解情况,防止调研工作走形式、走过场。中央政治局常委可结合分管工作听取省(自治区、直辖市)工作汇报,一般不召开全省(自治区、直辖市)性工作汇报会和由省级几个领导班子成员参加的会议。各考察点现场要真实,不能为迎接考察装修布置,更不能弄虚作假。汇报工作时要讲真话、报实情。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '2.减少陪同人员。中央政治局常委到地方考察调研,陪同的中央和国家机关有关部门负责同志不超过5人,省(自治区、直辖市)陪同的负责同志不超过3人;其他中央政治局委员到地方考察调研时,陪同的中央和国家机关有关部门负责同志不超过2人,省(自治区、直辖市)由1位负责同志陪同,省(自治区、直辖市)主要负责同志可不陪同。中央政治局委员到地方考察调研,不搞层层多人陪同,市(地、州、盟)、县(市、区、旗)只安排1位负责同志陪同;考察企事业单位和条条管理部门时,其在异地的上级单位和主管部门的负责同志不到现场陪同。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '3.简化接待工作。中央政治局委员在地方考察调研期间,不张贴悬挂横幅标语,不安排群众迎送,不铺设迎宾地毯,不摆放花草,不组织专场文艺表演,不安排超规格套房,一般不安排接见合影,不赠送各类纪念品或土特产,不安排宴请,不上高档菜肴,自助餐也要注意节俭。除工作需要外,不安排中央政治局委员到名胜古迹、风景区参观。中央政治局常委外出考察时根据工作需要可由空军安排飞机,也可乘坐民航飞机;其他中央政治局委员外出考察乘坐民航班机,如有特殊情况需要乘坐空军飞机,须经中央办公厅报中央批准。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '4.改进警卫工作。中央政治局委员的警卫工作,要坚持有利于联系群众的原则,实行内紧外松的警卫方式,减少扰民。中央政治局委员出行时要减少交通管制,不得封路。中央政治局委员如因工作需要前往名胜古迹、风景区考察,一律不得封山、封园、封路。在公务活动现场,要合理安排警力,尽可能缩小警戒控制范围,不清场闭馆,不得停止、限制正常的生产经营活动。警卫部门要根据中央关于改进工作作风、密切联系群众的要求,进一步修改完善有关安全警卫工作的具体规定,严格按照相关规定部署组织警卫工作,不得违反规定扩大警卫范围、提高警卫规格。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '5.减少会议活动。各地区各部门要本着务实高效的原则,严格清理、切实减少各类会议活动,能不开的坚决不开,可以合并的坚决合并。各部门召开本系统全国性会议,每年不超过1次。未经中央批准,不在地方任职的中央政治局委员一律不出席各类剪彩、奠基活动和庆祝会、纪念会、表彰会、博览会、研讨会及各类论坛等,在地方任职的中央政治局委员出席上述活动也要从严掌握。要严格会议活动审批程序,以党中央、国务院名义召开的全国性会议和举行的重大活动,由中央办公厅、国务院办公厅统筹安排。中央各议事协调机构及其办公室、中央和国家机关各部门召开的全国性会议和举行的重要活动,须经中央办公厅、国务院办公厅审核后报批,涉外会议和重要活动还须送中央外办、外交部审核。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '6.控制会议活动规模和时间。严格控制各类会议活动规模,减少参加人员。各部门召开的全国性会议,只安排与会议内容密切相关的部门参加,人数不超过300人,时间不超过2天,不请各省(自治区、直辖市)党委和政府主要负责同志、分管负责同志出席。中央政治局常委不出席各部门召开的工作会议。要坚持开短会、讲短话,力戒空话、套话。各类会议活动不安排中央政治局委员接见会议代表并合影。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '7.提高会议活动效率和质量。各地区各部门要充分运用现代信息技术手段改进会议形式,提高会议效率。全国性会议可视情采用电视电话会议形式召开,在不涉密且技术条件允许的情况下,有的会议可直接开到基层。电视电话会议的主会场和分会场都要控制规模、简化形式,不请外地同志到主会场参会,各地分会场布置要因地制宜、精简节约。需要安排讨论的会议,要精心设置议题,充分安排讨论时间,提高讨论深度。中央政治局委员会见外宾的形式、地点可灵活安排,注重实效。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '8.严格控制会议活动经费。各地区各部门举办会议活动,要严格执行有关规定,厉行节约,反对铺张浪费。严禁提高会议用餐、住宿标准,严禁组织高消费娱乐、健身活动。会议活动现场布置要简朴,工作会议一律不摆花草、不制作背景板。严禁以任何名义发放纪念品。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '9.减少各类文件简报。凡国家法律法规和党内法规已作出明确规定的,一律不再制发文件。没有实质内容、可发可不发的文件简报,一律不发。由部门发文或部门联合发文能够解决的,不再由中共中央、国务院(含中央办公厅、国务院办公厅)转发或印发。未经党中央、国务院批准,中央和国家机关各部门、各议事协调机构不得向地方党委和政府发布指示性公文,不得要求地方党委和政府报文。各地区各部门要严格按程序报文,不得多头报文。各部门报送党中央、国务院的简报原则上只保留1种。各部门内设机构和下属单位的简报,一律不报送党中央、国务院。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '10.提高文件简报的质量和时效。各地区各部门应严格按照中央办公厅、国务院办公厅的有关要求,对文件和简报资料的报送程序和格式进行规范,加强综合协调和审核把关,切实提高运转效率。文件要突出思想性、针对性和可操作性,严格控制篇幅;简报要重点反映重要动态、经验、问题和工作建议等内容,减少一般性工作情况汇报。各地区各部门要加快推进机关信息化建设,积极推广电子公文和二维条码应用,逐步实现文件和简报资料网络传输和网上办理,减少纸质文件和简报资料,降低运行成本,提高工作效率。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '11.合理安排出访。围绕外交工作需要合理制定年度出访总体方案,中央政治局委员每人每年出访不超过1次,时间不超过10天。中央政治局常委每次出访不超过4个国家(包括经停国家),其他中央政治局委员每次出访不超过3个国家(包括经停国家)。中央政治局常委同一期出访安排不超过2人;中共中央总书记、国务院总理根据工作需要安排出访,原则上不安排同期出访。出席全球性或地区性会议、双边和多边机制活动、外国执政党重要会议以及特殊情况需要出访的,另行报批。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '12.控制随行人员。严格根据工作需要安排陪同人员和工作人员,中共中央总书记、国务院总理出访,陪同人员(不含领导同志配偶和我驻往访国大使夫妇,下同)不超过6人,工作人员总数原则上不超过50人,其他中央政治局常委出访,陪同人员不超过5人,工作人员不超过40人;其他中央政治局委员出访,陪同人员不超过4人,工作人员不超过16人。出席全球性或地区性会议、双边机制性会晤活动,陪同人员根据实际需要经中央外办或外交部报中央批准。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '13.规范乘机安排。严格按照规定乘坐交通工具,中共中央总书记、国务院总理出访乘坐专机,其他中央政治局常委出访根据工作需要可乘坐民航包机或班机,如需乘坐民航包机,须经中央外办报中央批准;其他中央政治局委员出访乘坐民航班机,一律不乘坐民航包机。中央政治局委员一律不乘坐私人包机、企业包机和外国航空公司包机。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '14.简化机场迎送和接待工作。中央政治局常委出访抵离京时,可安排出访主办部门、中国民航局各1位负责同志到机场迎送,其他部门不安排负责同志前往迎送;其他中央政治局委员出访抵离京时,不安排有关部门负责同志前往机场迎送。中央政治局委员出访,各有关驻外使领馆不安排中资机构、华侨华人和留学生代表到机场迎送。驻外使领馆和其他驻外机构一律不得向代表团赠送礼品,外方所赠礼品应严格按国家有关规定处理。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '15.加强统筹协调。中央政治局委员出访,由中央外办商有关部门统筹安排,年度出访计划每年1月底前报中央批准,当年年中进行1次综合协调。年度出访计划和年中协调安排经中央批准后,有关单位原则上不再临时安排中央政治局委员出访。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '16.简化中央政治局委员出席会议活动新闻报道。要根据工作需要、新闻价值、社会效果决定是否报道。出席一般性会议和活动不作报道。要按照精简务实、注重效果的原则,进一步压缩数量、字数和时长,有的可刊播简短消息,有的只报标题新闻。中央政治局委员新闻报道中的职务称谓根据会议活动主题内容确定,不必报道担任的全部职务。要遵循新闻传播规律,进一步优化中央政治局委员会议活动报道内容和结构,调整播发顺序,除涉及重大会议活动和重大事件外,一般可安排在报刊、电视的头条新闻之后,以突出民生和社会新闻,增强传播效果。除具有全局意义和重大影响的会议活动外,一般情况下不安排广播电视直播。除中共中央总书记外,其他中央政治局委员出席会议活动,中央电视台报道时不出同期声。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '17.精简全国性会议活动新闻报道。经中央批准举办的全国性会议活动,除中共中央总书记外,中央政治局常委出席的,文字稿不超过1000字,中央电视台新闻联播播出时间不超过2分钟;其他中央政治局委员出席的,文字稿不超过500字,中央电视台新闻联播不作报道,晚间新闻播出时间不超过1分钟,未经中央批准的不作报道。中央各类议事协调机构及其办公室召开的会议,原则上不作报道;特殊情况需作报道的,须报中央批准,字数和时长参照上述标准执行。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '18.规范中央政治局委员考察调研活动新闻报道。考察调研活动新闻报道要多反映群众关心的实质性内容,更好贴近实际、贴近生活、贴近群众。除中共中央总书记外,中央政治局常委考察调研时,随行中央媒体记者一般不超过5人,其中包括2名摄像记者、1名编辑、1名摄影记者和1名文字记者,地方媒体一般不派记者参加;中央媒体报道中央政治局常委考察调研活动,新华社发文字信息通稿不超过1000字,中央电视台新闻联播播出时间不超过3分钟,不刊发侧记、特写、综述等。其他中央政治局委员的考察调研活动如需公开报道,新华社发文字消息通稿不超过800字,可安排在中央电视台晚间新闻播出,时间不超过1分钟。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '19.简化治丧活动新闻报道。担任“四副两高”以上领导职务的领导同志逝世后,中央政治局委员出席遗体送别活动的,新华社消息稿中只列名报道中央政治局常委和曾担任中共中央总书记、国家主席、中央军委主席职务的同志名单,其他中央政治局委员不再列名。中共中央总书记出席可配发慰问亲属的照片,其他中央政治局委员一般不配发照片。中央电视台新闻联播可播出中央政治局常委和曾担任中共中央总书记、国家主席、中央军委主席职务的同志送别画面,不再播出其他中央政治局委员画面。省部级领导干部及社会知名人士逝世后,中央政治局委员出席遗体送别活动或以其他方式表示哀悼、慰问的,中央电视台不报道,新华社消息稿中不列名报道中央政治局委员名单。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '20.简化诞辰纪念活动新闻报道。曾任中央政治局常委职务的已故党和国家领导人的诞辰纪念活动,中央政治局常委出席并讲话的,文字稿不超过1000字,中央电视台新闻联播播出时间不超过2分钟,讲话全文另发,人民日报摘发座谈会发言;中共中央总书记出席的纪念活动,可适当放宽有关标准。曾任其他领导职务的已故党和国家领导人的诞辰纪念活动,中央政治局常委出席,中央有关领导同志出席并讲话的,文字稿不超过300字,中央电视台新闻联播播出时间不超过1分钟,讲话全文另发,人民日报不摘发座谈会发言。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '21.优化中央政治局委员外事活动新闻报道。提高外事报道针对性,增加信息量,减少一般性报道。中央政治局委员同日会见多批外宾或多位中央政治局委员同日分别会见同一批外宾,人民日报、中央电视台新闻联播、晚间新闻发一条综合消息,不单独报道每场会见。除中共中央总书记、国务院总理外,中央政治局委员出访,人民日报、中央电视台新闻联播每个国家综合报道1次,新闻消息稿不超过1200字,电视新闻时间不超过3分钟。除中共中央总书记外,其他中央政治局委员不发侧记、特写、综述等其他形式报道;其他中央政治局委员出访期间会见外国元首、政府首脑等活动可作报道,新闻消息稿不超过500字,不配发照片,可安排在中央电视台晚间新闻中播出,时间不超过1分钟,出访的其他活动一般不作报道。出访活动新闻报道的报纸截稿时间为凌晨1时,新闻联播截稿时间为19时20分,此后主要政治局委员的外事活动,可在次日安排报道。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '22.规范重大专项工作新闻报道。中央政治局委员受中央委托到地方指导特大抢险救灾、处理重大安全事故、处理重大突发事件等重大专项工作,在应急阶段,文字稿不超过1000字,中央电视台新闻联播节目播出时间不超过2分钟;上述专项工作转入常态后,中央电视台新闻联播节目一般只综合报道工作进展情况,不单独报道中央政治局委员参加活动或讲话,改由晚间新闻节目报道,文字稿不超过500字,晚间新闻播出时间不超过1分钟。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '23.规范其他新闻报道。经中央批准,中央政治局常委和从中央政治局常委职务上退下来的同志出版著作等作品,由新华社播发简短出版消息,字数不超过200字,中央电视台不作报道。除经中央批准的重大展览和文艺演出活动外,中央政治局委员参观展览、观看一般性文艺演出以及出席其他文艺活动,一律不作报道。中央政治局委员给部门、地方的指示、批示等一般不作报道。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '24.加强新闻报道统筹协调。探索运用网络等新手段加强中央主要领导同志与群众的直接联系。充分发挥中央职能部门的作用,中央政治局委员的新闻报道工作由中央宣传部负责统筹协调和日常管理,并督促指导中央新闻媒体落实有关规定。涉及中央重大会议活动的新闻报道工作,中央宣传部商中央办公厅统筹安排。领导同志处不直接向新闻单位就报道字数、时长、版面、画面等提出要求,有关要求可按中央规定,由中央宣传部向新闻单位提出或由新闻单位根据实际情况自行确定。从中央政治局常委职务上退下来、仍担任国家机构主要负责人的领导同志,新闻报道工作仍按原标准执行;如有特殊情况,由中央宣传部研究解决。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '25.改进工作作风、密切联系群众,关系党的形象,关系党和人民事业成败。各级党政机关和领导干部要坚持以人为本、执政为民,带头改进工作作风,带头深入基层调查研究,带头密切联系群众,带头解决实际问题。各地区各部门要严格按照本细则,结合实际情况,制定涵盖各级领导干部的更加具体、更便于操作的贯彻落实办法,狠抓落实,确保抓出成效。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '26.各地区各部门要严格执行本细则,每年年底对执行情况进行1次专项检查,并将检查结果分别报送中央办公厅、国务院办公厅。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '27. 中央办公厅、国务院办公厅要定期督促检查,每年底通报执行情况,并向中央政治局常委会会议、中央政治局会议汇报执行情况,对违反规定的要建议有关部门进行处理。各级纪检监察机关要把监督执行本细则作为改进党风政风的一项经常性工作来抓。审计部门每年要对各地区各部门会议活动等经费的使用情况进行审查。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '28.人大、政协、军队、人民团体机关参照本细则执行。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '29.本细则由中央办公厅、国务院办公厅负责解释。', - testContent: '', - result: '', - workPaperIndex: '' - }, - { - title: '《中央八项规定实施细则》', - content: - '30.本细则自发布之日起施行。此前发布的有关规定,凡与本细则不一致的,以本细则为准。', - testContent: '', - result: '', - workPaperIndex: '' - }, -]; - - -export default { columns0, columns1, columns2, columns3, columns3Data } +export default { + default1Columns, + leaderListColumns, + expenseColumns, + eightRegColumns, + createTestResultRender +}; \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/data/table2Columns.ts b/src/views/pwl/pwlProject/components/data/table2Columns.ts new file mode 100644 index 0000000..24db03e --- /dev/null +++ b/src/views/pwl/pwlProject/components/data/table2Columns.ts @@ -0,0 +1,62 @@ +// 创建测试结果渲染函数 +export function createTestResultRender() { + return ({ text }) => { + if (text === '通过') return '通过'; + if (text === '不通过') return '不通过'; + return text || '待检查'; + }; +} + +// 审计内容2表格列 +export const strategyAuditColumns = [ + { + title: '序号', + dataIndex: 'index', + key: 'index', + width: 60, + align: 'center' + }, + { + title: '审计内容', + dataIndex: 'auditContent', + key: 'auditContent', + width: 150, + align: 'center', + // ellipsis: true + }, + { + title: '检查的证据及测试内容', + dataIndex: 'checkEvidence', + key: 'checkEvidence', + width: 350, + align: 'center', + // ellipsis: true + }, + { + title: '测试结果', + dataIndex: 'testResult', + key: 'testResult', + width: 100, + align: 'center', + customRender: createTestResultRender() + }, + { + title: '工作底稿索引', + dataIndex: 'workPaperIndex', + key: 'workPaperIndex', + width: 120, + align: 'center', + // ellipsis: true + }, + { + title: '操作', + key: 'action', + width: 100, + align: 'center' + } +]; + +export default { + strategyAuditColumns, + createTestResultRender +}; \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/data/table3Columns.ts b/src/views/pwl/pwlProject/components/data/table3Columns.ts index edeb6da..989e54a 100644 --- a/src/views/pwl/pwlProject/components/data/table3Columns.ts +++ b/src/views/pwl/pwlProject/components/data/table3Columns.ts @@ -1,4 +1,7 @@ -export const columns0 = [ +import { createTestResultRender } from './table2Columns'; + +// 三重一大表格列 +export const tripleOneColumns = [ { title: '', dataIndex: 'category', @@ -35,12 +38,7 @@ export const columns0 = [ dataIndex: 'testResult', key: 'testResult', align: 'center', - customRender: ({ text }) => { - if (text === '通过') return '通过'; - if (text === '不通过') - return '不通过'; - return text; - } + customRender: createTestResultRender() }, { title: '工作底稿索引', @@ -58,7 +56,8 @@ export const columns0 = [ } ]; -export const columns1 = [ +// 重大经济决策表格列 +export const decisionTableColumns = [ { title: '序号', dataIndex: 'index', @@ -68,8 +67,8 @@ export const columns1 = [ }, { title: '重大经济决策事项', - dataIndex: 'name', - key: 'name', + dataIndex: 'decisionItem', + key: 'decisionItem', width: 200, align: 'center' }, @@ -134,4 +133,7 @@ export const columns1 = [ } ]; -export default { columns0, columns1 }; +export default { + tripleOneColumns, + decisionTableColumns +}; \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/data/table4Columns.ts b/src/views/pwl/pwlProject/components/data/table4Columns.ts index 54fd8b5..4143656 100644 --- a/src/views/pwl/pwlProject/components/data/table4Columns.ts +++ b/src/views/pwl/pwlProject/components/data/table4Columns.ts @@ -1,16 +1,17 @@ export const columns0 = [ { title: '序号', - dataIndex: '', - key: '', - width: 120, + dataIndex: 'index', + key: 'index', + width: 80, align: 'center' }, { title: '年度', - dataIndex: '', - key: '', - align: 'center' + dataIndex: 'year', + key: 'year', + align: 'center', + width: 120 }, { title: '上级主管部门下达目标责任制', @@ -18,21 +19,24 @@ export const columns0 = [ children: [ { title: '下达文件', - dataIndex: '', - key: '', - align: 'center' + dataIndex: 'superiorFile', + key: 'superiorFile', + align: 'center', + width: 200 }, { title: '完成情况', - dataIndex: '', - key: '', - align: 'center' + dataIndex: 'superiorCompletion', + key: 'superiorCompletion', + align: 'center', + width: 120 }, { title: '未完成原因', - dataIndex: '', - key: '', - align: 'center' + dataIndex: 'superiorReason', + key: 'superiorReason', + align: 'center', + width: 200 }, ] }, @@ -42,44 +46,42 @@ export const columns0 = [ children: [ { title: '计划文件', - dataIndex: '', - key: '', - align: 'center' + dataIndex: 'selfPlan', + key: 'selfPlan', + align: 'center', + width: 200 }, { title: '完成情况', - dataIndex: '', - key: '', - align: 'center' + dataIndex: 'selfCompletion', + key: 'selfCompletion', + align: 'center', + width: 120 }, { title: '未完成原因', - dataIndex: '', - key: '', - align: 'center' + dataIndex: 'selfReason', + key: 'selfReason', + align: 'center', + width: 200 }, ] }, { title: '备注', - dataIndex: '', - key: '', - align: 'center' + dataIndex: 'remark', + key: 'remark', + align: 'center', + width: 200 }, { title: '工作底稿索引', dataIndex: 'workPaperIndex', key: 'workPaperIndex', align: 'center', - width: 140, + width: 180, ellipsis: true - }, - { - title: '操作', - key: 'action', - align: 'center', - width: 100 } ]; -export default { columns0 }; +export default { columns0 }; \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/data/table5Columns.ts b/src/views/pwl/pwlProject/components/data/table5Columns.ts new file mode 100644 index 0000000..6a0aa5d --- /dev/null +++ b/src/views/pwl/pwlProject/components/data/table5Columns.ts @@ -0,0 +1,178 @@ +export const budgetManageColumns = [ + { + title: '预算科目名称', + dataIndex: 'budgetSubject', + key: 'budgetSubject', + align: 'center', + width: 150 + }, + { + title: '指标来源', + dataIndex: 'indicatorSource', + key: 'indicatorSource', + align: 'center', + width: 120 + }, + { + title: '合计', + dataIndex: 'total', + key: 'total', + align: 'center', + width: 100 + }, + { + title: '上年结余', + dataIndex: 'lastYearBalance', + key: 'lastYearBalance', + align: 'center', + width: 100 + }, + { + title: '年初部门预算', + dataIndex: 'initialBudget', + key: 'initialBudget', + align: 'center', + width: 120 + }, + { + title: '追加(减)预算', + dataIndex: 'additionalBudget', + key: 'additionalBudget', + align: 'center', + width: 120 + }, + { + title: '指标运用', + align: 'center', + children: [ + { + title: '合计', + dataIndex: 'indicatorUseTotal', + key: 'indicatorUseTotal', + align: 'center', + width: 80 + }, + { + title: '拨款小计', + dataIndex: 'appropriationSubtotal', + key: 'appropriationSubtotal', + align: 'center', + width: 100 + }, + { + title: '拨款', + dataIndex: 'appropriation', + key: 'appropriation', + align: 'center', + width: 80 + }, + { + title: '工资统发', + dataIndex: 'salaryPayment', + key: 'salaryPayment', + align: 'center', + width: 100 + }, + { + title: '政府采购', + dataIndex: 'govProcurement', + key: 'govProcurement', + align: 'center', + width: 100 + } + ] + }, + { + title: '指标结余', + dataIndex: 'indicatorBalance', + key: 'indicatorBalance', + align: 'center', + width: 100 + }, + { + title: '工作底稿索引', + dataIndex: 'workPaperIndex', + key: 'workPaperIndex', + align: 'center', + width: 140, + ellipsis: true + }, + { + title: '操作', + key: 'action', + align: 'center', + width: 100 + } +]; + +// 预算执行情况列 +export const budgetExecutionColumns = [ + { + title: '项目', + dataIndex: 'project', + key: 'project', + align: 'center', + width: 150 + }, + { + title: '上年结转', + dataIndex: 'lastYearCarryOver', + key: 'lastYearCarryOver', + align: 'center', + width: 100 + }, + { + title: '本年预算小计', + dataIndex: 'currentYearBudgetTotal', + key: 'currentYearBudgetTotal', + align: 'center', + width: 120 + }, + { + title: '年初批复预算数', + dataIndex: 'initialApprovedBudget', + key: 'initialApprovedBudget', + align: 'center', + width: 120 + }, + { + title: '追加预算数', + dataIndex: 'additionalBudgetAmount', + key: 'additionalBudgetAmount', + align: 'center', + width: 100 + }, + { + title: '实际拨款数', + dataIndex: 'actualAppropriation', + key: 'actualAppropriation', + align: 'center', + width: 120 + }, + { + title: '指标结余', + dataIndex: 'indicatorBalance', + key: 'indicatorBalance', + align: 'center', + width: 100 + }, + { + title: '工作底稿索引', + dataIndex: 'workPaperIndex', + key: 'workPaperIndex', + align: 'center', + width: 140, + ellipsis: true + }, + { + title: '操作', + key: 'action', + align: 'center', + width: 100 + } +]; + +export default { + budgetManageColumns, + budgetExecutionColumns +}; \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/data/table6Columns.ts b/src/views/pwl/pwlProject/components/data/table6Columns.ts new file mode 100644 index 0000000..582907c --- /dev/null +++ b/src/views/pwl/pwlProject/components/data/table6Columns.ts @@ -0,0 +1,119 @@ +// 国有资产管理表格列 +export const stateAssetsManageColumns = [ + { + title: '序号', + dataIndex: 'index', + key: 'index', + width: 80, + align: 'center' + }, + { + title: '国有资产名称', + dataIndex: 'assetName', + key: 'assetName', + align: 'center', + width: 150 + }, + { + title: '国有资产取得方式', + dataIndex: 'acquisitionMethod', + key: 'acquisitionMethod', + align: 'center', + width: 120 + }, + { + title: '国有资产价值', + dataIndex: 'assetValue', + key: 'assetValue', + align: 'center', + width: 120 + }, + { + title: '国有资产地址', + dataIndex: 'assetAddress', + key: 'assetAddress', + align: 'center', + width: 150 + }, + { + title: '面积', + dataIndex: 'area', + key: 'area', + align: 'center', + width: 80 + }, + { + title: '承租方', + dataIndex: 'tenant', + key: 'tenant', + align: 'center', + width: 120 + }, + { + title: '合同金额', + dataIndex: 'contractAmount', + key: 'contractAmount', + align: 'center', + width: 120 + }, + { + title: '租赁合同起止时间', + dataIndex: 'leasePeriod', + key: 'leasePeriod', + align: 'center', + width: 180 + }, + { + title: '国有资产租金缴纳时间', + dataIndex: 'rentPaymentTime', + key: 'rentPaymentTime', + align: 'center', + width: 150 + }, + { + title: '国有资产出租是否上平台', + dataIndex: 'platformLease', + key: 'platformLease', + align: 'center', + width: 120 + }, + { + title: '国有资产出租的审批文件', + dataIndex: 'approvalDoc', + key: 'approvalDoc', + align: 'center', + width: 180 + }, + { + title: '是否纳入预算', + dataIndex: 'inBudget', + key: 'inBudget', + align: 'center', + width: 100 + }, + { + title: '备注', + dataIndex: 'remark', + key: 'remark', + align: 'center', + width: 150 + }, + { + title: '工作底稿索引', + dataIndex: 'workPaperIndex', + key: 'workPaperIndex', + align: 'center', + width: 140, + ellipsis: true + }, + { + title: '操作', + key: 'action', + align: 'center', + width: 100 + } +]; + +export default { + stateAssetsManageColumns +}; \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/data/table7Columns.ts b/src/views/pwl/pwlProject/components/data/table7Columns.ts new file mode 100644 index 0000000..5ed5a3e --- /dev/null +++ b/src/views/pwl/pwlProject/components/data/table7Columns.ts @@ -0,0 +1,90 @@ +import { createTestResultRender } from './table2Columns'; + +// 重大对外投资审计表格列 +export const majorInvestmentColumns = [ + { + title: '审计内容', + dataIndex: 'auditContent', + key: 'auditContent', + align: 'left', + width: 300, + ellipsis: true + }, + { + title: '检查的证据及测试内容', + dataIndex: 'checkEvidence', + key: 'checkEvidence', + align: 'left', + width: 400, + ellipsis: true + }, + { + title: '测试结果', + dataIndex: 'testResult', + key: 'testResult', + align: 'center', + width: 100, + customRender: createTestResultRender() + }, + { + title: '工作底稿索引', + dataIndex: 'workPaperIndex', + key: 'workPaperIndex', + align: 'center', + width: 140, + ellipsis: true + }, + { + title: '操作', + key: 'action', + align: 'center', + width: 100 + } +]; + +// 重大工程建设审计表格列 +export const majorProjectConstructionColumns = [ + { + title: '审计内容', + dataIndex: 'auditContent', + key: 'auditContent', + align: 'left', + width: 250, + ellipsis: true + }, + { + title: '检查的证据及测试内容', + dataIndex: 'checkEvidence', + key: 'checkEvidence', + align: 'left', + width: 350, + ellipsis: true + }, + { + title: '测试结果', + dataIndex: 'testResult', + key: 'testResult', + align: 'center', + width: 100, + customRender: createTestResultRender() + }, + { + title: '工作底稿索引', + dataIndex: 'workPaperIndex', + key: 'workPaperIndex', + align: 'center', + width: 140, + ellipsis: true + }, + { + title: '操作', + key: 'action', + align: 'center', + width: 100 + } +]; + +export default { + majorInvestmentColumns, + majorProjectConstructionColumns +}; \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/data/table8Columns.ts b/src/views/pwl/pwlProject/components/data/table8Columns.ts new file mode 100644 index 0000000..56d4074 --- /dev/null +++ b/src/views/pwl/pwlProject/components/data/table8Columns.ts @@ -0,0 +1,75 @@ +import { createTestResultRender } from './table2Columns'; + +// 内部控制测试表格列 +export const internalControlTestColumns = [ + { + title: '序号', + dataIndex: 'index', + key: 'index', + width: 80, + align: 'center' + }, + { + title: '控制环节', + dataIndex: 'controlLink', + key: 'controlLink', + align: 'center', + width: 150 + }, + { + title: '控制要求', + dataIndex: 'controlRequirement', + key: 'controlRequirement', + align: 'center', + width: 200 + }, + { + title: '控制活动描述', + dataIndex: 'controlActivity', + key: 'controlActivity', + align: 'left', + width: 300, + ellipsis: true + }, + { + title: '控制职责岗位', + dataIndex: 'controlPosition', + key: 'controlPosition', + align: 'center', + width: 150 + }, + { + title: '测试步骤', + dataIndex: 'testSteps', + key: 'testSteps', + align: 'left', + width: 250, + ellipsis: true + }, + { + title: '测试结果', + dataIndex: 'testResult', + key: 'testResult', + align: 'center', + width: 100, + customRender: createTestResultRender() + }, + { + title: '工作底稿索引', + dataIndex: 'workPaperIndex', + key: 'workPaperIndex', + align: 'center', + width: 140, + ellipsis: true + }, + { + title: '操作', + key: 'action', + align: 'center', + width: 100 + } +]; + +export default { + internalControlTestColumns +}; \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/data/table9Columns.ts b/src/views/pwl/pwlProject/components/data/table9Columns.ts new file mode 100644 index 0000000..6326565 --- /dev/null +++ b/src/views/pwl/pwlProject/components/data/table9Columns.ts @@ -0,0 +1,91 @@ +// 人员编制管理表格列 +export const personnelEstablishmentColumns = [ + { + title: '序号', + dataIndex: 'index', + key: 'index', + width: 80, + align: 'center' + }, + { + title: '部门/单位', + dataIndex: 'department', + key: 'department', + align: 'center', + width: 150 + }, + { + title: '编制人数', + dataIndex: 'establishmentNum', + key: 'establishmentNum', + align: 'center', + width: 100 + }, + { + title: '实有人数', + dataIndex: 'actualNum', + key: 'actualNum', + align: 'center', + width: 100 + }, + { + title: '借用人员数', + dataIndex: 'borrowedNum', + key: 'borrowedNum', + align: 'center', + width: 100 + }, + { + title: '编外用工数', + dataIndex: 'externalNum', + key: 'externalNum', + align: 'center', + width: 100 + }, + { + title: '人员经费预算(元)', + dataIndex: 'personnelBudget', + key: 'personnelBudget', + align: 'center', + width: 150 + }, + { + title: '人员经费实际支出(元)', + dataIndex: 'personnelActual', + key: 'personnelActual', + align: 'center', + width: 150 + }, + { + title: '超支/结余(元)', + dataIndex: 'balance', + key: 'balance', + align: 'center', + width: 120 + }, + { + title: '备注', + dataIndex: 'remark', + key: 'remark', + align: 'center', + width: 200 + }, + { + title: '工作底稿索引', + dataIndex: 'workPaperIndex', + key: 'workPaperIndex', + align: 'center', + width: 140, + ellipsis: true + }, + { + title: '操作', + key: 'action', + align: 'center', + width: 100 + } +]; + +export default { + personnelEstablishmentColumns +}; \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/data/tableCommon.ts b/src/views/pwl/pwlProject/components/data/tableCommon.ts new file mode 100644 index 0000000..fee02ea --- /dev/null +++ b/src/views/pwl/pwlProject/components/data/tableCommon.ts @@ -0,0 +1,247 @@ +// 表格配置管理器 +export const tableConfigs = { + // 审计内容1表格配置 + auditContent1: { + type: 'auditContent1', + title: '贯彻决策部署情况', + options: [ + { title: '贯彻决策部署', value: 'default1', columns: () => import('./table1Columns').then(m => m.default1Columns) }, + { title: '领导班子名单', value: 'leaderList', columns: () => import('./table1Columns').then(m => m.leaderListColumns) }, + { title: '决策支出表', value: 'expense', columns: () => import('./table1Columns').then(m => m.expenseColumns) }, + { title: '八项规定', value: 'eightReg', columns: () => import('./table1Columns').then(m => m.eightRegColumns) } + ], + // 接口映射 + interfaceMap: { + default1: '/api/ai/auditContent1/generateDefault1Table', + leaderList: '/api/ai/auditContent1/generateLeaderListTable', + expense: '/api/ai/auditContent1/generateExpenseTable', + eightReg: '/api/ai/auditContent1/generateEightRegTable' + } + }, + // 审计内容2表格配置 + auditContent2: { + type: 'auditContent2', + title: '单位发展战略执行', + options: [ + { title: '单位发展战略执行', value: 'strategyAudit', columns: () => import('./table2Columns').then(m => m.strategyAuditColumns) } + ], + interfaceMap: { + strategyAudit: '/api/ai/auditContent2/generateStrategyAuditTable' + } + }, + // 审计内容3表格配置 + auditContent3: { + type: 'auditContent3', + title: '重大经济决策调查', + options: [ + { title: '重大经济决策调查表', value: 'decisionTable', columns: () => import('./table3Columns').then(m => m.decisionTableColumns) }, + { title: '三重一大', value: 'tripleOne', columns: () => import('./table3Columns').then(m => m.tripleOneColumns) } + ], + interfaceMap: { + tripleOne: '/api/ai/auditContent3/generateTripleOneTable', + decisionTable: '/api/ai/auditContent3/generateDecisionTable' + } + }, + // 其他审计内容表格配置... + auditContent4: { + type: 'auditContent4', + title: '目标完成情况', + options: [ + { title: '目标责任完成情况表', value: 'target', columns: () => import('./table4Columns').then(m => m.columns0) } + ], + interfaceMap: { + target: '/api/ai/auditContent4/generateTargetTable' + } + }, + auditContent5: { + type: 'auditContent5', + title: '财务管理情况', + options: [ + { title: '预算管理审计', value: 'budgetManage', columns: () => import('./table5Columns').then(m => m.budgetManageColumns) }, + { title: '预算执行情况审计', value: 'budgetExecution', columns: () => import('./table5Columns').then(m => m.budgetExecutionColumns) } + ], + interfaceMap: { + budgetManage: '/api/ai/auditContent5/generateBudgetManageTable', + budgetExecution: '/api/ai/auditContent5/generateBudgetExecutionTable' + } + }, + auditContent6: { + type: 'auditContent6', + title: '国资管理情况', + options: [ + { title: '国有资产管理审计', value: 'assets', columns: () => import('./table6Columns').then(m => m.stateAssetsManageColumns) } + ], + interfaceMap: { + assets: '/api/ai/auditContent6/generateAssetsTable' + } + }, + auditContent7: { + type: 'auditContent7', + title: '重大投资情况', + options: [ + { title: '重大对外投资审计', value: 'investment', columns: () => import('./table7Columns').then(m => m.majorInvestmentColumns) }, + { title: '重大工程建设审计', value: 'projectConstruction', columns: () => import('./table7Columns').then(m => m.majorProjectConstructionColumns) } + ], + interfaceMap: { + investment: '/api/ai/auditContent7/generateInvestmentTable', + projectConstruction: '/api/ai/auditContent7/generateProjectConstructionTable' + } + }, + auditContent8: { + type: 'auditContent8', + title: '治理结构与内部控制', + options: [ + { title: '内部控制测试', value: 'internalControl', columns: () => import('./table8Columns').then(m => m.internalControlTestColumns) } + ], + interfaceMap: { + internalControl: '/api/ai/auditContent8/generateInternalControlTable' + } + }, + auditContent9: { + type: 'auditContent9', + title: '人员编制管理', + options: [ + { title: '人员编制管理审计', value: 'personnel', columns: () => import('./table9Columns').then(m => m.personnelEstablishmentColumns) } + ], + interfaceMap: { + personnel: '/api/ai/auditContent9/generatePersonnelTable' + } + }, + auditContent10: { + type: 'auditContent10', + title: '廉政情况', + options: [ + { title: '党风廉政建设责任制审计', value: 'partyConduct', columns: () => import('./table10Columns').then(m => m.partyConductColumns) } + ], + interfaceMap: { + partyConduct: '/api/ai/auditContent10/generatePartyConductTable' + } + }, + auditContent11: { + type: 'auditContent11', + title: '历史审计问题整改', + options: [ + { title: '历史审计问题整改', value: 'history', columns: () => import('./table11Columns').then(m => m.auditHistoryColumns) } + ], + interfaceMap: { + history: '/api/ai/auditContent11/generateHistoryTable' + } + } +}; + +// 获取表格配置 +export function getTableConfig(sectionIndex: number) { + const configKeys = Object.keys(tableConfigs); + if (sectionIndex >= 0 && sectionIndex < configKeys.length) { + return tableConfigs[configKeys[sectionIndex]]; + } + return null; +} + +// 获取所有表格配置 +export function getAllTableConfigs() { + return tableConfigs; +} + +// 通过接口名称查找表格配置 +export function findTableConfigByInterface(interfaceName: string) { + for (const [key, config] of Object.entries(tableConfigs)) { + for (const [tableValue, tableInterface] of Object.entries(config.interfaceMap || {})) { + if (tableInterface === interfaceName) { + return { + sectionType: key, + tableValue, + config + }; + } + } + } + return null; +} + +// 通用数据映射函数 +export function createDataMapper(type: string) { + const mappers = { + default1: (data) => data.map((item, index) => ({ key: index, index: index + 1, ...item })), + leaderList: (data) => data.map((item, index) => ({ key: index, ...item })), + expense: (data) => data.map((item, index) => ({ + key: index, + ...item, + finalStatementAmount: formatAmount(item.finalStatementAmount), + initialBudgetAmount: formatAmount(item.initialBudgetAmount) + })), + eightReg: (data) => data.map((item, index) => ({ key: index, ...item })), + strategyAudit: (data) => data.map((item, index) => ({ + key: index, + index: index + 1, + ...item + })), + tripleOne: (data) => data.map((item, index) => ({ key: index, ...item })), + decisionTable: (data) => data.map((item, index) => ({ + key: index, + index: index + 1, + goods: item.executionEffect?.good || item.goods || '否', + normal: item.executionEffect?.normal || item.normal || '否', + bad: item.executionEffect?.bad || item.bad || '否', + ...item + })), + // 其他类型的映射... + default: (data) => data.map((item, index) => ({ key: index, index: index + 1, ...item })) + }; + + return mappers[type] || mappers.default; +} + +// 格式化金额 +function formatAmount(amount) { + if (!amount) return '0.00'; + if (typeof amount === 'string' && amount.includes(',')) return amount; + const num = parseFloat(amount); + return isNaN(num) ? '0.00' : num.toLocaleString('zh-CN', { + minimumFractionDigits: 2, + maximumFractionDigits: 2 + }); +} + +// 生成接口映射 +export const apiMethodMap = { + // 审计内容1 + default1: { generate: 'generateDefault1Table', export: 'exportDefault1Table' }, + leaderList: { generate: 'generateLeaderListTable', export: 'exportLeaderListTable' }, + expense: { generate: 'generateExpenseTable', export: 'exportExpenseTable' }, + eightReg: { generate: 'generateEightRegTable', export: 'exportEightRegTable' }, + // 审计内容2 + strategyAudit: { generate: 'generateStrategyAuditTable', export: 'exportStrategyAuditTable' }, + // 审计内容3 + tripleOne: { generate: 'generateTripleOneTable', export: 'exportTripleOneTable' }, + decisionTable: { generate: 'generateDecisionTable', export: 'exportDecisionTable' }, + // 审计内容4 + target: { generate: 'generateTargetTable', export: 'exportTargetTable' }, + // 审计内容5 + budgetManage: { generate: 'generateBudgetManageTable', export: 'exportBudgetManageTable' }, + budgetExecution: { generate: 'generateBudgetExecutionTable', export: 'exportBudgetExecutionTable' }, + // 审计内容6 + assets: { generate: 'generateAssetsTable', export: 'exportAssetsTable' }, + // 审计内容7 + investment: { generate: 'generateInvestmentTable', export: 'exportInvestmentTable' }, + projectConstruction: { generate: 'generateProjectConstructionTable', export: 'exportProjectConstructionTable' }, + // 审计内容8 + internalControl: { generate: 'generateInternalControlTable', export: 'exportInternalControlTable' }, + // 审计内容9 + personnel: { generate: 'generatePersonnelTable', export: 'exportPersonnelTable' }, + // 审计内容10 + partyConduct: { generate: 'generatePartyConductTable', export: 'exportPartyConductTable' }, + // 审计内容11 + history: { generate: 'generateHistoryTable', export: 'exportHistoryTable' }, + // 默认 + default: { generate: 'generateDefaultTable', export: 'exportDefaultTable' } +}; + +export default { + tableConfigs, + getTableConfig, + getAllTableConfigs, + findTableConfigByInterface, + createDataMapper, + apiMethodMap +}; \ No newline at end of file diff --git a/src/views/pwl/pwlProject/components/reportContent.vue b/src/views/pwl/pwlProject/components/reportContent.vue index c505af7..f689aab 100644 --- a/src/views/pwl/pwlProject/components/reportContent.vue +++ b/src/views/pwl/pwlProject/components/reportContent.vue @@ -1,60 +1,51 @@ -