page-publishsurvey.component_20241223230330.ts 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. import { Component, OnInit } from '@angular/core';
  2. import { Router } from '@angular/router';
  3. import { IonHeader,IonButton, IonContent, IonIcon, IonItem, IonLabel, IonList,
  4. IonListHeader,IonCardHeader,IonCardTitle,IonCardContent, IonTitle,IonCard, IonToolbar,IonInput,IonSearchbar, IonSegment, IonSegmentButton, IonSelect, IonSelectOption } from '@ionic/angular/standalone';
  5. import { CommonModule } from '@angular/common';
  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. IonList,IonListHeader,IonItem,IonCardTitle,HttpClient,
  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/apps/DevServer/browser/survey', surveyData).subscribe(
  42. response => {
  43. console.log('问卷已成功发布:', response);
  44. // 发布成功后可以导航到心理普查页面
  45. this.router.navigate(['tabs/psysurvey']);
  46. },
  47. error => {
  48. console.error('发布问卷时出错:', error);
  49. }
  50. );
  51. }
  52. // publishSocietySurvey() {
  53. // console.log('发布社会问卷:');
  54. // console.log(`标题: ${this.societySurveyTitle}`);
  55. // console.log(`链接: ${this.societySurveyLink}`);
  56. // 这里可以添加逻辑将问卷发布到后端或其他处理
  57. // }
  58. constructor(private router: Router,private http: HttpClient) { }
  59. goTab1(){
  60. this.router.navigate(['tabs/tab1']);
  61. }
  62. ngOnInit() {}
  63. }