| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 | const data = [  {    pasture: '一级分类',    pasture1: '二级分类',    pasture2: '三级分类',    type: '类型',    pastureName1: '宝鸡1',    pastureName2: '宝鸡2'  },  // 车辆A  {    pasture: '车辆A',    pasture1: '装载机A',    pasture2: '小型装载机A',    type: '数量',    barCode: '323',    pastureName1: '1111',    pastureName2: '2222'  },  {    pasture: '车辆A',    pasture1: '装载机A',    pasture2: '小型装载机A',    type: '运转率',    pastureName1: '1111',    pastureName2: '2222'  },  {    pasture: '车辆A',    pasture1: '装载机A',    pasture2: '小型装载机A',    type: '闲置率',    pastureName1: '1111',    pastureName2: '2222'  },  {    pasture: '车辆A',    pasture1: '装载机A',    pasture2: '小型装载机B',    type: '数量',    barCode: '323',    pastureName1: '1111',    pastureName2: '2222'  },  {    pasture: '车辆A',    pasture1: '装载机A',    pasture2: '小型装载机B',    type: '运转率',    pastureName1: '1111',    pastureName2: '2222'  },  {    pasture: '车辆A',    pasture1: '装载机A',    pasture2: '小型装载机B',    type: '闲置率',    pastureName1: '1111',    pastureName2: '2222'  },  // 车辆B  {    pasture: '车辆B',    pasture1: '装载机B',    pasture2: '小型装载机A',    type: '数量',    barCode: '323',    pastureName1: '2222',    pastureName2: '3333'  },  {    pasture: '车辆B',    pasture1: '装载机B',    pasture2: '小型装载机A',    type: '运转率',    pastureName1: '2222',    pastureName2: '3333'  },  {    pasture: '车辆B',    pasture1: '装载机B',    pasture2: '小型装载机A',    type: '闲置率',    pastureName1: '2222',    pastureName2: '3333'  },  {    pasture: '车辆B',    pasture1: '装载机B',    pasture2: '小型装载机B',    type: '数量',    barCode: '323',    pastureName1: '2222',    pastureName2: '3333'  },  {    pasture: '车辆B',    pasture1: '装载机B',    pasture2: '小型装载机B',    type: '运转率',    pastureName1: '2222',    pastureName2: '3333'  },  {    pasture: '车辆B',    pasture1: '装载机B',    pasture2: '小型装载机B',    type: '闲置率',    pastureName1: '2222',    pastureName2: '3333'  }]export default data
 |