tableHeader.js 452 B

1234567891011121314151617
  1. function getTownHeader() {
  2. return [
  3. { label: '地区', prop: 'town', width: '120' },
  4. { label: '社区', prop: 'hospital', width: '140' },
  5. { label: '团队', prop: 'team', width: '140' }
  6. ]
  7. }
  8. function getHospitalHeader() {
  9. return [
  10. { label: '社区', prop: 'hospital', width: '140' },
  11. { label: '团队', prop: 'team', width: '140' }
  12. ]
  13. }
  14. function getTeamHeader() {
  15. return [{ label: '团队', prop: 'team', width: '140' }]
  16. }