hospitalIntroduction.sjs 179 B

123456789101112
  1. const getImg = (item) => {
  2. return item.img || '';
  3. }
  4. const getSectionList = (item) => {
  5. return item.sectionList || [];
  6. }
  7. export default {
  8. getImg,
  9. getSectionList
  10. }