|
@@ -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() {
|