1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- export const FormConfig = [
- [
- // {
- // label: '申请状态:',
- // prop: 'state',
- // span: 5
- // },
- {
- label: '行政区',
- prop: 'region',
- span: 5,
- },
- {
- label: '图斑编号',
- prop: 'dkbh',
- span: 5,
- component: 'ElInput',
- componentProps: {
- placeholder: '图斑编号'
- }
- },
- {
- label: '图斑面积',
- prop: 'tbmj',
- span: 7,
- },
- {
- prop: 'action',
- span: 5
- }
- ]
- ]
- export const TableHeader = [
- { label: "地块编号", align: "center", prop: "dkbh" },
- { label: "行政区名称", align: "center", prop: "xmc" },
- { label: "监测面积(亩)", align: "center", prop: "dkmj" },
- { label: "前类型", align: "center", prop: "qlx" },
- { label: "后类型", align: "center", prop: "hlx" },
- { label: "前时相", align: "center", prop: "qsx" },
- { label: "后时相", align: "center", prop: "hsx" },
- { label: "操作", slot: "action", width: 140, align: 'center' },
- ]
|