浏览代码

提交内容的备注信息

AAA123 4 月之前
父节点
当前提交
4f45335c00
共有 3 个文件被更改,包括 397 次插入8 次删除
  1. 43 3
      src/app/tab1/tab1.page.html
  2. 191 1
      src/app/tab1/tab1.page.scss
  3. 163 4
      src/app/tab1/tab1.page.ts

+ 43 - 3
src/app/tab1/tab1.page.html

@@ -53,15 +53,15 @@
     </div>
   </div>
 
- <!-- 推荐医生区域 -->
+<!-- 推荐医生区域 -->
 <div class="recommended-doctors">
   <div class="header">
     <div class="title">今日推荐医生</div>
     <div class="subtitle">每日更新</div>
   </div>
-  <div class="scroll-container" id="carousel">
+  <div class="scroll-container" id="carousel" (touchstart)="onTouchStart($event)" (touchmove)="onTouchMove($event)" (touchend)="onTouchEnd($event)" [ngStyle]="{ transform: 'translateX(' + currentTranslate + '%)' }">
     <ng-container *ngFor="let doctor of doctors; let i = index">
-      <div class="card" [ngStyle]="{ transform: 'translateX(' + (i - currentIndex) * 100 + '%)' }">
+      <div class="card">
         <div class="tag">专家</div>
         <img src="{{ doctor.avatar }}" alt="Doctor Avatar" class="avatar" />
         <div class="name">{{ doctor.name }}</div>
@@ -75,6 +75,46 @@
     <button (click)="nextSlide()">下一张</button>
   </div>
 </div>
+
+
+<!-- 功能区 -->
+<div class="function-area">
+  <!-- 第一行功能按钮 -->
+  <div class="function-row">
+    <div class="function-item" *ngFor="let item of functionItems1" (click)="navigateTo(item.route)">
+      <div class="icon">
+        <ion-icon [name]="item.icon"></ion-icon>
+      </div>
+      <div class="label">{{ item.label }}</div>
+    </div>
+  </div>
+
+  <!-- 第二行功能按钮 -->
+  <div class="function-row">
+    <div class="function-item" *ngFor="let item of functionItems2" (click)="navigateTo(item.route)">
+      <div class="icon">
+        <ion-icon [name]="item.icon"></ion-icon>
+      </div>
+      <div class="label">{{ item.label }}</div>
+    </div>
+  </div>
+
+  <!-- 轮播图区域 -->
+  <div class="promotion-carousel" id="promotionCarousel" (touchstart)="onPromotionTouchStart($event)" (touchmove)="onPromotionTouchMove($event)" (touchend)="onPromotionTouchEnd($event)" [ngStyle]="{ transform: 'translateX(' + promotionCurrentTranslate + '%)' }">
+    <ng-container *ngFor="let poster of promotionPosters; let i = index">
+      <div class="poster">
+        <img [src]="poster.image" alt="Promotion Poster" />
+        <div class="description">{{ poster.description }}</div>
+      </div>
+    </ng-container>
+  </div>
+</div>
+
+<!-- 浮动操作按钮 -->
+<div class="floating-action-button" (click)="publishHealthInfo()">
+  <ion-icon name="add"></ion-icon>
+  <div class="label">发布</div>
+</div>
   
   <!-- 其他页面内容 -->
 </ion-content>

+ 191 - 1
src/app/tab1/tab1.page.scss

@@ -160,7 +160,6 @@ ion-toolbar {
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   width: 100%;
   max-width: 960px; /* 最大宽度 */
-  min-height: 200px; /* 设置最小高度 */
 }
 
 .header {
@@ -188,6 +187,8 @@ ion-toolbar {
   position: relative;
   width: 100%;
   min-height: 200px; /* 设置最小高度 */
+  // 如果需要固定高度,可以取消注释下面的行
+  // height: 200px;
 
   .card {
     display: flex;
@@ -203,6 +204,8 @@ ion-toolbar {
     width: 100%;
     transition: transform 0.5s ease-in-out;
     min-height: 200px; /* 设置最小高度 */
+    // 如果需要固定高度,可以取消注释下面的行
+    // height: 200px;
 
     .tag {
       font-size: 12px;
@@ -264,4 +267,191 @@ ion-toolbar {
 }
 
 
+// 功能区
+.controls {
+  display: flex;
+  justify-content: center;
+  margin-top: 16px;
+
+  button {
+    margin: 0 8px;
+    padding: 8px 16px;
+    border: none;
+    border-radius: 4px;
+    cursor: pointer;
+    background-color: #007bff;
+    color: white;
+    font-size: 14px;
+    transition: background-color 0.3s;
+
+    &:hover {
+      background-color: #0056b3;
+    }
+  }
+}
+
+.function-area {
+  margin: 16px 0;
+  padding: 0 16px;
+  background: white;
+  border-radius: 10px;
+  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+  width: 100%;
+  max-width: 960px; /* 最大宽度 */
+}
+
+.function-row {
+  display: flex; // 使用 Flexbox 布局
+  justify-content: space-between; // 按空间均匀分布
+  align-items: center; // 垂直居中
+  overflow-x: auto; // 允许水平滚动
+  scroll-snap-type: x mandatory; // 启用滚动捕捉
+  -webkit-overflow-scrolling: touch; // 平滑滚动
+  padding: 16px 0;
+
+  .function-item {
+    flex: 1 0 20%; // 每个项目占 20% 宽度
+    min-width: 0; // 确保项目可以缩小
+    display: flex;
+    flex-direction: column;
+    align-items: center;
+    text-align: center;
+    scroll-snap-align: start; // 滚动时对齐
+
+    .icon {
+      font-size: 24px;
+      margin-bottom: 8px;
+    }
+
+    .label {
+      font-size: 14px;
+      color: #333;
+    }
+  }
+}
+
+.promotion-carousel {
+  display: flex;
+  overflow: hidden;
+  position: relative;
+  width: 100%;
 
+  .poster {
+    display: flex;
+    flex-direction: column;
+    align-items: center;
+    background: #f8f8f8;
+    border-radius: 10px;
+    padding: 16px;
+    text-align: center;
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 100%;
+    transition: transform 0.5s ease-in-out;
+    min-height: 200px; /* 设置最小高度 */
+
+    img {
+      width: 100%;
+      height: auto;
+      border-radius: 10px;
+      margin-bottom: 8px;
+    }
+
+    .description {
+      font-size: 14px;
+      color: #333;
+      text-align: center;
+    }
+  }
+}
+
+.function-row {
+  display: flex; // 使用 Flexbox 布局
+  justify-content: space-between; // 按空间均匀分布
+  align-items: center; // 垂直居中
+  overflow-x: auto; // 允许水平滚动
+  scroll-snap-type: x mandatory; // 启用滚动捕捉
+  -webkit-overflow-scrolling: touch; // 平滑滚动
+  padding: 16px 0;
+
+  .function-item {
+    flex: 1 0 20%; // 每个项目占 20% 宽度
+    min-width: 0; // 确保项目可以缩小
+    display: flex;
+    flex-direction: column;
+    align-items: center;
+    text-align: center;
+    scroll-snap-align: start; // 滚动时对齐
+
+    .icon {
+      font-size: 24px;
+      margin-bottom: 8px;
+    }
+
+    .label {
+      font-size: 14px;
+      color: #333;
+    }
+  }
+}
+
+.floating-action-button {
+  position: fixed;
+  bottom: 16px;
+  right: 16px;
+  display: flex; // 使用 Flexbox 布局
+  flex-direction: column; // 子元素垂直排列
+  align-items: center; // 水平居中
+  justify-content: center; // 垂直居中
+  width: 60px;
+  height: 60px;
+  background: #007bff;
+  border-radius: 50%;
+  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+  cursor: pointer;
+  z-index: 1000;
+
+  ion-icon {
+    font-size: 24px;
+    color: white;
+  }
+
+  .label {
+    font-size: 12px;
+    color: white;
+    margin-top: 4px;
+  }
+}
+
+// 响应式设计
+@media (max-width: 768px) {
+  .function-row {
+    .function-item {
+      .icon {
+        font-size: 20px; // 减小图标大小
+      }
+
+      .label {
+        font-size: 12px; // 减小标签文字大小
+      }
+    }
+  }
+
+  .promotion-carousel .poster {
+    min-height: 150px; // 减小海报高度
+  }
+
+  .floating-action-button {
+    width: 50px;
+    height: 50px;
+
+    ion-icon {
+      font-size: 20px; // 减小图标大小
+    }
+
+    .label {
+      font-size: 10px; // 减小标签文字大小
+    }
+  }
+}

+ 163 - 4
src/app/tab1/tab1.page.ts

@@ -37,12 +37,49 @@ export class Tab1Page implements AfterViewInit {
   ];
 
   currentIndex = 0;
+  startX: number = 0; // 初始化 startX
+  endX: number = 0;   // 初始化 endX
+  isDragging: boolean = false; // 标记是否正在拖动
+  currentTranslate: number = 0; // 当前的平移值
+
+  // 功能按钮数据
+  functionItems1 = [
+    { label: '我的病历', icon: 'document-text', route: '/medical-records' },
+    { label: '在线问诊', icon: 'chatbubbles', route: '/online-consultation' },
+    { label: '健康档案', icon: 'person', route: '/health-profile' },
+    { label: '预约挂号', icon: 'calendar', route: '/appointment' },
+    { label: '健康资讯', icon: 'newspaper', route: '/health-news' }
+  ];
+
+  functionItems2 = [
+    { label: '药品购买', icon: 'medkit', route: '/medicine-purchase' },
+    { label: '体检套餐', icon: 'clipboard', route: '/checkup-packages' },
+    { label: '专家讲座', icon: 'podium', route: '/expert-lectures' },
+    { label: '远程医疗', icon: 'videocam', route: '/telemedicine' },
+    { label: '健康社区', icon: 'people', route: '/health-community' }
+  ];
+
+  // 轮播图数据
+  promotionPosters = [
+    { image: '../../assets/images/promotion1.jpg', description: '健康推广1' },
+    { image: '../../assets/images/promotion2.jpg', description: '健康推广2' },
+    { image: '../../assets/images/promotion3.jpg', description: '健康推广3' },
+    { image: '../../assets/images/promotion4.jpg', description: '健康推广4' },
+    { image: '../../assets/images/promotion5.jpg', description: '健康推广5' }
+  ];
+
+  promotionCurrentIndex = 0;
+  promotionStartX: number = 0; // 初始化 startX
+  promotionEndX: number = 0;   // 初始化 endX
+  isPromotionDragging: boolean = false; // 标记是否正在拖动
+  promotionCurrentTranslate: number = 0; // 当前的平移值
 
   constructor(private router: Router) {}
 
   ngAfterViewInit() {
     // 初始化时调用一次以确保初始状态正确
     this.updateCarousel();
+    this.updatePromotionCarousel();
   }
 
   // 上一张
@@ -66,10 +103,132 @@ export class Tab1Page implements AfterViewInit {
   }
 
   // 更新轮播位置
-  updateCarousel() {
-    // 这里不需要获取 DOM 元素,因为我们在模板中直接使用了 [ngStyle]
-    // 每个卡片的 transform 属性会根据当前索引自动更新
+updateCarousel() {
+  this.currentTranslate = -this.currentIndex * 100;
+  this.updateCarouselPosition();
+}
+
+// 更新轮播位置
+updateCarouselPosition() {
+  const container = document.getElementById('carousel');
+  if (container) {
+    container.style.transform = `translateX(${this.currentTranslate}%)`;
+  }
+}
+
+// 触摸开始
+onTouchStart(event: TouchEvent) {
+  this.startX = event.touches[0].clientX;
+  this.isDragging = true;
+}
+
+// 触摸移动
+onTouchMove(event: TouchEvent) {
+  if (this.isDragging) {
+    const touchX = event.touches[0].clientX;
+    const deltaX = touchX - this.startX;
+    this.currentTranslate = -this.currentIndex * 100 + deltaX;
+    this.updateCarouselPosition();
+  }
+}
+
+// 触摸结束
+onTouchEnd(event: TouchEvent) {
+  this.endX = event.changedTouches[0].clientX;
+  this.isDragging = false;
+
+  const swipeThreshold = 50; // 滑动阈值
+  const deltaX = this.startX - this.endX;
+
+  if (deltaX > swipeThreshold) {
+    // 向左滑动
+    this.nextSlide();
+  } else if (deltaX < -swipeThreshold) {
+    // 向右滑动
+    this.prevSlide();
+  } else {
+    // 如果滑动距离不够,则恢复到原来的位置
+    this.updateCarousel();
+  }
+}
+  // 导航到指定路由
+  navigateTo(route: string) {
+    this.router.navigate([route]);
+  }
+
+  // 更新轮播图位置
+  updatePromotionCarousel() {
+    this.promotionCurrentTranslate = -this.promotionCurrentIndex * 100;
+    this.updatePromotionCarouselPosition();
+  }
+
+  // 触摸开始
+  onPromotionTouchStart(event: TouchEvent) {
+    this.promotionStartX = event.touches[0].clientX;
+    this.isPromotionDragging = true;
+  }
+
+  // 触摸移动
+  onPromotionTouchMove(event: TouchEvent) {
+    if (this.isPromotionDragging) {
+      const touchX = event.touches[0].clientX;
+      const deltaX = touchX - this.promotionStartX;
+      this.promotionCurrentTranslate = -this.promotionCurrentIndex * 100 + deltaX;
+      this.updatePromotionCarouselPosition();
+    }
+  }
+
+  // 触摸结束
+  onPromotionTouchEnd(event: TouchEvent) {
+    this.promotionEndX = event.changedTouches[0].clientX;
+    this.isPromotionDragging = false;
+
+    const swipeThreshold = 50; // 滑动阈值
+    const deltaX = this.promotionStartX - this.promotionEndX;
+
+    if (deltaX > swipeThreshold) {
+      // 向左滑动
+      this.nextPromotionSlide();
+    } else if (deltaX < -swipeThreshold) {
+      // 向右滑动
+      this.prevPromotionSlide();
+    } else {
+      // 如果滑动距离不够,则恢复到原来的位置
+      this.updatePromotionCarousel();
+    }
+  }
+
+  // 更新轮播图位置
+  updatePromotionCarouselPosition() {
+    const container = document.getElementById('promotionCarousel');
+    if (container) {
+      container.style.transform = `translateX(${this.promotionCurrentTranslate}%)`;
+    }
   }
 
-  // 模拟数据或其他逻辑可以在这里添加
+  // 上一张
+  prevPromotionSlide() {
+    if (this.promotionCurrentIndex > 0) {
+      this.promotionCurrentIndex--;
+    } else {
+      this.promotionCurrentIndex = this.promotionPosters.length - 1;
+    }
+    this.updatePromotionCarousel();
+  }
+
+  // 下一张
+  nextPromotionSlide() {
+    if (this.promotionCurrentIndex < this.promotionPosters.length - 1) {
+      this.promotionCurrentIndex++;
+    } else {
+      this.promotionCurrentIndex = 0;
+    }
+    this.updatePromotionCarousel();
+  }
+
+  // 发布求医信息
+  publishHealthInfo() {
+    // 这里可以添加发布求医信息的逻辑
+    console.log('发布求医信息');
+  }
 }