diff --git a/jeecgboot-vue3/src/views/projectApplication/kejigongguan/yusuanshu/NianDuYuSuanDemo.vue b/jeecgboot-vue3/src/views/projectApplication/kejigongguan/yusuanshu/NianDuYuSuanDemo.vue index d6dfd59..106bfc3 100644 --- a/jeecgboot-vue3/src/views/projectApplication/kejigongguan/yusuanshu/NianDuYuSuanDemo.vue +++ b/jeecgboot-vue3/src/views/projectApplication/kejigongguan/yusuanshu/NianDuYuSuanDemo.vue @@ -34,42 +34,48 @@ export default defineComponent({ function getMergeHeaderColumns(): BasicColumn[] { return [ { - title: 'ID', - dataIndex: 'id', - width: 300, - }, - { - title: '姓名', + title: '单位名称', dataIndex: 'name', width: 300, edit: true }, { - title: '地址', + title: '分年度预算', width: 120, + edit: true, children: [ { - title: '地址', + title: '2025年', dataIndex: 'address', key: 'address', width: 200, + edit: true, }, - { - title: '编号', + /*{ + title: '2026年', dataIndex: 'no', key: 'no', + edit: true }, + { + title: '2027年', + dataIndex: 'no', + key: 'no', + edit: true + },*/ ], }, { - title: '开始时间', + title: '小计', dataIndex: 'beginTime', width: 200, + edit: true, }, { title: '结束时间', dataIndex: 'endTime', width: 200, + edit: true, }, ]; }