|
@@ -116,7 +116,8 @@
|
|
|
// 选择单词
|
|
|
|
|
|
function checkIsRight() {
|
|
|
- if (data.answer == props.activeWord.name) {
|
|
|
+ let ans1 = props.activeWord.name.toLowerCase();
|
|
|
+ if (data.answer == ans1) {
|
|
|
data.result = true;
|
|
|
resultAudioPlayerD.play('right', 'bei')
|
|
|
// noticeBackDb()
|