Commit 47684d4c authored by linwenqing's avatar linwenqing

Merge branch 'fix-001' into test

parents 129ea8b5 71cf431c
......@@ -454,13 +454,13 @@ export default {
if (this.currentItem.question.answerType == 2) {
//多选
if (this.userAnswerIds.length == 0) {
this.userAnswerIds = item.id;
this.userAnswerIds = item.id + ',';
} else {
this.userAnswerIds = this.userAnswerIds + "," + item.id;
this.userAnswerIds = this.userAnswerIds + item.id + ",";
}
} else {
//单选
this.userAnswerIds = item.id;
this.userAnswerIds = item.id + ',';
}
}
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment