Browse Source

refactor(): 精简页面

18460000105 3 tháng trước cách đây
mục cha
commit
c79ab9800a
2 tập tin đã thay đổi với 7 bổ sung61 xóa
  1. 4 28
      novel-app/src/app/tab2/tab2.page.html
  2. 3 33
      novel-app/src/app/tab2/tab2.page.ts

+ 4 - 28
novel-app/src/app/tab2/tab2.page.html

@@ -73,7 +73,6 @@
   <!-- 底部弹出模态 -->
   <ion-modal [isOpen]="isModalOpen" cssClass="bottom-modal">
     <ng-template>
-
       <ion-header>
         <ion-toolbar>
           <ion-buttons slot="start">
@@ -89,37 +88,14 @@
           <h1 class="product-name">{{currentProduct.get('title')}}</h1>
           <p><strong>作者:</strong>{{currentProduct.get('author')}}</p>
           <p>{{currentProduct.get('content')[0]}}</p>
-          <div class="image-container">
-            <img style="width: 100%; height: auto;" [src]="currentProduct.get('image')[0]" alt="图片" class="medicine-image">
-          </div>
-          <p>{{currentProduct.get('content')[0]}}</p>  
-          <div class="image-container">
+          <!-- <div class="image-container">
             <img style="width: 100%; height: auto;" [src]="currentProduct.get('image')[0]" alt="图片" class="medicine-image">
-          </div>
-          <div style="display: flex; height: 30px; width: 100%; justify-content: space-between; align-items: center">
-            <p style="margin-left:30px"><strong>阅读量:</strong>{{currentProduct.get('views')}}</p>
-            <p style="margin-right:30px"><strong>点赞量:</strong>{{currentProduct.get('likes')}}</p>  
-          </div>
+          </div> -->
+          <!-- <p>{{currentProduct.get('content')[0]}}</p>    -->
         </div>
       </ion-content>
     </ng-template>
   </ion-modal>
 
-  <ion-modal class="share-modal" [isOpen]="shareDetail">
-      <ion-header>
-        <ion-toolbar>
-          <ion-buttons slot="end">
-            <ion-button (click)="closeDetailModal()">X</ion-button>
-          </ion-buttons>
-          <ion-title>分享</ion-title>
-        </ion-toolbar>
-      </ion-header>
-      <ion-content>
-        <ion-item>
-          <ion-label position="stacked">分享链接</ion-label>
-          <!-- <ion-input [(ngModel)]="shareLink" readonly></ion-input> -->
-        </ion-item>
-        <ion-button expand="block" (click)="copyLink()">复制链接</ion-button>
-    </ion-content>
-  </ion-modal>
+
 </ion-content>

+ 3 - 33
novel-app/src/app/tab2/tab2.page.ts

@@ -51,21 +51,8 @@ setSlidePosition() {
   // 这里不需要额外的逻辑,因为在 HTML 中已经通过绑定实现
 }
 
-nextSlide() {
-  this.currentSlide = (this.currentSlide + 1) % this.images.length;
-}
-
-prevSlide() {
-  this.currentSlide = (this.currentSlide - 1 + this.images.length) % this.images.length;
-}
 
-goToSlide(index: number) {
-  this.currentSlide = index;
-}
 
-startAutoSlide() {
-  this.intervalId = setInterval(() => this.nextSlide(), 3000);
-}
 
 
   products: Array<CloudObject> = []; // 当前显示的科普信息
@@ -100,23 +87,9 @@ startAutoSlide() {
     this.currentProduct = null;
   }
   shareDetail = false;
-  shareDetailModal() {
-    this.shareDetail = true;
-    // 在这里确保模态框的aria-hidden属性被正确处理
-    // setTimeout(() => {
-    //   const modalElement = document.querySelector('ion-modal');
-    //   if (modalElement) {
-    //     modalElement.setAttribute('aria-hidden', 'false');
-    //   }
-    // }, 0);
-  }
-  closeShareModal(){
-    this.shareDetail = false;
 
-  }
-  copyLink() {
-    console.log('复制链接');
-  }
+
+
   type:"hotdot"|"export"|"sleep"|"life"|"男"|"女" = "hotdot"
 
   constructor(
@@ -140,10 +113,7 @@ startAutoSlide() {
   }
 
 
-  publishHealthInfo() {
-    // 这里可以添加发布求医信息的逻辑
-    console.log('发布求医信息');
-  }
+
 
   openAiKnowledge(){
     this.router.navigate(['tabs/ai-knowledge']);