diff --git a/src/components/markdown-preview/markdown-preview.vue b/src/components/markdown-preview/markdown-preview.vue
new file mode 100644
index 00000000..4520cdc6
--- /dev/null
+++ b/src/components/markdown-preview/markdown-preview.vue
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/course/components/talkingItem.vue b/src/pages/course/components/talkingItem.vue
index ce829139..2539c2ca 100644
--- a/src/pages/course/components/talkingItem.vue
+++ b/src/pages/course/components/talkingItem.vue
@@ -1,6 +1,6 @@
-
+
@@ -80,7 +80,7 @@
重新学
- 继续
+ 继续
@@ -90,7 +90,7 @@
-
+
@@ -108,7 +108,7 @@
-
+
@@ -157,7 +157,7 @@
-
+
@@ -228,6 +228,14 @@ const audioCacheObj = computed(() => storageStore.audioObj)
default: () => ({}),
type: Object
},
+ class: {
+ default:'',
+ type: String
+ },
+ id: {
+ default:'',
+ type: String
+ }
})
const { type, dataInfo, activeVoiceId, isPlaying, isLast, lastQuestionInfo} = toRefs(props)
@@ -402,6 +410,9 @@ const audioCacheObj = computed(() => storageStore.audioObj)
})
}
const showNextBtn = ref(true)
+ const showGoonBtn = computed(()=>{
+ return showNextBtn.value && [3, 6].indexOf(props.type) >= 0 && isLast.value && !isPlaying.value
+ })
const goOnGetQues = () => {
if(props.type === 5){
emit('nextQuestion', unref(dataInfo))