config.js 761 B

12345678910111213141516171819202122232425262728293031323334
  1. export const hcs = [{
  2. name: '待核查',
  3. prop: 'dhc',
  4. stepState: 0
  5. },
  6. {
  7. name: '核查中',
  8. prop: 'hcz',
  9. stepState: 1
  10. },
  11. {
  12. name: '已核查',
  13. prop: 'yhc',
  14. stepState: 2
  15. },
  16. {
  17. name: '已退回',
  18. prop: 'th',
  19. stepState: -1
  20. },
  21. ]
  22. export const TableHeader = [
  23. { label: "地块编号", align: "center", prop: "dkbh" },
  24. { label: "行政区名称", align: "center", prop: "xzqmc" },
  25. { label: "监测面积(亩)", align: "center", prop: "dkmj" },
  26. { label: "前类型", align: "center", prop: "qlx" },
  27. { label: "后类型", align: "center", prop: "hlx" },
  28. { label: "前时相", align: "center", prop: "qsx" },
  29. { label: "后时相", align: "center", prop: "hsx" },
  30. { label: "操作", slot: "action", width: 140, align: 'center' },
  31. ]