page-publishsurvey.component_20241224002925.ts 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. import { Component, OnInit } from '@angular/core';
  2. import { Router } from '@angular/router';
  3. import { IonHeader,IonButton, IonList, IonListHeader, IonItem,IonContent, IonIcon, IonLabel, IonCardHeader,IonCardContent, IonTitle,IonCard, IonToolbar,IonInput,IonSearchbar, IonSegment, IonSegmentButton, IonSelect, IonSelectOption } from '@ionic/angular/standalone';
  4. import { CommonModule } from '@angular/common';
  5. import { FormsModule } from '@angular/forms'; // 导入 FormsModule
  6. import { HttpClient } from '@angular/common/http';
  7. @Component({
  8. selector: 'app-page-publishsurvey',
  9. templateUrl: './page-publishsurvey.component.html',
  10. styleUrls: ['./page-publishsurvey.component.scss'],
  11. standalone: true,
  12. imports: [
  13. IonHeader,IonToolbar,IonTitle,IonContent,IonSegment,IonSegmentButton,IonSelect,IonSelectOption,
  14. FormsModule,IonList, IonListHeader, IonItem,
  15. IonLabel,IonIcon,IonButton,IonCardContent,
  16. IonInput,IonSearchbar,IonCard,IonCardHeader,
  17. CommonModule,
  18. ]
  19. })
  20. export class PagePublishsurveyComponent implements OnInit {
  21. category: string = 'school'; // 默认类别
  22. surveyTitle: string = '';
  23. surveyLink: string = '';
  24. targetAudience: string = 'all'; // 默认面向对象
  25. societySurveyTitle: string = '';
  26. societySurveyLink: string = '';
  27. onCategoryChange() {
  28. console.log(`当前选择的类别: ${this.category}`);
  29. }
  30. publishSurvey() {
  31. console.log('发布学校问卷:');
  32. console.log(`标题: ${this.surveyTitle}`);
  33. console.log(`链接: ${this.surveyLink}`);
  34. console.log(`面向对象: ${this.targetAudience}`);
  35. // 这里可以添加逻辑将问卷发布到后端或其他处理
  36. const surveyData = {
  37. title: this.surveyTitle,
  38. link: this.surveyLink,
  39. audience: this.targetAudience,
  40. };
  41. this.http.post('http://127.0.0.1:4040/', surveyData).subscribe(
  42. response => {
  43. console.log('问卷已成功发布:', response);
  44. },
  45. error => {
  46. console.error('发布问卷时出错:', error);
  47. }
  48. );
  49. }
  50. publishSocietySurvey() {
  51. console.log('发布社会问卷:');
  52. console.log(`标题: ${this.societySurveyTitle}`);
  53. console.log(`链接: ${this.societySurveyLink}`);
  54. // 这里可以添加逻辑将问卷发布到后端或其他处理
  55. }
  56. constructor(private router: Router,private http: HttpClient) { }
  57. goTab1(){
  58. this.router.navigate(['tabs/page-publishsurvey']);
  59. }
  60. ngOnInit() {}
  61. }