|
@@ -82,7 +82,7 @@
|
|
|
<div @click="goToCourse(item.courseId)">编辑</div>
|
|
|
<div @click="get(item.courseId)">预览</div>
|
|
|
<!-- 项目进展 -->
|
|
|
- <div @click="getA(item.courseId)">管理</div>
|
|
|
+ <div @click="goToCourse2(item.courseId)">管理</div>
|
|
|
<div @click="jump(item.courseId)">评论</div>
|
|
|
|
|
|
<!-- <div v-if="groupA == '0'" @click="
|
|
@@ -283,6 +283,19 @@ export default {
|
|
|
}
|
|
|
// this.$router.push(path);
|
|
|
},
|
|
|
+ goToCourse2(cid){
|
|
|
+ this.$router.push(
|
|
|
+ "/studentAddCourse?cid=" +
|
|
|
+ cid +
|
|
|
+ "&userid=" +
|
|
|
+ this.userid +
|
|
|
+ "&oid=" +
|
|
|
+ this.oid +
|
|
|
+ "&org=" +
|
|
|
+ this.org +
|
|
|
+ "&type=2"
|
|
|
+ );
|
|
|
+ },
|
|
|
tableRowClassName({ row, rowIndex }) {
|
|
|
if ((rowIndex + 1) % 2 === 0) {
|
|
|
return "even_row";
|