Browse Source

feat.liao.3.2

19136808282 3 months ago
parent
commit
533276be02

+ 44 - 0
.history/soul-app/src/app/info-modal/info-modal.component_20241224103556.html

@@ -0,0 +1,44 @@
+<!-- 用户登录状态 -->
+<ion-card style="max-height: 400px; overflow-y: auto;">
+  <ion-card-header>
+    <ion-card-title>
+      用户名:{{currentUser?.get("username")}}
+    </ion-card-title>
+   </ion-card-header>
+<ion-card-content>
+  <ion-item>
+    <ion-label>姓名: {{ userData['realname'] }}</ion-label>
+  </ion-item>
+  <ion-item>
+    <ion-label>昵称: {{ userData['username'] }}</ion-label>
+  </ion-item>
+  <ion-item>
+    <ion-label>年龄: {{ userData['age'] }}</ion-label>
+  </ion-item>
+  <ion-item>
+    <ion-label>性别: {{ userData['gender'] }}</ion-label>
+  </ion-item>
+  <ion-item>
+    <ion-label>学校: {{ userData['school'] || '--' }}</ion-label>
+  </ion-item>
+  <ion-item>
+    <ion-label>学院: {{ userData['department'] || '--' }}</ion-label>
+  </ion-item>
+  <ion-item>
+    <ion-label>身份: {{ userData['identity'] || '--' }}</ion-label>
+  </ion-item>
+  <ion-item>
+    <ion-label>
+      {{ userData['identity'] === 'student' 
+        ? '学号:' + (userData['studentID'] || '--') 
+        : '工号:' + (userData['teacherID'] || '--') }}
+    </ion-label>
+  </ion-item>
+  <ion-item>
+    <ion-label>邮箱: {{ userData['email'] }}</ion-label>
+  </ion-item>
+  <ion-item>
+    <ion-label>手机号: {{ userData['account'] }}</ion-label>
+  </ion-item>
+</ion-card-content>
+</ion-card>

+ 58 - 0
.history/soul-app/src/app/page-psysurvey/page-psysurvey.component_20241224103358.ts

@@ -0,0 +1,58 @@
+import { CommonModule } from '@angular/common';
+import { Component, OnInit } from '@angular/core';
+import { Router } from '@angular/router';
+import { IonHeader,IonButton, IonContent, IonIcon, IonItem, IonLabel, IonList, 
+  IonListHeader,IonCardHeader,IonCardTitle,IonCardContent, IonTitle,IonCard, IonToolbar,IonInput,IonSearchbar } from '@ionic/angular/standalone';
+  import { HttpClient } from '@angular/common/http';
+  import { UserService } from '../user.service'; // 确保路径正确
+  import { FormsModule } from '@angular/forms'; // 导入 FormsModule
+import { CloudQuery } from 'src/lib/ncloud';
+
+
+  
+
+@Component({
+  selector: 'app-page-psysurvey',
+  templateUrl: './page-psysurvey.component.html',
+  styleUrls: ['./page-psysurvey.component.scss'],
+  standalone: true,
+  imports: [IonHeader,IonToolbar,IonTitle,IonContent,
+      IonList,IonListHeader,IonItem,IonCardTitle,FormsModule,
+      IonLabel,IonIcon,IonButton,IonCardContent,
+      IonInput,IonSearchbar,IonCard,IonCardHeader,
+      CommonModule
+    ]
+})
+export class PagePsysurveyComponent  implements OnInit {
+  surveys: any[] = []; // 存储问卷通知
+  filteredSurveys: any[] = []; // 存储过滤后的问卷
+  userApartment: string = '' ; // 当前用户的学院
+
+  constructor(private router: Router,private http: HttpClient,private userService: UserService) { }
+  goTab1(){
+    this.router.navigate(['tabs/tab1']);
+   }
+   goPublishSurvey(){
+    this.router.navigate(['tabs/page-publishsurvey'])
+   }
+
+   ngOnInit() {
+    // 动态获取当前用户的学院信息
+    let user = this.userService.getCurrentUser()
+      this.userApartment = user.get("department"); // 从用户数据中获取学院
+      this.getSurveys(); // 在获取到用户信息后获取问卷
+  }
+
+  async getSurveys() {
+      let query = new CloudQuery("Survey");
+      this.surveys = await query.find(); // 假设响应是问卷数组
+      this.filterSurveys(); // 过滤问卷
+  }
+  filterSurveys() {
+    this.filteredSurveys = this.surveys.filter(survey => {
+      return survey.get("audience") === this.userApartment || survey.get("audience") === 'all';
+    });
+  }
+  
+  
+}

+ 58 - 0
.history/soul-app/src/app/page-psysurvey/page-psysurvey.component_20241224103825.ts

@@ -0,0 +1,58 @@
+import { CommonModule } from '@angular/common';
+import { Component, OnInit } from '@angular/core';
+import { Router } from '@angular/router';
+import { IonHeader,IonButton, IonContent, IonIcon, IonItem, IonLabel, IonList, 
+  IonListHeader,IonCardHeader,IonCardTitle,IonCardContent, IonTitle,IonCard, IonToolbar,IonInput,IonSearchbar } from '@ionic/angular/standalone';
+  import { HttpClient } from '@angular/common/http';
+  import { UserService } from '../user.service'; // 确保路径正确
+  import { FormsModule } from '@angular/forms'; // 导入 FormsModule
+import { CloudQuery } from 'src/lib/ncloud';
+
+
+  
+
+@Component({
+  selector: 'app-page-psysurvey',
+  templateUrl: './page-psysurvey.component.html',
+  styleUrls: ['./page-psysurvey.component.scss'],
+  standalone: true,
+  imports: [IonHeader,IonToolbar,IonTitle,IonContent,
+      IonList,IonListHeader,IonItem,IonCardTitle,FormsModule,
+      IonLabel,IonIcon,IonButton,IonCardContent,
+      IonInput,IonSearchbar,IonCard,IonCardHeader,
+      CommonModule
+    ]
+})
+export class PagePsysurveyComponent  implements OnInit {
+  surveys: any[] = []; // 存储问卷通知
+  filteredSurveys: any[] = []; // 存储过滤后的问卷
+  userDepartment: string = '' ; // 当前用户的学院
+
+  constructor(private router: Router,private http: HttpClient,private userService: UserService) { }
+  goTab1(){
+    this.router.navigate(['tabs/tab1']);
+   }
+   goPublishSurvey(){
+    this.router.navigate(['tabs/page-publishsurvey'])
+   }
+
+   ngOnInit() {
+    // 动态获取当前用户的学院信息
+    let user = this.userService.getCurrentUser()
+      this.userDepartment = user.get("department"); // 从用户数据中获取学院
+      this.getSurveys(); // 在获取到用户信息后获取问卷
+  }
+
+  async getSurveys() {
+      let query = new CloudQuery("Survey");
+      this.surveys = await query.find(); // 假设响应是问卷数组
+      this.filterSurveys(); // 过滤问卷
+  }
+  filterSurveys() {
+    this.filteredSurveys = this.surveys.filter(survey => {
+      return survey.get("audience") === this.userDepartment || survey.get("audience") === 'all';
+    });
+  }
+  
+  
+}

+ 3 - 0
soul-app/src/app/info-modal/info-modal.component.html

@@ -21,6 +21,9 @@
   <ion-item>
     <ion-label>学校: {{ userData['school'] || '--' }}</ion-label>
   </ion-item>
+  <ion-item>
+    <ion-label>学院: {{ userData['department'] || '--' }}</ion-label>
+  </ion-item>
   <ion-item>
     <ion-label>身份: {{ userData['identity'] || '--' }}</ion-label>
   </ion-item>

+ 3 - 3
soul-app/src/app/page-psysurvey/page-psysurvey.component.ts

@@ -26,7 +26,7 @@ import { CloudQuery } from 'src/lib/ncloud';
 export class PagePsysurveyComponent  implements OnInit {
   surveys: any[] = []; // 存储问卷通知
   filteredSurveys: any[] = []; // 存储过滤后的问卷
-  userApartment: string = '' ; // 当前用户的学院
+  userDepartment: string = '' ; // 当前用户的学院
 
   constructor(private router: Router,private http: HttpClient,private userService: UserService) { }
   goTab1(){
@@ -39,7 +39,7 @@ export class PagePsysurveyComponent  implements OnInit {
    ngOnInit() {
     // 动态获取当前用户的学院信息
     let user = this.userService.getCurrentUser()
-      this.userApartment = user.get("apartment"); // 从用户数据中获取学院
+      this.userDepartment = user.get("department"); // 从用户数据中获取学院
       this.getSurveys(); // 在获取到用户信息后获取问卷
   }
 
@@ -50,7 +50,7 @@ export class PagePsysurveyComponent  implements OnInit {
   }
   filterSurveys() {
     this.filteredSurveys = this.surveys.filter(survey => {
-      return survey.get("audience") === this.userApartment || survey.get("audience") === 'all';
+      return survey.get("audience") === this.userDepartment || survey.get("audience") === 'all';
     });
   }