|
@@ -14,7 +14,9 @@
|
|
|
'&cid=' +
|
|
|
classId +
|
|
|
'&tType=' +
|
|
|
- tType
|
|
|
+ tType +
|
|
|
+ '&screenType=' +
|
|
|
+ screenType
|
|
|
)
|
|
|
"
|
|
|
>
|
|
@@ -46,12 +48,7 @@
|
|
|
v-for="(item, index) in courseType"
|
|
|
:key="index"
|
|
|
>
|
|
|
- <span
|
|
|
- style="
|
|
|
- color: #6c6c6c;
|
|
|
- "
|
|
|
- >{{ item + ":" }}</span
|
|
|
- >
|
|
|
+ <span style="color: #6c6c6c">{{ item + ":" }}</span>
|
|
|
<span
|
|
|
class="type_children"
|
|
|
v-for="(item2, index2) in courseTypeJson[item]"
|
|
@@ -60,9 +57,9 @@
|
|
|
>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="cType" style="font-size: 18px;color: #6c6c6c;">
|
|
|
+ <div class="cType" style="font-size: 18px; color: #6c6c6c">
|
|
|
<div>
|
|
|
- 创建者:<span style="color:#000;">{{
|
|
|
+ 创建者:<span style="color: #000">{{
|
|
|
courseDetail.username
|
|
|
}}</span>
|
|
|
</div>
|
|
@@ -70,7 +67,7 @@
|
|
|
协同人员:<span
|
|
|
v-for="(tname, tIndex) in Tname"
|
|
|
:key="tIndex"
|
|
|
- style="margin: 0 5px;color:#000;"
|
|
|
+ style="margin: 0 5px; color: #000"
|
|
|
>{{ tname }}</span
|
|
|
>
|
|
|
</div>
|
|
@@ -163,6 +160,7 @@ export default {
|
|
|
oid: this.$route.query.oid,
|
|
|
classId: this.$route.query.cid,
|
|
|
tType: this.$route.query.tType,
|
|
|
+ screenType: this.$route.query.screenType,
|
|
|
courseDetail: {},
|
|
|
aStudentName: [],
|
|
|
chapInfo: [],
|
|
@@ -229,7 +227,9 @@ export default {
|
|
|
"&cid=" +
|
|
|
this.classId +
|
|
|
"&tType=" +
|
|
|
- this.tType
|
|
|
+ this.tType +
|
|
|
+ "&screenType=" +
|
|
|
+ this.screenType
|
|
|
);
|
|
|
})
|
|
|
.catch((err) => {
|
|
@@ -648,5 +648,4 @@ export default {
|
|
|
.Tname {
|
|
|
margin-left: 40px;
|
|
|
}
|
|
|
-
|
|
|
</style>
|