wangxy 2 mesi fa
parent
commit
95148a4fb5

+ 1 - 1
pages/admin/Chengji/ksScoreShijuan.vue

@@ -184,7 +184,7 @@
 		}
 		if (qa.stTypeId == 3) {
 			// 判断题
-			if (qa.reply == '') {
+			if (qa.reply === '') {
 				reply = '未答'
 			} else  if (qa.reply == 0) {
 				reply = '错误'

+ 1 - 1
pages/admin/Kaoshi/exam.vue

@@ -419,7 +419,7 @@
 		}
 		if (qa.stTypeId == 3) {
 			// 判断题
-			if (qa.reply == '') {
+			if (qa.reply === '') {
 				reply = '未答'
 			} else  if (qa.reply == 0) {
 				reply = '错误'

+ 1 - 1
pages/admin/Lianxi/lianxi.vue

@@ -420,7 +420,7 @@
 		}
 		if (qa.stTypeId == 3) {
 			// 判断题
-			if (qa.reply == '') {
+			if (qa.reply === '') {
 				reply = '未答'
 			} else  if (qa.reply == 0) {
 				reply = '错误'

+ 1 - 1
pages/client/Chengji/ksScoreShijuan.vue

@@ -189,7 +189,7 @@
 		}
 		if (qa.stTypeId == 3) {
 			// 判断题
-			if (qa.reply == '') {
+			if (qa.reply === '') {
 				reply = '未答'
 			} else  if (qa.reply == 0) {
 				reply = '错误'

+ 2 - 2
pages/client/Chengji/lxScoreShijuan.vue

@@ -203,9 +203,9 @@
 		}
 		if (qa.stTypeId == 3) {
 			// 判断题
-			if (qa.reply == '') {
+			if (qa.reply === '') {
 				reply = '未答'
-			} else  if (qa.reply == 0) {
+			} else  if (qa.reply == 0 ) {
 				reply = '错误'
 			} else if (qa.reply == 1) {
 				reply = '正确'