12345678910111213141516171819202122232425262728293031323334 |
- export const hcs = [{
- name: '待核查',
- prop: 'dhc',
- stepState: 0
- },
- {
- name: '核查中',
- prop: 'hcz',
- stepState: 1
- },
- {
- name: '已核查',
- prop: 'yhc',
- stepState: 2
- },
- {
- name: '已退回',
- prop: 'th',
- stepState: -1
- },
- ]
- export const TableHeader = [
- { label: "地块编号", align: "center", prop: "dkbh" },
- { label: "行政区名称", align: "center", prop: "xzqmc" },
- { 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' },
- ]
|