|
@@ -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);
|
|
|
+ }
|
|
|
}
|