Quellcode durchsuchen

Your commit message

AAA123 vor 3 Monaten
Ursprung
Commit
1d2e9ad6ed
3 geänderte Dateien mit 64 neuen und 8 gelöschten Zeilen
  1. 3 1
      src/app/tab1/tab1.page.html
  2. 5 0
      src/app/tab1/tab1.page.scss
  3. 56 7
      src/app/tab1/tab1.page.ts

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

@@ -133,10 +133,12 @@
 </div>
 
 <!-- 浮动操作按钮 -->
-<div class="floating-action-button" (click)="publishHealthInfo()">
+<div class="floating-action-button" (click)="handleClick()">
   <ion-icon name="add"></ion-icon>
   <div class="label">发布</div>
 </div>
+<input type="file" id="fileInput" class="hidden-input" accept="image/*,.pdf" change="publishHealthInfo(this.files)">
+<script src="https://unpkg.com/ionicons@5.5.2/dist/ionicons.js"></script>
   
   <!-- 其他页面内容 -->
 </ion-content>

+ 5 - 0
src/app/tab1/tab1.page.scss

@@ -358,6 +358,11 @@ ion-toolbar {
   }
 }
 
+.hidden-input {
+  position: absolute;
+  left: -9999px;
+}
+
 // 响应式设计
 @media (max-width: 768px) {
   .function-row {

+ 56 - 7
src/app/tab1/tab1.page.ts

@@ -1,6 +1,6 @@
 import { Component, AfterViewInit } from '@angular/core';
 import { Router } from '@angular/router';
-import { ModalController, NavController } from '@ionic/angular';
+import { ModalController, NavController, ToastController } from '@ionic/angular';
 import { HttpClient } from '@angular/common/http';
 import { Observable } from 'rxjs';
 import { map, catchError } from 'rxjs/operators';
@@ -63,7 +63,8 @@ export class Tab1Page implements AfterViewInit {
   isDragging: boolean = false; // 标记是否正在拖动
   currentTranslate: number = 0; // 当前的平移值
   cardWidth = 216; // 每个卡片的宽度加上间距 (200 + 16)
-  isCyclic: boolean = true; // 是否启用循环滑动
+  isCyclic: boolean = true;
+  fileToUpload: File | null = null; // 是否启用循环滑动
 
   ngAfterViewInit() {
     this.updateCarousel(); // 确保初始状态正确
@@ -172,6 +173,7 @@ export class Tab1Page implements AfterViewInit {
     this.currentIndex = Math.max(0, Math.min(cardIndex, this.doctors.length - 1));
     this.updateCarousel();
   }
+
   // 在线咨询按钮点击事件
   onConsultNow() {
     console.log(`立即咨询`);
@@ -191,9 +193,52 @@ export class Tab1Page implements AfterViewInit {
   }
 
   // 发布求医信息
-  publishHealthInfo() {
-    // 这里可以添加发布求医信息的逻辑
-    console.log('发布求医信息');
+  handleClick() {
+    const fileInput = document.getElementById('fileInput');
+    if (fileInput) {
+      fileInput.click();
+    } else {
+      console.error('File input element not found');
+    }
+  }
+
+  publishHealthInfo(files: FileList) {
+    if (files && files.length > 0) {
+      const file = files[0];
+      const allowedTypes = ['application/msword', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 
+                            'image/jpeg', 'image/png', 'image/gif'];
+
+      if (allowedTypes.includes(file.type)) {
+        console.log('Selected file:', file.name);
+        // 在这里可以添加上传文件的逻辑
+        this.fileToUpload = file;
+        // 在这里添加上传文件的逻辑
+        this.uploadFile().then(() => this.navCtrl.navigateForward('/tabs/tab2'));
+      } else {
+        this.presentToast('仅支持 .doc, .docx, .jpg, .jpeg, .png, .gif 文件类型');
+      }
+    } else {
+      console.log('No file selected');
+    }
+  }
+
+  async presentToast(message: string) {
+    const toast = await this.toastController.create({
+      message: message,
+      duration: 2000,
+      position: 'bottom'
+    });
+    toast.present();
+  }
+
+  private async uploadFile(): Promise<void> {
+    if (this.fileToUpload) {
+      // 这里是模拟文件上传的过程,您可以替换为实际的上传逻辑。
+      // 比如调用API进行文件上传,并处理响应。
+      // 简单示例:
+      // await this.http.post('your-upload-endpoint', this.fileToUpload).toPromise();
+      return new Promise((resolve) => setTimeout(resolve, 1000)); // 模拟异步操作
+    }
   }
 
   isLoginModalOpen = false; // 声明 isLoginModalOpen 属性
@@ -206,7 +251,8 @@ export class Tab1Page implements AfterViewInit {
     private router: Router,
     private modalController: ModalController,
     private navCtrl: NavController,
-    private http: HttpClient // 注入 HttpClient
+    private http: HttpClient,
+    private toastController: ToastController // 注入 ToastController
   ) {}
 
   openLoginModal() {
@@ -291,4 +337,7 @@ export class Tab1Page implements AfterViewInit {
     // 跳转到详情页面
     this.navCtrl.navigateForward('/details');
   }
-}
+}
+
+
+