河东表单修改后详情及列表展示修改

hedong
zhufu 2025-09-17 16:15:28 +08:00
parent 53b8d06caf
commit 1cc0eb94a0
7 changed files with 86 additions and 0 deletions

View File

@ -44,6 +44,9 @@
<a-descriptions-item label="备案编号">
{{ allInfoData.beian_no }}
</a-descriptions-item>
<a-descriptions-item label="备案日期">
{{ allInfoData.beianriqi? dayjs(allInfoData.beianriqi).format('YYYY-MM-DD') : '' }}
</a-descriptions-item>
<a-descriptions-item label="项目开始时间">
{{ allInfoData.start_time? dayjs(allInfoData.start_time).format('YYYY-MM-DD') : '' }}
</a-descriptions-item>
@ -53,6 +56,9 @@
<a-descriptions-item label="项目当前用途">
{{ allInfoData.xiangmu_yt }}
</a-descriptions-item>
<a-descriptions-item label="建筑结构">
{{ allInfoData.jianzhujiegou }}
</a-descriptions-item>
<a-descriptions-item label="设施农业申请用地面积(公顷)">
{{ allInfoData.shenqing_area }}
</a-descriptions-item>

View File

@ -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',

View File

@ -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',

View File

@ -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',

View File

@ -42,6 +42,16 @@
</div>
</div>
</div>
<div class="row">
<div class="item" style="flex: 1;">
<div class="label">备案日期</div>
<div class="item-input"><a-date-picker v-model:value="props.infoResult.beianriqi"/></div>
</div>
<div class="item" style="flex: 1;">
<div class="label">建筑结构</div>
<div class="item-input"><a-input v-model:value="props.infoResult.jianzhujiegou"/></div>
</div>
</div>
<div class="row">
<div class="item" style="flex: 1;">
<div class="label">项目开始事件</div>

View File

@ -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',

View File

@ -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',