|
@@ -175,7 +175,7 @@
|
|
|
</div>
|
|
|
<div class="three_bottom">
|
|
|
<!-- v-if="role == '1'" @click="get(item)"-->
|
|
|
- <div>授课</div>
|
|
|
+ <div @click="open(item.courseId)">授课</div>
|
|
|
<!-- <div @click="jump(item.courseId)" v-else>评课</div> -->
|
|
|
<!-- <div v-if="((item.userid == userid) ||
|
|
|
(item.course_teacher &&
|
|
@@ -510,6 +510,15 @@ export default {
|
|
|
return "";
|
|
|
}
|
|
|
},
|
|
|
+ open(cid){
|
|
|
+ window.parent.postMessage(
|
|
|
+ {
|
|
|
+ tools: "opencCscl",
|
|
|
+ cid: cid,
|
|
|
+ },
|
|
|
+ "*"
|
|
|
+ );
|
|
|
+ },
|
|
|
jump(cid) {
|
|
|
// window.open(
|
|
|
// "//pbl.cocorobo.cn/pbl-student-table/dist/#/courseDetail?courseId=" +
|