diff --git a/pages/YNEduApp/exam/examinationDetails.vue b/pages/YNEduApp/exam/examinationDetails.vue
index f4e92d8..aaefb3e 100644
--- a/pages/YNEduApp/exam/examinationDetails.vue
+++ b/pages/YNEduApp/exam/examinationDetails.vue
@@ -232,7 +232,7 @@ export default {
diff --git a/pages/YNEduApp/prac/pracDetail.vue b/pages/YNEduApp/prac/pracDetail.vue
index da73e69..36beee0 100644
--- a/pages/YNEduApp/prac/pracDetail.vue
+++ b/pages/YNEduApp/prac/pracDetail.vue
@@ -112,11 +112,9 @@ export default {
isNew: true // 是否新练习
}
},
- onShow() {
- },
+ onShow() {},
onLoad(opt) {
opt = JSON.parse(opt.params)
- console.log('🚀 ~ onLoad ~ opt:', opt)
this.practiceId = opt.practiceId
this.title = opt.title
this.studyId = opt.studyId || '' // 学习id
@@ -139,7 +137,6 @@ export default {
},
success: res => {
res = res.data
- console.log('🚀 ~ handleSubmit ~ res:', res)
this.title = res.data.name
this.userName = res.data.userName
this.correctRate = res.data.trueRate || '0%'
@@ -194,7 +191,7 @@ export default {