123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- export const zzForm = [
- [
- {
- label: '',
- prop: 'type',
- span: 10
- },
- {
- label: '',
- prop: 'xmmc',
- span: 10,
- component: 'ElInput',
- componentProps: {
- placeholder: '项目名称'
- }
- },
- {
- prop: 'action',
- span: 4
- }
- ]
- ]
- export const legends = [
- { label: "试点区域", color: '#caf982' },
- { label: "整治区域", color: '#80ffff' },
- { label: "整治项目", color: '#facd91' }
- ]
- export const reasonList = [
- { name: "农用地整理项目", code: 0 },
- { name: "建设用地整治项目", code: 1 },
- { name: "乡村生态保护修复项目", code: 2 },
- { name: "乡村历史文化保护项目", code: 3 },
- ]
- export const TableHeader = [
- { label: "项目名称", prop: "xmmc" },
- { label: "主管部门", prop: "zgbm", width: '80px' },// slot: "mj"
- { label: "建设规模", prop: "tygm", },
- { label: "操作", slot: "action" },
- ]
- export const xzForm = [
- [
- {
- label: '',
- prop: 'key',
- span: 20,
- component: 'ElInput',
- componentProps: {
- placeholder: '请输入地块编号'
- }
- },
- {
- prop: 'action',
- span: 4
- }
- ]
- ]
- export const xzTableHeader = [
- { label: "地块编号", prop: "xmmc" },
- { label: "面积(亩)", prop: "crmj", slot: "mj" },
- { label: "等别", prop: "ydkgsj", },
- { label: "操作", slot: "action", width: '80px', },
- ]
|