diff --git a/pages/therapist/orderDetail.vue b/pages/therapist/orderDetail.vue
index 6c25c06..513c4ed 100644
--- a/pages/therapist/orderDetail.vue
+++ b/pages/therapist/orderDetail.vue
@@ -232,11 +232,14 @@
{{contentVideo}}
diff --git a/pages/videoCircle/gDvideo.vue b/pages/videoCircle/gDvideo.vue
index b4cee34..11f22c0 100644
--- a/pages/videoCircle/gDvideo.vue
+++ b/pages/videoCircle/gDvideo.vue
@@ -113,11 +113,14 @@
{{contentVideo}}
diff --git a/pages/videoCircle/index.vue b/pages/videoCircle/index.vue
index 8988909..993e9c9 100644
--- a/pages/videoCircle/index.vue
+++ b/pages/videoCircle/index.vue
@@ -21,7 +21,7 @@
:muted="list.isplay"
:controls="false"
:http-cache="true"
- :autoplay="true"
+ :autoplay="false"
:page-gesture="false"
:show-fullscreen-btn="false"
:show-loading="false"
@@ -579,11 +579,12 @@
if(this.dataList[this.k].state == 'continue'){
this.isClick = true;
this.dataList[this.k].playIng = true
- uni.createVideoContext(this.dataList[this.k]._id+''+this.k,this).play();//暂停以后继续播放
+ uni.createVideoContext(this.dataList[this.k].id+''+this.k,this).play();//暂停以后继续播放
audo.play()
}
if(this.dataList[this.k].state == 'pause'){
- uni.createVideoContext(this.dataList[this.k]._id+''+this.k,this).pause();//暂停以后继续播放
+ uni.createVideoContext(this.dataList[this.k].id+''+this.k,this).pause();//暂停以后继续播放
+ audo.src = this.dataList[this.k].src;
audo.pause()
}
},