111 lines
2.3 KiB
JavaScript

export default [
{
type: 'card',
label: '基础信息',
children: [
{
type: 'row',
children: [
{
span: 8,
label: '事件类型',
value: '冰雪事件',
},
{
span: 8,
label: '路况类别',
prop: 'event.routeNo'
},
{
span: 8,
label: '处理措施',
prop: 'event.disposalMeasures'
}
]
},
{
type: 'row',
children: [
{
span: 8,
label: '地点路线',
prop: 'event.occurLocation'
},
{
span: 8,
label: '起点桩号',
prop: 'event.startStakeNo'
},
{
span: 8,
label: '止点桩号',
prop: 'event.endStakeNo'
}
]
},
{
type: 'row',
children: [
{
span: 8,
label: '路况位置',
prop: 'event.occurLocation'
},
{
span: 8,
label: '阻断点小地名',
prop: 'event.occurLocation'
},
{
span: 8,
label: '地点路线',
prop: 'event.occurLocation'
}
]
},
{
type: 'row',
children: [
{
span: 24,
label: '受灾里程',
prop: 'event.disasterMileage'
}
]
},
{
type: 'row',
children: [
{
span: 8,
label: '所属区县',
prop: 'event.district'
},
{
span: 8,
label: '发现时间',
prop: 'event.occurTime'
}
]
},
{
type: 'row',
children: [
{
span: 8,
label: '是否需要恢复重建',
prop: 'event.actualRecoverTime'
},
{
show: (formData) => {
return formData.event?.actualRecoverTime
},
span: 8,
label: '恢复重建预估费用(万元)',
prop: 'event.estimatedRecoveryCost'
}
]
}
]
}
]