课程赛事详情等

UI_2022-02-10
yujialong 3 years ago
parent 8967fb311f
commit ea0b858d06
  1. BIN
      src/assets/img/course1.png
  2. BIN
      src/assets/img/course2.png
  3. BIN
      src/assets/img/exts/ppt.png
  4. BIN
      src/assets/img/exts/video.png
  5. BIN
      src/assets/img/record7.png
  6. 50
      src/components/breadcrumb/index.vue
  7. 175
      src/pages/course/details/index.vue
  8. 143
      src/pages/info/details/index.vue
  9. 452
      src/pages/match/details/index.vue
  10. 23
      src/pages/record/details/index.vue
  11. 12
      src/pages/record/list/index.vue
  12. 204
      src/pages/station/preview/index.vue
  13. 36
      src/styles/common.scss

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 584 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 331 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 380 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 B

@ -0,0 +1,50 @@
<template>
<div class="breadcrumb">
<el-breadcrumb separator=">">
<el-breadcrumb-item v-for="(item, index) in pages" :key="index" :to="{ path: index == pages.length - 1 ? curRoute : route }">{{item}}</el-breadcrumb-item>
</el-breadcrumb>
</div>
</template>
<script>
export default {
props: {
data: {
type: String,
required: true
},
route: {
type: String,
default: 'list'
}
},
data() {
return {
pages: this.data.split('/'),
curRoute: this.$route.path
};
},
methods: {
update(data){
console.log(2222,data)
this.pages = data.split('/')
}
}
};
</script>
<style lang="scss" scoped>
.breadcrumb {
margin: 4px 0 16px;
/deep/.el-breadcrumb__item {
.is-link, .el-breadcrumb__separator {
font-weight: 400;
color: $main-color;
}
&:last-child {
.is-link {
color: #0B1D30;
}
}
}
}
</style>

@ -1,73 +1,67 @@
<template> <template>
<div style="padding: 24px"> <div class="wrap pb">
<el-card shadow="hover" class="m-b-20"> <breadcrumb :data="'课程学习/' + courseName"></breadcrumb>
<div class="flex-between"> <div class="flex">
<el-page-header @back="goBack" :content="'课程详情'"></el-page-header> <div class="cover" :class="{'is-word': showMask1}">
</div> <img v-if="coverUrl" :src="coverUrl" alt="" width="100%" height="100%">
</el-card> <template v-else-if="iframeSrc">
<el-card shadow="hover" class="m-b-20" style="background: none;"> <iframe class="inner fileIframe" id="fileIframe" :src="iframeSrc" frameborder="0"></iframe>
<div class="flex"> <template v-if="showMask">
<div class="cover" :class="{'is-word': showMask1}"> <div class="mask" style="width: 500px;height: 30px;top: 53px;right: 320px"></div>
<img v-if="coverUrl" :src="coverUrl" alt="" width="100%" height="100%"> <div class="mask" style="width: 175px;height: 30px;top: 53px;right: 5px"></div>
<template v-else-if="iframeSrc">
<iframe class="inner fileIframe" id="fileIframe" :src="iframeSrc" frameborder="0"></iframe>
<template v-if="showMask">
<div class="mask" style="width: 500px;height: 30px;top: 53px;right: 320px"></div>
<div class="mask" style="width: 175px;height: 30px;top: 53px;right: 5px"></div>
</template>
<template v-if="showMask1">
<div class="word-mask" style="height: 40px;"></div>
<div class="word-mask2" style="top: 55px;left: 28%;width: 44%;height: calc(100% - 80px);"></div>
</template>
<template v-if="showMask2">
<div class="excel-mask1" style="height: 48px;"></div>
</template>
</template> </template>
<div class="pdf inner" v-else-if="pdfSrc"> <template v-if="showMask1">
<p class="arrow"> <div class="word-mask" style="height: 40px;"></div>
<span @click="changePdfPage(0)" class="turn el-icon-arrow-left" :class="{grey: currentPage==1}"></span> <div class="word-mask2" style="top: 55px;left: 28%;width: 44%;height: calc(100% - 80px);"></div>
{{currentPage}} / {{pageCount}} </template>
<span @click="changePdfPage(1)" class="turn el-icon-arrow-right" :class="{grey: currentPage==pageCount}"></span> <template v-if="showMask2">
</p> <div class="excel-mask1" style="height: 48px;"></div>
<pdf </template>
class="pdf-wrap" </template>
:src="pdfSrc" <div class="pdf inner" v-else-if="pdfSrc">
:page="currentPage" <p class="arrow">
@num-pages="pageCount=$event" <span @click="changePdfPage(0)" class="turn el-icon-arrow-left" :class="{grey: currentPage==1}"></span>
@page-loaded="currentPage=$event" {{currentPage}} / {{pageCount}}
@loaded="loadPdfHandler"> <span @click="changePdfPage(1)" class="turn el-icon-arrow-right" :class="{grey: currentPage==pageCount}"></span>
</pdf> </p>
</div> <pdf
<div class="inner" v-else-if="playAuth"> class="pdf-wrap"
<div class="video_wid" id="player"></div> :src="pdfSrc"
</div> :page="currentPage"
@num-pages="pageCount=$event"
@page-loaded="currentPage=$event"
@loaded="loadPdfHandler">
</pdf>
</div>
<div class="inner" v-else-if="playAuth">
<div class="video_wid" id="player"></div>
</div> </div>
<div class="catalog flex-1"> </div>
<div class="list"> <div class="catalog">
<h4 class="title">{{courseName}}</h4> <div class="list">
<div class="desc-wrap"> <h4 class="title">{{courseName}}</h4>
<div class="desc" :class="{active: desShrink}" v-html="description"></div> <div class="desc-wrap">
<i class="arrow" :class="{active: desShrink}" v-if="description && description.length > 40"> <div class="desc" :class="{active: desShrink}" v-html="description"></div>
<span>...</span> <i class="arrow" :class="{active: desShrink}" v-if="description && description.length > 40">
<img src="@/assets/img/arrow-down.png" alt="" @click="desShrink = !desShrink"> <span>...</span>
</i> <img src="@/assets/img/arrow-down.png" alt="" @click="desShrink = !desShrink">
</div> </i>
<div class="chapters"> </div>
<template v-if="videoList && videoList.length"> <div class="chapters">
<div class="chapter" v-for="(item,index) in videoList" :key="index"> <template v-if="videoList && videoList.length">
<div class="chapterName">{{item.name}}</div> <div class="chapter" v-for="(item,index) in videoList" :key="index">
<div class="section" v-if="item.subsectionList.length"> <div class="chapterName">{{item.name}}</div>
<div v-for="(section,i) in item.subsectionList" :key="i" @click="preview(section, item.name)"> <div class="section" v-if="item.subsectionList.length">
<p class="sectionName" :class="{active: curLink === `${item.name}${section.name}`}">{{ section.name }}</p> <div v-for="(section,i) in item.subsectionList" :key="i" @click="preview(section, item.name)">
</div> <p class="sectionName" :class="{active: curLink === `${item.name}${section.name}`}">{{ section.name }}</p>
</div> </div>
</div> </div>
</template> </div>
</div> </template>
</div> </div>
</div> </div>
</div> </div>
</el-card> </div>
</div> </div>
</template> </template>
@ -78,6 +72,7 @@ import 'quill/dist/quill.core.css';
import 'quill/dist/quill.snow.css'; import 'quill/dist/quill.snow.css';
import 'quill/dist/quill.bubble.css'; import 'quill/dist/quill.bubble.css';
import bus from '@/libs/bus' import bus from '@/libs/bus'
import breadcrumb from '@/components/breadcrumb'
export default { export default {
data() { data() {
return { return {
@ -115,7 +110,7 @@ export default {
classId: state => state.classId, classId: state => state.classId,
}), }),
}, },
components: { pdf }, components: { pdf, breadcrumb },
mounted() { mounted() {
bus.$emit('setBg','none') bus.$emit('setBg','none')
this.insertScript() this.insertScript()
@ -267,10 +262,16 @@ $height: 700px;
height: $height !important; height: $height !important;
border: 0; border: 0;
} }
.cover{ .page {
img{ margin: 12px 0;
border-radius: 8px; .intro {
font-size: 16px;
color: #333;
line-height: 24px;
} }
}
.cover{
flex: 1;
&.is-word{ &.is-word{
overflow: hidden; overflow: hidden;
} }
@ -294,26 +295,29 @@ $height: 700px;
outline: none; outline: none;
} }
.catalog{ .catalog{
margin-left: 40px; width: 296px;
max-width: 500px; padding: 16px;
margin-left: 12px;
background-color: #252528;
.entry {
width: 100%;
padding: 10px 15px;
margin-bottom: 16px;
}
} }
.list{ .list{
height: $height; height: calc(700px - 82px) ;
overflow-y: auto; overflow-y: auto;
padding: 24px 16px;
background: #fff;
.title{ .title{
margin-bottom: 8px; margin-bottom: 11px;
color: rgba(0, 0, 0, 0.85); color: #fff;
font-size: 20px; font-size: 16px;
} }
.desc-wrap{ .desc-wrap{
max-width: 500px;
position: relative; position: relative;
.desc{ .desc{
font-size: 14px; font-size: 14px;
color: rgba(0, 0, 0, 0.65); color: #fff;
line-height: 22px; line-height: 22px;
@include mul-ellipsis(2); @include mul-ellipsis(2);
&.active{ &.active{
@ -355,21 +359,24 @@ $height: 700px;
.chapter{ .chapter{
margin-bottom: 20px; margin-bottom: 20px;
.chapterName{ .chapterName{
color: rgba(0, 0, 0, 0.85); color: #fff;
font-size: 16px; font-size: 14px;
} }
.section{ .section{
padding: 5px 15px; padding: 5px 15px;
margin-top: 8px; margin-top: 12px;
background: rgba(0, 0, 0, 0.02); background-color: #121214;
.sectionName{ .sectionName{
margin: 10px 0; margin: 12px 0;
font-size: 14px; font-size: 14px;
color: rgba(0, 0, 0, 0.65); color: #999;
cursor: pointer; cursor: pointer;
@include ellipsis; @include ellipsis;
img {
margin-right: 8px;
}
&.active{ &.active{
color: #9278FF; color: #fff;
} }
} }
} }

@ -1,45 +1,36 @@
<template> <template>
<div> <div class="wrap">
<div class="banner-con"></div> <breadcrumb :data="breadcrumbTitle"></breadcrumb>
<div style="padding: 24px"> <div class="page">
<div class="article"> <h6 class="title">{{title}}</h6>
<el-card shadow="hover" class="m-b-20"> <div class="metas">
<div class="flex-between"> <span>作者 {{author}}</span>
<el-page-header @back="goBack" :content="'资讯详情'"></el-page-header> <el-divider direction="vertical"></el-divider>
</div> <span>{{date.replace(' 00:00:00','')}}</span>
</el-card> <el-divider direction="vertical"></el-divider>
<el-card shadow="hover" class="m-b-20"> <span>浏览量{{viewCount}}</span>
<div class="page"> </div>
<h6 class="title">{{title}}</h6>
<div class="metas">
<span>作者 {{author}}</span>
<span>{{date.replace(' 00:00:00','')}}</span>
<span>浏览量{{viewCount}}</span>
</div>
<div class="cover"> <div class="cover">
<img :src="coverUrl" alt=""> <img :src="coverUrl" alt="">
</div>
<div class="content ql-editor" v-html="content"></div>
</div>
</el-card>
</div> </div>
<div class="content ql-editor" v-html="content"></div>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import { Loading } from 'element-ui'; import { Loading } from 'element-ui';
import 'quill/dist/quill.core.css'; import 'quill/dist/quill.core.css';
import 'quill/dist/quill.snow.css'; import 'quill/dist/quill.snow.css';
import 'quill/dist/quill.bubble.css'; import 'quill/dist/quill.bubble.css';
import breadcrumb from '@/components/breadcrumb'
export default { export default {
data() { data() {
return { return {
firstName: this.$route.query.first, firstName: this.$route.query.first,
secondName: this.$route.query.second, secondName: this.$route.query.second,
id: this.$route.query.id, id: this.$route.query.id,
breadcrumbTitle: this.$route.query.first + '/',
coverUrl: '', coverUrl: '',
author: '', author: '',
date: '', date: '',
@ -49,13 +40,13 @@ export default {
loadIns: null loadIns: null
} }
}, },
components: {
breadcrumb
},
mounted() { mounted() {
this.getData() this.getData()
}, },
methods: { methods: {
goBack() {
this.$router.back();
},
getData() { getData() {
this.loadIns = Loading.service() this.loadIns = Loading.service()
this.$get(`${this.api.getArticle}/${this.id}`) this.$get(`${this.api.getArticle}/${this.id}`)
@ -67,6 +58,9 @@ export default {
this.title = data.title this.title = data.title
this.content = data.content this.content = data.content
this.viewCount = data.viewCount this.viewCount = data.viewCount
this.breadcrumbTitle = this.firstName + '/' + this.title
this.$forceUpdate()
console.log(33, this.breadcrumbTitle)
this.loadIns.close() this.loadIns.close()
}) })
.catch(err => { .catch(err => {
@ -78,63 +72,50 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.banner-con{ .wrap {
width: 100%; .title{
height: 200px; margin-top: 30px;
background-image: url('../../../assets/img/match-banner.jpg'); text-align: center;
background-size: 100vw 200px; font-size: 28px;
background-repeat: no-repeat; font-weight: 500;
} color: #0B1D30;
.article{ }
//width: 70%; .metas{
margin: 0 auto; display: flex;
.page{ justify-content: center;
padding: 40px; align-items: center;
border-radius: 8px; padding-bottom: 32px;
background-color: #fff; margin: 16px 0 32px;
.title{ span{
text-align: center; display: inline-flex;
font-size: 24px;
font-weight: 500;
color: rgba(0, 0, 0, 0.85);
}
.metas{
display: flex;
justify-content: center;
align-items: center; align-items: center;
padding-bottom: 32px; color: #999;
margin: 16px 0 32px; font-size: 12px;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
span{
display: inline-flex;
align-items: center;
margin-left: 20px;
color: rgba(0, 0, 0, 0.45);
font-size: 12px;
img{
width: 18px;
margin-right: 5px;
}
}
}
.cover{
margin: 20px 0;
text-align: center;
img{ img{
width: 800px; width: 18px;
margin-right: 5px;
} }
} }
.el-divider {
.content{ margin: 0 16px;
line-height: 1.8; }
font-size: 16px; }
text-indent: 2em; .cover{
/deep/img{ margin: 20px 0;
display: block; text-align: center;
width: 600px; img{
margin-left: auto; width: 800px;
margin-right: auto; }
} }
.content{
line-height: 1.8;
font-size: 16px;
text-indent: 2em;
/deep/img{
display: block;
width: 600px;
margin-left: auto;
margin-right: auto;
} }
} }
} }

@ -1,47 +1,39 @@
<template> <template>
<div> <div class="wrap index">
<div class="banner-con" :style="{backgroundImage: coverUrlComputed}"></div> <div class="banner" :style="{backgroundImage: coverUrlComputed}"></div>
<div class="main"> <div class="center-wrap">
<div class="nav"> <breadcrumb :data="'全部赛事/' + title"></breadcrumb>
<div class="sub-title">赛事报名</div> <!-- <div class="nav">
<div class="sidebar"> <div class="sidebar">
<div class="item" :class="{ active: curType === item.id }" v-for="(item, index) in typeList" :key="index" @click="tabChange(item.id)">{{item.name}}</div> <div class="item" :class="{ active: curType === item.id }" v-for="(item, index) in typeList" :key="index" @click="tabChange(item.id)">{{item.name}}</div>
</div> </div>
</div> </div> -->
<div class="content">
<div class="content-wrap"> <div class="flex-between">
<el-card shadow="hover" style="margin: 24px 0"> <el-tabs v-model="curType">
<div class="flex-between"> <el-tab-pane v-for="(item, index) in typeList" :key="index" :label="item.name" :name="item.id"></el-tab-pane>
<el-page-header @back="goBack"></el-page-header> </el-tabs>
</div> <a class="status" :class="{wait: status == 0 || status == 4,signing: status == 2,signed: status == 1,finish: status == 3 || status == 5}" @click.stop="signup">{{ statusList[status] }}</a>
</el-card> </div>
<el-card shadow="hover"> <h6 class="title">{{title}}</h6>
<div class="content"> <div class="meta">最近编辑时间{{gmtModified}}</div>
<h6 class="title">{{title}}</h6> <div class="texts ql-editor" v-html="description" v-if="curType == 1"></div>
<div class="meta">最近编辑时间{{gmtModified}}</div> <div v-else>
<div class="right"> <ul class="progress" v-if="progress.length">
<p class="status" <li v-for="(item,index) in progress" :key="index">
:class="{wait: status == 0 || status == 4,signing: status == 2,signed: status == 1,finish: status == 3 || status == 5}" <i class="dot" :class="[item.status == 0 ? 'not' : (item.status == 1 ? 'ing' : 'done el-icon-circle-check')]"></i>
@click.stop="signup">{{ statusList[status] }}</p> <p class="name">{{item.title}}</p>
</div> <p class="desc">{{item.description}}</p>
<div class="texts ql-editor" v-html="description" v-if="curType == 1"></div> </li>
<div v-else> </ul>
<ul class="progress" v-if="progress.length"> </div>
<li v-for="(item,index) in progress" :key="index">
<i class="dot" :class="[item.status == 0 ? 'not' : (item.status == 1 ? 'ing' : 'done el-icon-circle-check')]"></i>
<p class="name">{{item.title}}</p>
<p class="desc">{{item.description}}</p>
</li>
</ul>
</div>
</div>
</el-card>
</div> </div>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import breadcrumb from '@/components/breadcrumb'
export default { export default {
name: 'matchdetail', name: 'matchdetail',
data() { data() {
@ -50,15 +42,15 @@ export default {
showSignup: this.$store.state.match.matchSignupStatus, showSignup: this.$store.state.match.matchSignupStatus,
coverUrl: '', coverUrl: '',
title: '', title: '',
curType: 1, curType: '1',
typeList: [ typeList: [
{ {
id: 1, id: '1',
icon: 'el-icon-document', icon: 'el-icon-document',
name: '竞赛信息' name: '竞赛信息'
}, },
{ {
id: 2, id: '2',
icon: 'el-icon-setting', icon: 'el-icon-setting',
name: '竞赛进展' name: '竞赛进展'
} }
@ -70,14 +62,19 @@ export default {
statusList: ["等待报名", "已报名", "立即报名", "报名截止", "比赛中", "已结束"], statusList: ["等待报名", "已报名", "立即报名", "报名截止", "比赛中", "已结束"],
}; };
}, },
components: {
breadcrumb
},
computed: {
coverUrlComputed() {
return this.coverUrl? 'url(' + this.coverUrl + ')' : "url('../../../assets/img/info-banner.png')"
}
},
mounted() { mounted() {
this.getData() this.getData()
this.getProgress() this.getProgress()
}, },
methods: { methods: {
goBack() { //
this.$router.back();
},
getData() { // getData() { //
this.$get(this.api.getContest + '/' + this.id).then(res => { this.$get(this.api.getContest + '/' + this.id).then(res => {
let data = res.contest let data = res.contest
@ -92,9 +89,6 @@ export default {
this.progress = res.contestProgressList this.progress = res.contestProgressList
}).catch(err => {}); }).catch(err => {});
}, },
tabChange(index){ //
this.curType = index
},
signup(){ // signup(){ //
if (this.status == 2) { if (this.status == 2) {
let data = { let data = {
@ -106,254 +100,190 @@ export default {
}).catch(res => {}) }).catch(res => {})
} }
} }
},
computed: {
coverUrlComputed() {
return this.coverUrl? 'url(' + this.coverUrl + ')' : "url('../../../assets/img/info-banner.png')"
}
} }
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.banner-con{ .banner{
width: 100%; width: 100%;
height: 400px; height: 400px;
// background-image: url('../../../assets/img/info-banner.png');
background-size: 100vw 400px; background-size: 100vw 400px;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
.main{ .main .center-wrap {
display: flex; margin-top: 30px;
justify-content: center; }
align-items:flex-start; .content{
padding-bottom: 40px; position: relative;
.nav{ padding: 20px 40px;
width: 220px; margin-top: 30px;
border-radius: 8px; background-color: #fff;
overflow: hidden; .title{
margin-top: -44px; width: 67%;
.sub-title{ margin: 0 auto;
line-height: 88px; font-size: 28px;
color: #fff; text-align: center;
font-size: 24px; color: #0B1D30;
text-align: center; }
background: #9076FF; .meta{
padding: 16px 0;
font-size: 12px;
color: #999;
text-align: center;
}
.status {
padding: 0 23px;
line-height: 34px;
font-size: 14px;
color: #fff;
background-color: #52C41A;
border-radius: 4px;
cursor: pointer;
&.wait {
background-color: #FAAD14;
} }
/deep/.sidebar{ &.signing {
background-color: #fff; background-color: #9076FF;
.item{ }
padding: 15px 0; &.signed {
color: rgba(0,0,0,.85); background-color: #52C41A;
font-size: 18px; }
text-align: center; &.finish {
cursor: pointer; background-color: #ccc;
&.active{
color: #9076FF;
}
&:hover{
background-color: #f4f1ff;
}
}
} }
} }
.content-wrap{ .texts{
width: 950px; margin: 20px 0 50px;
margin-left: 40px; font-size: 16px;
@media(max-width: 1300px){ line-height: 1.6;
width: 700px; text-indent: 2em;
overflow: hidden;
/deep/img{
max-width: 100%;
} }
}
/deep/.el-page-header__left::after{ .progress{
width: 0; position: relative;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 50px 0;
margin: 40px 0 20px;
&:before{
content: '';
position: absolute;
left: 413px;
width: 1px;
height: 100%;
background-color: #E6E6E6;
@media(max-width: 1300px){
left: 289px;
}
} }
li{
.content{
position: relative; position: relative;
padding: 20px 40px; display: inline-flex;
background-color: #fff; align-items: center;
border-radius: 8px; width: 90%;
margin-bottom: 40px;
.dot{
position: absolute;
left: 366px;
width: 13px;
height: 13px;
background-color: #fff;
.title{ &.not{
width: 67%; border-radius: 50%;
margin: 0 auto; background-color: #fff;
font-size: 24px; border: 1px solid #cb221c;
text-align: center; }
color: rgba(0, 0, 0, 0.85); &.ing{
} width: 13px;
.meta{ height: 13px;
padding: 16px 0; padding: 1px;
font-size: 12px; border: 1px solid #cb221c;
color: rgba(0, 0, 0, 0.45); border-radius: 50%;
text-align: center; background-color: #cb221c;
} background-clip: content-box;
.right{ }
padding: 16px 0 32px; &.done{
border-bottom: 1px solid rgba(0, 0, 0, 0.06); left: 365px;
display: flex; color: #cb221c;
flex-direction: column; font-size: 16px;
justify-content: center; }
align-items: flex-end; @media(max-width: 1300px){
flex: 1; left: 254px;
.status { &.done{
padding: 0 15px; left: 253px;
line-height: 32px;
font-size: 12px;
color: #fff;
background-color: #52C41A;
border-radius: 4px;
cursor: pointer;
&.wait {
background-color: #FAAD14;
}
&.signing {
background-color: #9076FF;
}
&.signed {
background-color: #52C41A;
}
&.finish {
background-color: rgba(0, 0, 0, .45);
} }
} }
} }
.texts{ .name{
margin: 20px 0 50px; width: 43%;
font-size: 16px; font-size: 24px;
line-height: 1.6; color: rgba(0, 0, 0, 0.85);
text-indent: 2em;
overflow: hidden;
/deep/img{
max-width: 100%;
}
} }
.progress{ .desc{
position: relative; position: relative;
display: flex; padding: 24px 30px;
justify-content: center; text-align: center;
align-items: center; color: rgba(0, 0, 0, 0.85);
flex-direction: column; font-size: 16px;
padding: 50px 0; background-color: #fff;
margin: 40px 0 20px; border: 1px solid #E6E6E6;
border-radius: 8px;
&:before{ &:before{
content: ''; content: '';
z-index: 2;
position: absolute; position: absolute;
left: 413px; top: 28px;
width: 1px; left: -16px;
height: 100%; border: 8px solid transparent;
background-color: #E6E6E6; border-right-color: #fff;
@media(max-width: 1300px){
left: 289px;
}
} }
li{ &:after{
position: relative; content: '';
display: inline-flex; z-index: 1;
align-items: center; position: absolute;
width: 90%; top: 27px;
margin-bottom: 40px; left: -18px;
.dot{ border: 9px solid transparent;
position: absolute; border-right-color: #E6E6E6;
left: 366px; }
width: 13px; }
height: 13px; &:nth-child(even){
background-color: #fff; flex-direction: row-reverse;
.name{
&.not{ margin-left: 16%;
border-radius: 50%; text-align: left;
background-color: #fff; }
border: 1px solid #cb221c; .desc{
} &:before{
&.ing{ left: auto;
width: 13px; right: -16px;
height: 13px; border: 8px solid transparent;
padding: 1px; border-left-color: #fff;
border: 1px solid #cb221c;
border-radius: 50%;
background-color: #cb221c;
background-clip: content-box;
}
&.done{
left: 365px;
color: #cb221c;
font-size: 16px;
}
@media(max-width: 1300px){
left: 254px;
&.done{
left: 253px;
}
}
}
.name{
width: 43%;
font-size: 24px;
color: rgba(0, 0, 0, 0.85);
}
.desc{
position: relative;
padding: 24px 30px;
text-align: center;
color: rgba(0, 0, 0, 0.85);
font-size: 16px;
background-color: #fff;
border: 1px solid #E6E6E6;
border-radius: 8px;
&:before{
content: '';
z-index: 2;
position: absolute;
top: 28px;
left: -16px;
border: 8px solid transparent;
border-right-color: #fff;
}
&:after{
content: '';
z-index: 1;
position: absolute;
top: 27px;
left: -18px;
border: 9px solid transparent;
border-right-color: #E6E6E6;
}
}
&:nth-child(even){
flex-direction: row-reverse;
.name{
margin-left: 16%;
text-align: left;
}
.desc{
&:before{
left: auto;
right: -16px;
border: 8px solid transparent;
border-left-color: #fff;
}
&:after{
left: auto;
right: -18px;
border: 9px solid transparent;
border-left-color: #E6E6E6;
}
}
}
&:nth-child(odd){
.name{
margin-right: 16%;
text-align: right;
}
} }
&:last-child{ &:after{
margin-bottom: 0; left: auto;
right: -18px;
border: 9px solid transparent;
border-left-color: #E6E6E6;
} }
} }
} }
&:nth-child(odd){
.name{
margin-right: 16%;
text-align: right;
}
}
&:last-child{
margin-bottom: 0;
}
} }
} }
} }

@ -1,16 +1,15 @@
<template> <template>
<!--实验情况--> <!--实验情况-->
<div style="padding: 24px"> <div class="wrap">
<el-card shadow="hover" class="m-b-20"> <breadcrumb data="实验记录/实验情况"></breadcrumb>
<div class="flex-between"> <div class="page">
<el-page-header @back="goBack" :content="'实验情况'"></el-page-header>
</div>
</el-card>
<el-card shadow="hover" class="m-b-20">
<div class="flex-between m-b-20"> <div class="flex-between m-b-20">
<div></div> <h6 class="l-title">
<img src="@/assets/img/record7.png" alt="">
实验报告列表
</h6>
<div> <div>
<el-button round type="primary" @click="exportData">导出</el-button> <el-button type="primary" @click="exportData">导出数据</el-button>
</div> </div>
</div> </div>
<el-table <el-table
@ -49,7 +48,7 @@
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
></el-pagination> ></el-pagination>
</div> </div>
</el-card> </div>
</div> </div>
</template> </template>
@ -57,6 +56,7 @@
import axios from 'axios' import axios from 'axios'
import Setting from "@/setting"; import Setting from "@/setting";
import util from "@/libs/util"; import util from "@/libs/util";
import breadcrumb from '@/components/breadcrumb'
export default { export default {
data() { data() {
return { return {
@ -70,6 +70,9 @@ export default {
token:util.local.get(Setting.tokenKey), token:util.local.get(Setting.tokenKey),
} }
}, },
components: {
breadcrumb
},
mounted() { mounted() {
this.getData(); this.getData();
}, },

@ -50,7 +50,7 @@
:value="item.cid" :value="item.cid"
></el-option> ></el-option>
</el-select> </el-select>
<el-button style="width: 88px;margin-left: 20px;" type="primary" @click="exportData">导出数据</el-button> <el-button style="margin-left: 20px;" type="primary" @click="exportData">导出数据</el-button>
</li> </li>
</ul> </ul>
</div> </div>
@ -156,16 +156,6 @@ export default {
padding: 16px; padding: 16px;
margin-bottom: 20px; margin-bottom: 20px;
background: #fff; background: #fff;
.l-title {
display: flex;
align-items: center;
margin-bottom: 20px;
font-size: 16px;
font-weight: 400;
img {
margin-right: 5px;
}
}
} }
.overview { .overview {
.nums { .nums {

@ -1,90 +1,83 @@
<template> <template>
<div style="padding: 24px"> <div class="wrap">
<el-card shadow="hover" class="m-b-20"> <breadcrumb :data="'实验台/' + curriculumName"></breadcrumb>
<div class="flex-between"> <div class="flex">
<el-page-header @back="goBack" :content="curriculumName"></el-page-header> <div class="cover" :class="{'is-word': showMask1}">
</div> <!--实验台不显示课程封面-->
</el-card> <img v-if="coverUrl" :src="coverUrl" alt="" width="100%" height="100%">
<el-card shadow="hover" class="m-b-20" style="background: none;"> <template v-else-if="iframeSrc">
<div class="flex"> <iframe class="inner fileIframe" id="fileIframe" :src="iframeSrc" frameborder="0"></iframe>
<div class="cover" :class="{'is-word': showMask1}"> <template v-if="showMask">
<!--实验台不显示课程封面--> <div class="mask" style="width:100%;background: #393A3D;height: 30px;top: 53px;"></div>
<img v-if="coverUrl" :src="coverUrl" alt="" width="100%" height="100%"> <div class="mask" style="width:100%;background: #393A3D;height: 30px;top: 53px;"></div>
<template v-else-if="iframeSrc">
<iframe class="inner fileIframe" id="fileIframe" :src="iframeSrc" frameborder="0"></iframe>
<template v-if="showMask">
<div class="mask" style="width:100%;background: #393A3D;height: 30px;top: 53px;"></div>
<div class="mask" style="width:100%;background: #393A3D;height: 30px;top: 53px;"></div>
</template>
<template v-if="showMask1">
<div class="word-mask" style="height: 40px;"></div>
<div class="word-mask2"
style="top: 55px;left: 28%;width: 44%;height: calc(100% - 80px);"></div>
</template>
<template v-if="showMask2">
<div class="excel-mask1" style="height: 48px;"></div>
</template>
</template> </template>
<div class="pdf inner" v-else-if="pdfSrc"> <template v-if="showMask1">
<p class="arrow"> <div class="word-mask" style="height: 40px;"></div>
<span @click="changePdfPage(0)" class="turn el-icon-arrow-left" <div class="word-mask2"
:class="{grey: currentPage==1}"></span> style="top: 55px;left: 28%;width: 44%;height: calc(100% - 80px);"></div>
{{ currentPage }} / {{ pageCount }} </template>
<span @click="changePdfPage(1)" class="turn el-icon-arrow-right" <template v-if="showMask2">
:class="{grey: currentPage==pageCount}"></span> <div class="excel-mask1" style="height: 48px;"></div>
</p> </template>
<div style='color:#393A3D;height: 30px; </template>
background: #393A3D;'></div> <div class="pdf inner" v-else-if="pdfSrc">
<pdf <p class="arrow">
class="pdf-wrap" <span @click="changePdfPage(0)" class="turn el-icon-arrow-left"
:src="pdfSrc" :class="{grey: currentPage==1}"></span>
:page="currentPage" {{ currentPage }} / {{ pageCount }}
@num-pages="pageCount=$event" <span @click="changePdfPage(1)" class="turn el-icon-arrow-right"
@page-loaded="currentPage=$event" :class="{grey: currentPage==pageCount}"></span>
@loaded="loadPdfHandler"> </p>
</pdf> <div style='color:#393A3D;height: 30px;background: #393A3D;'></div>
</div> <pdf
<div class="inner" v-else-if="playAuth"> class="pdf-wrap"
<div class="video_wid" id="player"></div> :src="pdfSrc"
</div> :page="currentPage"
@num-pages="pageCount=$event"
@page-loaded="currentPage=$event"
@loaded="loadPdfHandler">
</pdf>
</div> </div>
<div class="catalog flex-1"> <div class="inner" v-else-if="playAuth">
<div class="m-b-20"> <div class="video_wid" id="player"></div>
<el-button type="primary" @click="goSystem" style="width: 100%; height: 50px; font-size: 18px"> </el-button> </div>
</div> </div>
<div class="list"> <div class="catalog">
<h4 class="title">{{ courseName }}</h4> <el-button class="entry" type="primary" @click="goSystem"> </el-button>
<div class="chapters"> <div class="list">
<template v-if="chapterList.length"> <h4 class="title">{{ courseName }}</h4>
<div class="chapter" v-for="(item,index) in chapterList" :key="index"> <div class="chapters">
<div class="chapterName">{{ item.name }}</div> <template v-if="chapterList.length">
<div class="section" v-if="item.subsectionList.length"> <div class="chapter" v-for="(item,index) in chapterList" :key="index">
<div v-for="(section,i) in item.subsectionList" :key="i" @click="preview(section, item.name)"> <div class="chapterName">{{ item.name }}</div>
<p class="sectionName" :class="{active: curLink === `${item.name}${section.name}`}">{{ section.name }}</p> <div class="section" v-if="item.subsectionList.length">
</div> <p class="sectionName" :class="{active: curLink === `${item.name}${section.name}`}" v-for="(section,i) in item.subsectionList" :key="i" @click="preview(section, item.name)">
</div> <img v-if="section.fileType === 'pptx'" src="@/assets/img/exts/ppt.png" alt="">
<img v-else src="@/assets/img/exts/video.png" alt="">
{{ section.name }}
</p>
</div> </div>
</template> </div>
</div> </template>
</div> </div>
</div> </div>
</div> </div>
</el-card> </div>
<el-card shadow="hover" class="m-b-20"> <div class="page">
<h4 style="margin-bottom: 10px">课程简介</h4> <h6 class="l-title">
<p>{{ briefIntroduction }}</p> <img src="@/assets/img/course1.png" alt="">
</el-card> 课程简介
<el-card shadow="hover" class="m-b-20"> </h6>
<h4 style="margin-bottom: 10px">课程目标</h4> <p class="intro">{{ briefIntroduction }}</p>
<p>{{ teachingObjectives }}</p> </div>
</el-card> <div class="page">
<!-- <h6 class="l-title">
<el-card shadow="hover" class="m-b-20"> <img src="@/assets/img/course2.png" alt="">
<h4 style="margin-bottom: 10px">课程进度</h4> 课程目标
<el-progress :text-inside="true" :stroke-width="16" :percentage="70"></el-progress> </h6>
</el-card> <p class="intro">{{ teachingObjectives }}</p>
--> </div>
</div> </div>
</template> </template>
@ -97,9 +90,9 @@ import "quill/dist/quill.core.css";
import "quill/dist/quill.snow.css"; import "quill/dist/quill.snow.css";
import "quill/dist/quill.bubble.css"; import "quill/dist/quill.bubble.css";
import bus from "@/libs/bus"; import bus from "@/libs/bus";
import breadcrumb from '@/components/breadcrumb'
export default { export default {
components: { pdf }, components: { pdf, breadcrumb },
data() { data() {
return { return {
courseId: this.$route.query.courseId, courseId: this.$route.query.courseId,
@ -159,8 +152,8 @@ export default {
async getChapter() { async getChapter() {
let res = await this.$get(`${this.api.curriculumChapter}/${this.courseId}`); let res = await this.$get(`${this.api.curriculumChapter}/${this.courseId}`);
this.chapterList = res.chapterList; this.chapterList = res.chapterList;
console.log(res.chapterList);
if (this.chapterList.length && this.chapterList[0].subsectionList && this.chapterList[0].subsectionList.length) { if (this.chapterList.length && this.chapterList[0].subsectionList && this.chapterList[0].subsectionList.length) {
// console.log(this.chapterList[0].subsectionList[0]);
this.preview(this.chapterList[0].subsectionList[0], this.chapterList[0].name); this.preview(this.chapterList[0].subsectionList[0], this.chapterList[0].name);
} }
}, },
@ -328,7 +321,16 @@ $height: 700px;
height: $height !important; height: $height !important;
border: 0; border: 0;
} }
.page {
margin: 12px 0;
.intro {
font-size: 16px;
color: #333;
line-height: 24px;
}
}
.cover{ .cover{
flex: 1;
img{ img{
border-radius: 8px; border-radius: 8px;
} }
@ -355,17 +357,23 @@ $height: 700px;
outline: none; outline: none;
} }
.catalog{ .catalog{
margin-left: 40px; width: 296px;
padding: 16px;
margin-left: 12px;
background-color: #252528;
.entry {
width: 100%;
padding: 10px 15px;
margin-bottom: 16px;
}
} }
.list{ .list{
height: calc(700px - 70px) ; height: calc(700px - 82px) ;
overflow-y: auto; overflow-y: auto;
padding: 24px 16px;
background: #fff;
.title{ .title{
margin-bottom: 8px; margin-bottom: 11px;
color: rgba(0, 0, 0, 0.85); color: #fff;
font-size: 20px; font-size: 16px;
} }
.desc-wrap{ .desc-wrap{
position: relative; position: relative;
@ -413,21 +421,24 @@ $height: 700px;
.chapter{ .chapter{
margin-bottom: 20px; margin-bottom: 20px;
.chapterName{ .chapterName{
color: rgba(0, 0, 0, 0.85); color: #fff;
font-size: 16px; font-size: 14px;
} }
.section{ .section{
padding: 5px 15px; padding: 5px 15px;
margin-top: 8px; margin-top: 12px;
background: rgba(0, 0, 0, 0.02); background-color: #121214;
.sectionName{ .sectionName{
margin: 10px 0; margin: 12px 0;
font-size: 14px; font-size: 14px;
color: rgba(0, 0, 0, 0.65); color: #999;
cursor: pointer; cursor: pointer;
@include ellipsis; @include ellipsis;
img {
margin-right: 8px;
}
&.active{ &.active{
color: #9278FF; color: #fff;
} }
} }
} }
@ -529,5 +540,4 @@ $height: 700px;
margin: 0 auto; margin: 0 auto;
} }
} }
</style> </style>

@ -14,6 +14,9 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
.l-title {
margin-bottom: 0;
}
} }
::-webkit-scrollbar { ::-webkit-scrollbar {
@ -24,7 +27,7 @@
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
width: 5px; width: 5px;
border-radius: 6px; border-radius: 6px;
background: rgba(142, 123, 253, .75); background: $main-color;
} }
.main { .main {
.view { .view {
@ -36,6 +39,9 @@
&.no-pd { &.no-pd {
padding-top: 0; padding-top: 0;
} }
&.pb {
padding-bottom: 20px;
}
} }
.wrap-inner { .wrap-inner {
min-width: $min-width; min-width: $min-width;
@ -45,7 +51,18 @@
} }
.center-wrap { .center-wrap {
width: 1000px; width: 1000px;
margin: 40px auto 0; margin: 40px auto 20px;
}
}
.l-title{
display: flex;
align-items: center;
margin-bottom: 12px;
font-size: 14px;
color: #333;
img{
width: 24px;
margin-right: 5px;
} }
} }
.p-title { .p-title {
@ -94,9 +111,8 @@
.page { .page {
position: relative; position: relative;
padding: 24px; padding: 24px 16px;
background-color: #fff; background-color: #fff;
border-radius: 8px;
.tool { .tool {
display: flex; display: flex;
@ -168,18 +184,6 @@
.el-table{ .el-table{
border-radius: 4px; border-radius: 4px;
.cell{
font-size: 12px;
.el-checkbox{
&:before{
content: '全选';
margin-right: 5px;
color: #222326;
font-size: 12px;
opacity: 0;
}
}
}
th{ th{
background: #E8F0FF !important; background: #E8F0FF !important;
.cell{ .cell{

Loading…
Cancel
Save