|
@@ -62,7 +62,7 @@
|
|
|
<div class="table-button-box">
|
|
|
<p class="table-button-null"></p>
|
|
|
<p class="table-button-p"
|
|
|
- @click="goPage(3,scope.row.id)"
|
|
|
+ @click="goPage(3,scope.row.id,scope.row.hour,scope.row.minute,scope.row.second)"
|
|
|
>点击查看</p>
|
|
|
<p class="table-button-null"></p>
|
|
|
</div>
|
|
@@ -84,7 +84,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<!--<record-list-page v-if="pageType == 2"></record-list-page>-->
|
|
|
- <start-learning :infoId="infoId" v-if="pageType == 3"></start-learning>
|
|
|
+ <start-learning :infoId="infoId" :hour="hour" :minute="minute" :second="second" v-if="pageType == 3"></start-learning>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -129,6 +129,10 @@
|
|
|
},
|
|
|
//详情id
|
|
|
infoId:"",
|
|
|
+ //详情时-分-秒
|
|
|
+ hour:0,
|
|
|
+ minute:0,
|
|
|
+ second:0,
|
|
|
//页面返回参数判断
|
|
|
pageId:"",
|
|
|
}
|
|
@@ -144,7 +148,7 @@
|
|
|
},
|
|
|
methods: {
|
|
|
//页面切换
|
|
|
- goPage(type,id){
|
|
|
+ goPage(type,id,hour,minute,second){
|
|
|
if(type == 1){
|
|
|
this.pageType = 1;
|
|
|
this.getList();
|
|
@@ -152,6 +156,9 @@
|
|
|
this.pageType = 2;
|
|
|
}else if(type == 3){
|
|
|
this.infoId = id;
|
|
|
+ this.hour = hour;
|
|
|
+ this.minute = minute;
|
|
|
+ this.second = second;
|
|
|
this.pageId = 1;
|
|
|
this.pageType = 3;
|
|
|
}else if(type == 4){
|