departmentIntroduction.js 428 B

1234567891011121314151617181920212223
  1. import { connect } from 'herculex';
  2. import { reportCmPV_YL } from '../../utils/cloudMonitorHelper';
  3. const app = getApp();
  4. Component(connect({})({
  5. props: {
  6. dataSource: []
  7. },
  8. data: {
  9. imgSrcPrefix: app.globalData.imgSrcPrefix
  10. },
  11. methods: {
  12. /**
  13. * 科室介绍详情
  14. */
  15. onTap() {
  16. /* 服务预警,科室介绍 */
  17. reportCmPV_YL({
  18. title: '科室介绍'
  19. });
  20. }
  21. }
  22. }));