|
@@ -1,27 +1,11 @@
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
import {
|
|
|
- IonTextarea,
|
|
|
- IonCheckbox,
|
|
|
- IonList,
|
|
|
- IonButton,
|
|
|
- IonContent,
|
|
|
- IonHeader,
|
|
|
- IonInput,
|
|
|
- IonTitle,
|
|
|
- IonToolbar,
|
|
|
- IonItem,
|
|
|
- IonLabel,
|
|
|
- IonRadioGroup,
|
|
|
- IonRadio,
|
|
|
- IonDatetimeButton,
|
|
|
- IonDatetime,
|
|
|
- IonModal,
|
|
|
- IonAlert,
|
|
|
- IonBackButton,
|
|
|
- IonButtons
|
|
|
+ IonTextarea, IonCheckbox, IonList, IonButton, IonContent, IonHeader, IonInput, IonTitle,
|
|
|
+ IonToolbar, IonItem, IonLabel, IonRadioGroup, IonRadio, IonDatetimeButton, IonDatetime,
|
|
|
+ IonModal, IonAlert, IonBackButton, IonButtons,
|
|
|
} from '@ionic/angular/standalone';
|
|
|
import { CloudQuery, CloudObject, Pointer } from '../../lib/ncloud'; // 确保路径正确
|
|
|
-import { CommonModule } from '@angular/common'; // 导入 CommonModule
|
|
|
+import { CommonModule, DatePipe } from '@angular/common'; // 导入 CommonModule
|
|
|
import { FormsModule } from '@angular/forms'; // 导入 FormsModule
|
|
|
|
|
|
// 定义接口以确保类型安全
|
|
@@ -70,26 +54,10 @@ interface QuestionWithOptions extends Question {
|
|
|
templateUrl: './interest-search.component.html',
|
|
|
styleUrls: ['./interest-search.component.scss'],
|
|
|
standalone: true,
|
|
|
- imports: [
|
|
|
- IonTextarea,
|
|
|
- IonCheckbox,
|
|
|
- IonList,
|
|
|
- IonButton,
|
|
|
- IonContent,
|
|
|
- IonHeader,
|
|
|
- IonInput,
|
|
|
- IonTitle,
|
|
|
- IonToolbar,
|
|
|
- IonItem,
|
|
|
- IonLabel,
|
|
|
- IonRadioGroup,
|
|
|
- IonRadio,
|
|
|
- IonDatetimeButton,
|
|
|
- IonDatetime,
|
|
|
- IonModal,
|
|
|
- CommonModule,
|
|
|
- FormsModule,
|
|
|
- IonDatetime, IonModal, IonAlert, IonBackButton, IonButtons,
|
|
|
+ imports: [IonTextarea, IonCheckbox, IonList, IonButton, IonContent, IonHeader, IonInput,
|
|
|
+ IonTitle, IonToolbar, IonItem, IonLabel, IonRadioGroup, IonRadio, IonDatetimeButton,
|
|
|
+ IonDatetime, IonModal, CommonModule, FormsModule, IonDatetime, IonModal, IonAlert,
|
|
|
+ IonBackButton, IonButtons,
|
|
|
]
|
|
|
})
|
|
|
export class InterestSearchComponent implements OnInit {
|
|
@@ -104,6 +72,14 @@ export class InterestSearchComponent implements OnInit {
|
|
|
|
|
|
constructor() { }
|
|
|
|
|
|
+ // 定义方法,用于获取 <ion-datetime> 组件选择的值
|
|
|
+ onDateTimeChange(event: any) {
|
|
|
+ this.birthday = event.detail.value;
|
|
|
+ // // 使用DatePipe进行日期格式化,只保留年、月、日
|
|
|
+ // this.birthday = this.datePipe.transform(this.birthday, 'yyyy-MM-dd')!;
|
|
|
+ console.log('选择的日期为:', this.birthday);
|
|
|
+ }
|
|
|
+
|
|
|
alertButtons = ['确定'];
|
|
|
|
|
|
ngOnInit() {
|