|
|
@@ -7,10 +7,10 @@
|
|
|
<div class="pec_header">
|
|
|
<div class="pec_h_left">
|
|
|
<!-- || tType == 1 -->
|
|
|
- <div @click.stop="back" class="backBtn" v-if="screenType != 2">
|
|
|
+ <div @click.stop="back" class="backBtn" v-if="screenType != 2 && noLogin != 2">
|
|
|
<img src="../../assets/icon/newIcon/return.svg" alt="" />
|
|
|
</div>
|
|
|
- <div @click.stop="gotoCourseManage" class="backBtn" v-if="screenType == 2 && tType == 1">
|
|
|
+ <div @click.stop="gotoCourseManage" class="backBtn" v-if="screenType == 2 && tType == 1 && noLogin != 2">
|
|
|
<img src="../../assets/icon/newIcon/return.svg" alt="" />
|
|
|
</div>
|
|
|
<div v-if="tcid" class="class-info-group">
|
|
|
@@ -153,6 +153,7 @@ export default {
|
|
|
courseType: this.$route.query.type,
|
|
|
screenType: this.$route.query.screenType,
|
|
|
tcid2: this.$route.query.tcid,
|
|
|
+ noLogin: this.$route.query.noLogin,
|
|
|
classList: [],
|
|
|
tcid: "",
|
|
|
className: "",
|
|
|
@@ -672,7 +673,7 @@ export default {
|
|
|
}
|
|
|
this.setPptIframe()
|
|
|
this.classList = res.data[2]
|
|
|
- if(!this.tcid2 && this.tType == '1'){
|
|
|
+ if(!this.tcid2 && this.tType == '1' && this.noLogin != 2){
|
|
|
this.$refs.selectTeachingClassDialogRef.open({classList:this.classList})
|
|
|
}
|
|
|
this.pageLoading = false;
|
|
|
@@ -1040,7 +1041,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
if (!this.userJson || !this.userJson.accountNumber) {
|
|
|
- let res = await this.ajax.get(this.$store.state.api + "selectUser", {
|
|
|
+ let res = await this.ajax.get(this.$store.state.api + "selectUser2", {
|
|
|
userid: this.$route.query.userid
|
|
|
});
|
|
|
this.userJson = res.data[0][0]
|