@zykjcommon/questions 0.0.35 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.browserslistrc +1 -0
- package/dist/zykjcommon-questions.common.js +1330 -8879
- package/dist/zykjcommon-questions.css +1 -1
- package/dist/zykjcommon-questions.umd.js +1330 -8879
- package/dist/zykjcommon-questions.umd.min.js +5 -5
- package/package.json +1 -1
- package/src/components/questions/Question_Classify.vue +0 -16
package/package.json
CHANGED
|
@@ -169,22 +169,6 @@ export default {
|
|
|
169
169
|
let correct = this.questionInfo.answerMap.is_correct === '1' ? true : false
|
|
170
170
|
return correct
|
|
171
171
|
},
|
|
172
|
-
intervalFindEl(){
|
|
173
|
-
return new Promise((resolve,reject)=>{
|
|
174
|
-
console.log(this.$el,345);
|
|
175
|
-
debugger
|
|
176
|
-
if(this.$el){
|
|
177
|
-
resolve()
|
|
178
|
-
}else{
|
|
179
|
-
let interval = setInterval(()=>{
|
|
180
|
-
if(this.$el){
|
|
181
|
-
clearInterval(interval)
|
|
182
|
-
resolve()
|
|
183
|
-
}
|
|
184
|
-
},50)
|
|
185
|
-
}
|
|
186
|
-
})
|
|
187
|
-
},
|
|
188
172
|
parseLists(nv){
|
|
189
173
|
this.classify_question_info = nv.classify_question_info
|
|
190
174
|
let exam_options_data = nv.exam_options_data
|