shptjs/src/views/fhrz/Jm/form.js

40 lines
1.5 KiB
JavaScript
Raw Normal View History

2025-02-07 10:27:06 +08:00
export const formJs = [
{ label: '用户名称', key: 'name', type: 'input' },
{ label: '手机号码', key: 'phone', type: 'input' },
{ label: '家庭人口', key: 'ptcount', type: 'input' },
{ label: '建筑面积', key: 'area', type: 'input' },
{
label: '建筑类型', key: 'btype', type: 'select', option: [
{ value: '1', label: '1层住宅' },
{ value: '2', label: '2层住宅' },
{ value: '3', label: '3层住宅' },
{ value: '4', label: '3层以上住宅' },
]
},
{
label: '结构形式', key: 'stype', type: 'select', option: [
{ value: '1', label: '钢筋混凝土结构' },
{ value: '2', label: '混合结构' },
{ value: '3', label: '砖木结构' },
{ value: '4', label: '其他结构' },
]
},
{ label: '宅基经度', key: 'blgtd', type: 'input' },
{ label: '宅基纬度', key: 'blttd', type: 'input' },
{ label: '宅基高程', key: 'hele', type: 'input' },
{
label: '临水', key: 'bwater', type: 'select', option: [
{ value: '1', label: '是' },
{ value: '2', label: '否' },
]
},
{
label: '切坡', key: 'bhill', type: 'select', option: [
{ value: '1', label: '是' },
{ value: '2', label: '否' },
]
},
{ label: '基准点纬度', key: 'plarea', type: 'input' },
{ label: '基准点经度', key: 'pcount', type: 'input' },
{ label: '基准点高程', key: 'bele', type: 'input' },
]