diff --git a/src/views/pwl/pwlProject/components/components/HistoryModal.vue b/src/views/pwl/pwlProject/components/components/HistoryModal.vue new file mode 100644 index 0000000..0004773 --- /dev/null +++ b/src/views/pwl/pwlProject/components/components/HistoryModal.vue @@ -0,0 +1,357 @@ + + + + diff --git a/src/views/pwl/pwlProject/components/data/navigationItems.ts b/src/views/pwl/pwlProject/components/data/navigationItems.ts index 98251e0..a5ee5ff 100644 --- a/src/views/pwl/pwlProject/components/data/navigationItems.ts +++ b/src/views/pwl/pwlProject/components/data/navigationItems.ts @@ -19,7 +19,8 @@ export default ref([ extra1: true, file1: true, mode: 'table', - columns: table1Columns.columns0 + columns: table1Columns.columns0, + count: 1 }, { number: '二', @@ -32,7 +33,8 @@ export default ref([ formCommit: 20, rows: 6, generating: false, - mode: 'text' + mode: 'text', + count: 2 }, { number: '三', @@ -45,7 +47,8 @@ export default ref([ generateMethod: null, mode: 'table', columns: table3Columns.columns0, - data: [] + data: [], + count: 3 }, { number: '四', @@ -54,7 +57,8 @@ export default ref([ description: '点击"AI生成"按钮让AI为您生成该部分内容,或直接在下方编辑', generating: false, mode: 'table', - columns: table4Columns.columns0 + columns: table4Columns.columns0, + count: 4 }, { number: '五', @@ -63,7 +67,8 @@ export default ref([ description: '点击"AI生成"按钮让AI为您生成该部分内容,或直接在下方编辑', generating: false, mode: 'text', - columns: [] + columns: [], + count: 5 }, { number: '六', @@ -72,6 +77,7 @@ export default ref([ description: '点击"AI生成"按钮让AI为您生成该部分内容,或直接在下方编辑', generating: false, mode: 'text', + count: 6, textareaList: [ { label: '审查财务支出凭据', @@ -108,7 +114,8 @@ export default ref([ rows: 8, generating: false, mode: 'text', - columns + columns, + count: 7 }, { number: '八', @@ -122,6 +129,7 @@ export default ref([ rows: 10, generating: false, mode: 'radio', + count: 8, radioList: [ { label: '(1)审计是否确定内部控制职能部门或牵头部门。', @@ -220,7 +228,8 @@ export default ref([ formCommit: 90, rows: 8, generating: false, - mode: 'text' + mode: 'text', + count: 9 }, { number: '十', @@ -234,6 +243,7 @@ export default ref([ rows: 8, generating: false, mode: 'table', + count: 10, columns: [ { title: '大类', diff --git a/src/views/pwl/pwlProject/components/reportContent.vue b/src/views/pwl/pwlProject/components/reportContent.vue index f518f84..e657bd3 100644 --- a/src/views/pwl/pwlProject/components/reportContent.vue +++ b/src/views/pwl/pwlProject/components/reportContent.vue @@ -215,24 +215,30 @@ - - + 历史记录 + + @@ -408,6 +415,7 @@ buildExportData, hasContent } from './data/funcs'; + import HistoryModal from '@/views/pwl/pwlProject/components/components/HistoryModal.vue'; const useForm = Form.useForm; @@ -1126,6 +1134,11 @@ } } ); + + const showHistory = ref(false); + const openHistory = () => { + showHistory.value = true; + };