|
|
@@ -5,7 +5,7 @@
|
|
|
<div class="container-left" :style="leftShow ? { width: 0 } : { width: '240px' }" v-if="!gotype">
|
|
|
<div class="container-left-top" @click="dialogVisible1 = !dialogVisible1">
|
|
|
<span>
|
|
|
- <img class="icon-img" :src="img11" alt="AI 应用" />AI通识课
|
|
|
+ <img class="icon-img" :src="img11" alt="AI 应用" />
|
|
|
<img v-if="dialogVisible1" class="up" :src="img3" alt="up" />
|
|
|
<img v-else class="up" :src="down" alt="down" />
|
|
|
</span>
|
|
|
@@ -64,6 +64,12 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="main" :style="leftShow ? { width: '100%' } : ''" v-if="activeIndex == 0" :class="[gotype ? 'liyuan' : '']">
|
|
|
+ <div class="pgb" v-if="gotype">
|
|
|
+ <div @click="backO" class="pgbL">
|
|
|
+ <img src="../assets/icon/backPage.svg" alt="">
|
|
|
+ <div>AI通识课</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
<!-- <BannerVue></BannerVue> -->
|
|
|
<CourseSelect></CourseSelect>
|
|
|
<AIExperience></AIExperience>
|
|
|
@@ -275,6 +281,9 @@ const copyEmail = () => {
|
|
|
console.error('复制失败:', error);
|
|
|
});
|
|
|
}
|
|
|
+const backO = () => {
|
|
|
+ window.location.href = `https://pbl.cocorobo.cn/pbl-teacher-table/dist/#/CourseCon?userid=${user.user.userid}&oid=${user.user.oid}&org=${user.user.org}&role=${user.user.role}&tType=${user.user.tType}`
|
|
|
+}
|
|
|
const show = () => {
|
|
|
console.log('show')
|
|
|
}
|
|
|
@@ -352,7 +361,7 @@ const show = () => {
|
|
|
.liyuan{
|
|
|
width: 100% !important;
|
|
|
height: 100vh !important;
|
|
|
- padding: 20px 15% !important;
|
|
|
+ padding: 20px 90px !important;
|
|
|
}
|
|
|
.iframe {
|
|
|
width: calc(100% - 240px);
|
|
|
@@ -394,4 +403,19 @@ const show = () => {
|
|
|
.fade-leave-to {
|
|
|
opacity: 0;
|
|
|
}
|
|
|
+.pgb{
|
|
|
+ /* font-family: PingFang SC; */
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 20px;
|
|
|
+ display: flex;align-items: center;
|
|
|
+ gap: 10px;
|
|
|
+ padding:20px 0px 0;
|
|
|
+ /* height: 23.8px; */
|
|
|
+ margin-bottom: 15px;
|
|
|
+}
|
|
|
+.pgbL{
|
|
|
+ display: flex;align-items: center;
|
|
|
+ gap: 10px;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
</style>
|