|
@@ -6,9 +6,12 @@
|
|
|
<div class="mrIcon">
|
|
|
<img src="../../../../assets/icon/myReport/tIcon.png" alt="" />
|
|
|
</div>
|
|
|
- <div>人工智能教学模型</div>
|
|
|
+ <div>课堂互动模型</div>
|
|
|
+ </div>
|
|
|
+ <div class="modelTopRight">
|
|
|
+ <div class="modelButton">目标:科学思维</div>
|
|
|
+ <div class="modelButton1" @click="goToLearn">返回</div>
|
|
|
</div>
|
|
|
- <div class="modelButton">目标:科学思维</div>
|
|
|
</div>
|
|
|
|
|
|
<div class="sr_box">
|
|
@@ -458,6 +461,16 @@ export default {
|
|
|
console.error(err);
|
|
|
});
|
|
|
},
|
|
|
+ goToLearn() {
|
|
|
+ this.$router.push(
|
|
|
+ "/learnAna?userid=" +
|
|
|
+ this.userid +
|
|
|
+ "&oid=" +
|
|
|
+ this.oid +
|
|
|
+ "&org=" +
|
|
|
+ this.org
|
|
|
+ );
|
|
|
+ },
|
|
|
},
|
|
|
created() {
|
|
|
this.getMrEva();
|
|
@@ -627,9 +640,27 @@ export default {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
}
|
|
|
+.modelTopRight {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ flex-wrap: nowrap;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
.modelButton {
|
|
|
color: #409efe;
|
|
|
}
|
|
|
+.modelButton1 {
|
|
|
+ background: #409efe;
|
|
|
+ color: #fff;
|
|
|
+ width: 95px;
|
|
|
+ height: 35px;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 35px;
|
|
|
+ border-radius: 5px;
|
|
|
+ font-size: 14px;
|
|
|
+ cursor: pointer;
|
|
|
+ margin-left: 10px;
|
|
|
+}
|
|
|
.modelTopBox {
|
|
|
display: flex;
|
|
|
flex-direction: row;
|