|
@@ -217,7 +217,9 @@
|
|
|
? "阶段模式"
|
|
|
: courseDetail.state == 2
|
|
|
? "任务模式"
|
|
|
- : "极简模式"
|
|
|
+ : courseDetail.state == 3
|
|
|
+ ? "极简模式"
|
|
|
+ : "AI模式"
|
|
|
}}
|
|
|
</div></span
|
|
|
>
|
|
@@ -242,7 +244,7 @@
|
|
|
<div class="jdAndTask">
|
|
|
<div>第{{ index + 1 }}阶段</div>
|
|
|
<div
|
|
|
- v-if="courseDetail.state == 2 || courseDetail.state == 3"
|
|
|
+ v-if="courseDetail.state == 2 || courseDetail.state == 3 || courseDetail.state == 4"
|
|
|
>
|
|
|
任务查看
|
|
|
</div>
|
|
@@ -1273,7 +1275,7 @@ export default {
|
|
|
this.screenType
|
|
|
);
|
|
|
}
|
|
|
- } else if (this.courseDetail.state == 3) {
|
|
|
+ } else if (this.courseDetail.state == 3 || this.courseDetail.state == 4) {
|
|
|
if (this.classList.length) {
|
|
|
this.goTo(
|
|
|
"/studystudentE3?type=" +
|
|
@@ -1330,7 +1332,7 @@ export default {
|
|
|
}).then(() => {
|
|
|
if(this.courseDetail.state == 1 || this.courseDetail.state == 2){
|
|
|
window.parent.postMessage({ tools: "openCourseUpdate",cid:this.id }, "*");
|
|
|
- }else if(this.courseDetail.state == 3){
|
|
|
+ }else if(this.courseDetail.state == 3 || this.courseDetail.state == 4){
|
|
|
window.parent.postMessage({ tools: "openCourseEUpdate",cid:this.id }, "*");
|
|
|
}
|
|
|
|
|
@@ -1432,7 +1434,7 @@ export default {
|
|
|
"&screenType=" +
|
|
|
this.screenType
|
|
|
);
|
|
|
- } else if (this.courseDetail.state == 3) {
|
|
|
+ } else if (this.courseDetail.state == 3 || this.courseDetail.state == 4) {
|
|
|
this.goTo(
|
|
|
"/studystudentE3?type=" +
|
|
|
i +
|