|
|
@ -209,7 +209,8 @@ |
|
|
// 先提交所选答案 |
|
|
// 先提交所选答案 |
|
|
if (null != obj) { |
|
|
if (null != obj) { |
|
|
// 判断答题是否正确 |
|
|
// 判断答题是否正确 |
|
|
if (this.correct.toUpperCase() == obj.channel.slice(0, 1).toUpperCase()) { |
|
|
// if (this.correct.toUpperCase() == obj.channel.slice(0, 1).toUpperCase()) { |
|
|
|
|
|
if (this.correct.toUpperCase().includes(obj.channel.slice(0, 1).toUpperCase())) { |
|
|
// 控制选中答案单条显示对错 |
|
|
// 控制选中答案单条显示对错 |
|
|
this.$set(obj, 'choose', 'true'); |
|
|
this.$set(obj, 'choose', 'true'); |
|
|
isCorrect = 1 |
|
|
isCorrect = 1 |
|
|
|