Browse Source

Merge branch 'master' of http://git.fmode.cn:3000/AAA123/web3-202226701052

t/COMMIT_EDITMSG [unix] (14:31 19/12/20.git/COMMIT_EDITMSG [unix] (14:31
19/12/202:
AAA123 3 months ago
parent
commit
0c740f2422
3 changed files with 56 additions and 3 deletions
  1. 3 1
      src/app/tab1/tab1.page.html
  2. 5 0
      src/app/tab1/tab1.page.scss
  3. 48 2
      src/app/tab1/tab1.page.ts

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

@@ -146,10 +146,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 {

+ 48 - 2
src/app/tab1/tab1.page.ts

@@ -73,6 +73,7 @@ export class Tab1Page implements AfterViewInit {
   errorMessage: string = ''; // 错误消息
   isLoginModalOpen = false;
   user: User = { username: '', password: '' };
+  fileToUpload = null;
 
   constructor(
     private router: Router,
@@ -185,8 +186,53 @@ export class Tab1Page implements AfterViewInit {
     this.router.navigate([route]);
   }
 
-  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)); // 模拟异步操作
+    }
   }
 
   openLoginModal() {