config.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. export const FormConfig = [
  2. [
  3. // {
  4. // label: '申请状态:',
  5. // prop: 'state',
  6. // span: 5
  7. // },
  8. {
  9. label: '行政区',
  10. prop: 'region',
  11. span: 5,
  12. },
  13. {
  14. label: '图斑编号',
  15. prop: 'dkbh',
  16. span: 5,
  17. component: 'ElInput',
  18. componentProps: {
  19. placeholder: '图斑编号'
  20. }
  21. },
  22. {
  23. label: '图斑面积',
  24. prop: 'tbmj',
  25. span: 7,
  26. },
  27. {
  28. prop: 'action',
  29. span: 5
  30. }
  31. ]
  32. ]
  33. export const TableHeader = [
  34. { label: "地块编号", align: "center", prop: "dkbh" },
  35. { label: "行政区名称", align: "center", prop: "xmc" },
  36. { label: "监测面积(亩)", align: "center", prop: "dkmj" },
  37. { label: "前类型", align: "center", prop: "qlx" },
  38. { label: "后类型", align: "center", prop: "hlx" },
  39. { label: "前时相", align: "center", prop: "qsx" },
  40. { label: "后时相", align: "center", prop: "hsx" },
  41. { label: "操作", slot: "action", width: 140, align: 'center' },
  42. ]