|
@@ -4,7 +4,7 @@
|
|
|
<div class="right">
|
|
|
<div class="courseTop">
|
|
|
<div class="stepsNav">
|
|
|
- <el-breadcrumb separator-class="el-icon-arrow-right">
|
|
|
+ <el-breadcrumb separator-class="el-icon-arrow-right" v-if="!back">
|
|
|
<el-breadcrumb-item
|
|
|
:to="{
|
|
|
path:
|
|
@@ -83,6 +83,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ back:this.$route.query.back,
|
|
|
userid: this.$route.query.userid,
|
|
|
userid2: this.$route.query.userid2,
|
|
|
tid: this.$route.query.tid,
|
|
@@ -105,6 +106,7 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
retrunCourse() {
|
|
|
+ if (this.back) return this.$router.go(-1)
|
|
|
if(this.type == 3){
|
|
|
this.goTo(
|
|
|
"/checkToTest2?uid=" +
|