|
@@ -3,6 +3,7 @@ import { NavController } from '@ionic/angular';
|
|
|
import { UserService } from '../services/user.service';
|
|
|
import { Subscription } from 'rxjs';
|
|
|
|
|
|
+
|
|
|
@Component({
|
|
|
selector: 'app-tab3',
|
|
|
templateUrl: 'tab3.page.html',
|
|
@@ -11,7 +12,7 @@ import { Subscription } from 'rxjs';
|
|
|
export class Tab3Page implements OnInit {
|
|
|
|
|
|
username: string = '';
|
|
|
- userAvatar: string | null = '../../assets/images/user.png'; // 允许 null
|
|
|
+ userAvatar: string | null = 'src/assets/images/user.png'; // 允许 null
|
|
|
userType: string = '普通用户';
|
|
|
previewImage: string | null = null;
|
|
|
private userInfoSubscription?: Subscription;
|
|
@@ -41,31 +42,42 @@ export class Tab3Page implements OnInit {
|
|
|
}
|
|
|
|
|
|
private loadUserInfo() {
|
|
|
+ this.userAvatar = '/assets/images/user.png'; // 立即设置默认头像
|
|
|
+
|
|
|
// 取消之前的订阅(如果有)
|
|
|
if (this.userInfoSubscription) {
|
|
|
this.userInfoSubscription.unsubscribe();
|
|
|
}
|
|
|
+
|
|
|
// 订阅最新的用户信息
|
|
|
this.userInfoSubscription = this.userService.getUserInfo().subscribe(userInfo => {
|
|
|
- if (userInfo) {
|
|
|
- this.username = userInfo.username ?? this.username;
|
|
|
- this.userAvatar = userInfo.userAvatar ?? null; // 确保预览图像是最新的头像或默认值
|
|
|
- this.userType = userInfo.userType ?? '普通用户';
|
|
|
- this.previewImage = userInfo.userAvatar ?? null; // 设置预览图像
|
|
|
- } else {
|
|
|
- this.userAvatar = '../../assets/images/user.png'; // 如果没有用户信息,使用默认头像
|
|
|
- this.previewImage = null;
|
|
|
+ if (userInfo && userInfo.userAvatar) {
|
|
|
+ this.userAvatar = userInfo.userAvatar;
|
|
|
+ this.previewImage = userInfo.userAvatar;
|
|
|
}
|
|
|
+ // 如果 userInfo 为 null 或 undefined,保持默认头像不变
|
|
|
});
|
|
|
}
|
|
|
|
|
|
private checkStatuses() {
|
|
|
- // 模拟检查各个功能区的状态
|
|
|
- // 实际应用中应从服务器获取最新状态
|
|
|
- this.hasUnreadHealthRecords = true;
|
|
|
- this.hasPendingAppointments = true;
|
|
|
- this.hasNewPromotions = true;
|
|
|
- this.hasUnprocessedOrders = true;
|
|
|
+ // 尝试从 localStorage 加载状态
|
|
|
+ const savedStates = JSON.parse(localStorage.getItem('userStatuses') || '{}');
|
|
|
+
|
|
|
+ this.hasUnreadHealthRecords = savedStates.hasUnreadHealthRecords ?? false;
|
|
|
+ this.hasPendingAppointments = savedStates.hasPendingAppointments ?? false;
|
|
|
+ this.hasNewPromotions = savedStates.hasNewPromotions ?? false;
|
|
|
+ this.hasUnprocessedOrders = savedStates.hasUnprocessedOrders ?? false;
|
|
|
+ }
|
|
|
+
|
|
|
+ private saveStatuses() {
|
|
|
+ const userStatuses = {
|
|
|
+ hasUnreadHealthRecords: this.hasUnreadHealthRecords,
|
|
|
+ hasPendingAppointments: this.hasPendingAppointments,
|
|
|
+ hasNewPromotions: this.hasNewPromotions,
|
|
|
+ hasUnprocessedOrders: this.hasUnprocessedOrders
|
|
|
+ };
|
|
|
+
|
|
|
+ localStorage.setItem('userStatuses', JSON.stringify(userStatuses));
|
|
|
}
|
|
|
|
|
|
editProfile() {
|
|
@@ -76,21 +88,29 @@ export class Tab3Page implements OnInit {
|
|
|
viewHealthRecord() {
|
|
|
console.log('查看/编辑健康档案');
|
|
|
this.navCtrl.navigateForward('/health-record');
|
|
|
+ this.hasUnreadHealthRecords = false; // 标记为已读
|
|
|
+ this.saveStatuses(); // 保存状态
|
|
|
}
|
|
|
|
|
|
viewMedicalServices() {
|
|
|
console.log('查看医疗服务');
|
|
|
this.navCtrl.navigateForward('/medical-services');
|
|
|
+ this.hasPendingAppointments = false;
|
|
|
+ this.saveStatuses();
|
|
|
}
|
|
|
|
|
|
viewPointsAndCoupons() {
|
|
|
console.log('查看积分与优惠');
|
|
|
this.navCtrl.navigateForward('/points-and-coupons');
|
|
|
+ this.hasNewPromotions = false;
|
|
|
+ this.saveStatuses();
|
|
|
}
|
|
|
|
|
|
viewOrders() {
|
|
|
console.log('查看订单管理');
|
|
|
this.navCtrl.navigateForward('/orders');
|
|
|
+ this.hasUnprocessedOrders = false;
|
|
|
+ this.saveStatuses();
|
|
|
}
|
|
|
|
|
|
goToFaq() {
|