diff --git a/src/components/EarlyWarning/InfoModal/index.vue b/src/components/EarlyWarning/InfoModal/index.vue index 156871e..2a30183 100644 --- a/src/components/EarlyWarning/InfoModal/index.vue +++ b/src/components/EarlyWarning/InfoModal/index.vue @@ -44,6 +44,9 @@ {{ allInfoData.beian_no }} + + {{ allInfoData.beianriqi? dayjs(allInfoData.beianriqi).format('YYYY-MM-DD') : '' }} + {{ allInfoData.start_time? dayjs(allInfoData.start_time).format('YYYY-MM-DD') : '' }} @@ -53,6 +56,9 @@ {{ allInfoData.xiangmu_yt }} + + {{ allInfoData.jianzhujiegou }} + {{ allInfoData.shenqing_area }} diff --git a/src/views/demo/expirationwarning/utils.ts b/src/views/demo/expirationwarning/utils.ts index aaff606..b64345f 100644 --- a/src/views/demo/expirationwarning/utils.ts +++ b/src/views/demo/expirationwarning/utils.ts @@ -21,6 +21,15 @@ export const columns: BasicColumn[] = [ title: '备案编号', dataIndex: 'beian_no', }, + { + title: '备案日期', + dataIndex: 'beianriqi', + width: 200, + customRender: ({ text }) => { + if (!text) return ''; + return dayjs(text).format('YYYY-MM-DD'); + }, + }, { title: '项目开始时间', dataIndex: 'start_time', @@ -43,6 +52,11 @@ export const columns: BasicColumn[] = [ dataIndex: 'xiangmu_yt', width: 110, }, + { + title: '建筑结构', + dataIndex: 'jianzhujiegou', + width: 110, + }, { title: '设施农业申请用地面积(公顷)', dataIndex: 'shenqing_area', diff --git a/src/views/demo/historyproject/utils.ts b/src/views/demo/historyproject/utils.ts index eb40456..e297f45 100644 --- a/src/views/demo/historyproject/utils.ts +++ b/src/views/demo/historyproject/utils.ts @@ -21,6 +21,15 @@ export const columns: BasicColumn[] = [ title: '备案编号', dataIndex: 'beian_no', }, + { + title: '备案日期', + dataIndex: 'beianriqi', + width: 200, + customRender: ({ text }) => { + if (!text) return ''; + return dayjs(text).format('YYYY-MM-DD'); + }, + }, { title: '项目开始时间', dataIndex: 'start_time', @@ -43,6 +52,11 @@ export const columns: BasicColumn[] = [ dataIndex: 'xiangmu_yt', width: 110, }, + { + title: '建筑结构', + dataIndex: 'jianzhujiegou', + width: 110, + }, { title: '设施农业申请用地面积(公顷)', dataIndex: 'shenqing_area', diff --git a/src/views/demo/overduewarning/utils.ts b/src/views/demo/overduewarning/utils.ts index aaff606..b64345f 100644 --- a/src/views/demo/overduewarning/utils.ts +++ b/src/views/demo/overduewarning/utils.ts @@ -21,6 +21,15 @@ export const columns: BasicColumn[] = [ title: '备案编号', dataIndex: 'beian_no', }, + { + title: '备案日期', + dataIndex: 'beianriqi', + width: 200, + customRender: ({ text }) => { + if (!text) return ''; + return dayjs(text).format('YYYY-MM-DD'); + }, + }, { title: '项目开始时间', dataIndex: 'start_time', @@ -43,6 +52,11 @@ export const columns: BasicColumn[] = [ dataIndex: 'xiangmu_yt', width: 110, }, + { + title: '建筑结构', + dataIndex: 'jianzhujiegou', + width: 110, + }, { title: '设施农业申请用地面积(公顷)', dataIndex: 'shenqing_area', diff --git a/src/views/demo/projectchange/InfoModal/index.vue b/src/views/demo/projectchange/InfoModal/index.vue index a950001..76627f4 100644 --- a/src/views/demo/projectchange/InfoModal/index.vue +++ b/src/views/demo/projectchange/InfoModal/index.vue @@ -42,6 +42,16 @@ +
+
+
备案日期:
+
+
+
+
建筑结构:
+
+
+
项目开始事件:
diff --git a/src/views/demo/projectchange/utils.ts b/src/views/demo/projectchange/utils.ts index eb40456..e297f45 100644 --- a/src/views/demo/projectchange/utils.ts +++ b/src/views/demo/projectchange/utils.ts @@ -21,6 +21,15 @@ export const columns: BasicColumn[] = [ title: '备案编号', dataIndex: 'beian_no', }, + { + title: '备案日期', + dataIndex: 'beianriqi', + width: 200, + customRender: ({ text }) => { + if (!text) return ''; + return dayjs(text).format('YYYY-MM-DD'); + }, + }, { title: '项目开始时间', dataIndex: 'start_time', @@ -43,6 +52,11 @@ export const columns: BasicColumn[] = [ dataIndex: 'xiangmu_yt', width: 110, }, + { + title: '建筑结构', + dataIndex: 'jianzhujiegou', + width: 110, + }, { title: '设施农业申请用地面积(公顷)', dataIndex: 'shenqing_area', diff --git a/src/views/demo/projectlist/utils.ts b/src/views/demo/projectlist/utils.ts index 87f344a..81a1797 100644 --- a/src/views/demo/projectlist/utils.ts +++ b/src/views/demo/projectlist/utils.ts @@ -21,6 +21,15 @@ export const columns: BasicColumn[] = [ title: '备案编号', dataIndex: 'beian_no', }, + { + title: '备案日期', + dataIndex: 'beianriqi', + width: 200, + customRender: ({ text }) => { + if (!text) return ''; + return dayjs(text).format('YYYY-MM-DD'); + }, + }, { title: '项目状态', dataIndex: 'handle_status_name', @@ -47,6 +56,11 @@ export const columns: BasicColumn[] = [ dataIndex: 'xiangmu_yt', width: 110, }, + { + title: '建筑结构', + dataIndex: 'jianzhujiegou', + width: 110, + }, { title: '设施农业申请用地面积(公顷)', dataIndex: 'shenqing_area',