eye-exam.page.ts 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import { Component, OnInit } from '@angular/core';
  2. import { ActivatedRoute } from '@angular/router';
  3. import { NavController } from '@ionic/angular';
  4. @Component({
  5. selector: 'app-eye-exam',
  6. templateUrl: './eye-exam.page.html', // 确保这里使用了正确的模板文件路径
  7. styleUrls: ['./eye-exam.page.scss']
  8. })
  9. export class EyeExamPage implements OnInit {
  10. index: number = -1; // 给 index 一个默认值
  11. report: any;
  12. constructor(private route: ActivatedRoute, private navController: NavController) {}
  13. ngOnInit() {
  14. const paramMap = this.route.snapshot.paramMap;
  15. if (paramMap) {
  16. const indexParam = paramMap.get('index');
  17. if (indexParam !== null) {
  18. this.index = +indexParam;
  19. // 假设你有一个方法来获取报告数据
  20. this.report = this.getReportData(this.index);
  21. } else {
  22. console.error('Invalid index parameter.');
  23. }
  24. } else {
  25. console.error('Route snapshot paramMap is null or undefined.');
  26. }
  27. }
  28. getReportData(index: number): any {
  29. // 这里模拟从服务中获取报告数据
  30. return {
  31. title: '眼科检查报告',
  32. date: new Date(),
  33. details: '视力良好,无异常。建议定期复查。',
  34. attachments: [
  35. { url: '../../assets/images/eye1.jpg', name: '附件1' },
  36. { url: '../../assets/images/eye2.jpg', name: '附件2' }
  37. ]
  38. };
  39. }
  40. goBack() {
  41. this.navController.navigateBack('/tabs/tab3'); // 返回到 tab3
  42. }
  43. }