浏览代码

add querySelectorAll

csdn1233 3 月之前
父节点
当前提交
0eeabc86e5

+ 0 - 1
AIart-app/src/app/drawing/drawing.component.html

@@ -28,7 +28,6 @@
       <div class="tools-section">
         @for(tool of tools; track tool.id) {
         <ion-button fill="clear" [class.selected]="selectedTool === tool.id" (click)="selectTool(tool.id)">
-          <ion-icon [name]="tool.icon"></ion-icon>
           <span>{{tool.name}}</span>
         </ion-button>
         }

+ 44 - 1
AIart-app/src/app/interest-search/interest-search.component.ts

@@ -341,6 +341,24 @@ export class InterestSearchComponent implements OnInit {
 
   // 提交功能
   async submit() {
+    // 检查问题是否全部完成
+    const { completed, firstIncompleteIndex } = this.checkQuestionsCompleted();
+
+    if (!completed) {
+      // 创建并显示提示消息
+      const toast = document.createElement('ion-toast');
+      toast.message = '请完成所有问题';
+      toast.duration = 2000;
+      toast.position = 'top';
+      toast.color = 'warning';
+      document.body.appendChild(toast);
+      await toast.present();
+
+      // 滚动到第一个未完成的问题
+      this.scrollToQuestion(firstIncompleteIndex);
+      return;
+    }
+
     try {
       if (!this.questionnaire) {
         console.error("未加载问卷数据。");
@@ -354,7 +372,7 @@ export class InterestSearchComponent implements OnInit {
       // 创建一个数组保存选的 OptionId
       const answersArray: string[] = [];
 
-      // 遍历每个问题,获取用户选择的选��
+      // 遍历每个问题,获取用户选择的选
       for (const question of this.questionsWithOptions) {
         const selectedOptionId = this.answers[question.QuestionId];
         if (selectedOptionId) {
@@ -776,4 +794,29 @@ export class InterestSearchComponent implements OnInit {
       await toast.present();
     }
   }
+
+  // 添加检查问卷完整性的方法
+  private checkQuestionsCompleted(): { completed: boolean, firstIncompleteIndex: number } {
+    // 检查每个问题是否都有答案
+    for (let i = 0; i < this.questionsWithOptions.length; i++) {
+      const question = this.questionsWithOptions[i];
+      if (!this.answers[question.QuestionId]) {
+        return { completed: false, firstIncompleteIndex: i };
+      }
+    }
+    return { completed: true, firstIncompleteIndex: -1 };
+  }
+
+  // 添加滚动到指定问题的方法
+  private scrollToQuestion(index: number) {
+    setTimeout(() => {
+      const questionElements = document.querySelectorAll('.question-container');
+      if (questionElements[index]) {
+        questionElements[index].scrollIntoView({
+          behavior: 'smooth',
+          block: 'center'
+        });
+      }
+    }, 100);
+  }
 }

+ 13 - 1
AIart-prod/UML Presentation.md

@@ -560,4 +560,16 @@ package "问题解决管理" {
 用户 -- UC51
 用户 -- UC52
 @enduml
-```
+```
+
+```plantuml
+@startuml
+[开始] --> [显示问卷说明] --> [填写基本信息] --> [加载问卷问题]
+    --> [显示问卷问题] --> [选择答案] --> [保存进度?]
+    -->|是|--> [保存进度] --> [提交问卷]
+    -->|否|--> [提交问卷]
+    --> [验证所有问题是否已回答?]
+    -->|否|--> [提示用户完成所有问题] --> [返回显示问卷问题]
+    -->|是|--> [分析结果] --> [显示分析结果] --> [结束]
+@enduml
+```