|
@@ -20,7 +20,7 @@
|
|
|
<div class="d-flex jc-center">
|
|
|
<dv-decoration-8 class="dv-dec-8" :color="['#568aea', '#000000']" />
|
|
|
<div class="title">
|
|
|
- <span class="title-text">学生五育大数据看板</span>
|
|
|
+ <span class="dash-title-text">学生五育大数据看板</span>
|
|
|
<dv-decoration-6 class="dv-dec-6" :reverse="true" :color="['#50e3c2', '#67a1e5']" />
|
|
|
</div>
|
|
|
<dv-decoration-8 class="dv-dec-8" :reverse="true" :color="['#568aea', '#000000']" />
|
|
@@ -178,6 +178,10 @@
|
|
|
|
|
|
<StudyDash v-else-if="activeMenuId === 'study'"></StudyDash>
|
|
|
<MoralDash v-else-if="activeMenuId === 'moral'"></MoralDash>
|
|
|
+ <!-- <ArtDash v-else-if="activeMenuId === 'art'"></ArtDash> -->
|
|
|
+ <div class="sport-box" style="width:100%;height:90vh;padding-top:25px;" v-show="activeMenuId === 'sport'">
|
|
|
+ <iframe src="https://ydztshow.cdwalker.com/app-health-100/smart-course" width="100%" height="100%" frameborder="0"></iframe>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
@@ -201,6 +205,7 @@ import StudentDetails from '../Student'
|
|
|
import BaseProgressBar from '@/components/dashboard/student/BaseProgressBar'
|
|
|
import StudyDash from '../study/StudyDash'
|
|
|
import MoralDash from '../moral/MoralDash'
|
|
|
+import ArtDash from '../Art.vue'
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
@@ -351,6 +356,7 @@ export default {
|
|
|
},
|
|
|
components: {
|
|
|
StudyDash,
|
|
|
+ ArtDash,
|
|
|
MoralDash,
|
|
|
countTo,
|
|
|
StudentDetails,
|
|
@@ -408,7 +414,7 @@ export default {
|
|
|
break;
|
|
|
case 'sport':
|
|
|
if (this.isTestView) {
|
|
|
- window.open('https://ydztshow.cdwalker.com/app-health-100/smart-course')
|
|
|
+ // window.open('https://ydztshow.cdwalker.com/app-health-100/smart-course')
|
|
|
this.activeMenuId = menu.id
|
|
|
} else {
|
|
|
this.noAuthModal = true
|
|
@@ -416,7 +422,7 @@ export default {
|
|
|
}
|
|
|
break;
|
|
|
case 'art':
|
|
|
- this.$tools.exitFullscreen()
|
|
|
+ // this.$tools.exitFullscreen()
|
|
|
this.$router.push('/artDashboard')
|
|
|
this.activeMenuId = menu.id
|
|
|
break;
|