alioss
yujialong 2 years ago
parent 183453fc00
commit c0bb57f72e
  1. 1
      src/api/index.js
  2. BIN
      src/assets/img/wechat-code.jpeg
  3. 6
      src/layouts/header/index.vue
  4. 15
      src/layouts/navbar/index.vue
  5. 5
      src/pages/info/list/index.vue
  6. 52
      src/pages/station/preview/index.vue
  7. 2
      src/setting.js

@ -24,6 +24,7 @@ export default {
curriculumGetSubsection: `nakadai/nakadai/curriculum/subsection/getSubsection`, // 根据小节id获取预览文件地址
getProjectBySystemId: 'occupationlab/occupationlab/projectManage/getProjectBySystemId',
getTheMostRecentlyRunProject: 'python/python/getTheMostRecentlyRunProject',
whetherToRenewTheFee: 'nakadai/nakadai/curriculum/whetherToRenewTheFee',
// 能力测评
canExperiment: `occupationlab/occupationlab/evaluationrecord/can_experiment`, // 查询是否能够开启实验

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

@ -164,9 +164,11 @@ $height: 64px;
position: absolute;
top: 0;
left: 40px;
display: flex;
align-items: center;
font-size: 28px;
color: #568DF2;
line-height: $height;
height: $height;
cursor: pointer;
img {
margin-right: 10px;
@ -226,7 +228,7 @@ $height: 64px;
border-radius: 6px;
}
}
@media (max-width: 1430px) {
@media (max-width: 1680px) {
.header {
.logo {
left: 20px;

@ -234,9 +234,20 @@ export default {
}
}
}
@media (max-width: 1430px) {
@media (max-width: 1680px) {
.nav {
left: 52%;
left: 55%;
& > li {
margin: 0 10px;
}
}
}
@media (max-width: 1380px) {
.nav {
left: 58%;
& > li {
padding: 0 10px;
}
}
}
</style>

@ -123,7 +123,6 @@ export default {
this.menuList = data
// ,
const historyId = this.historyId
console.log("🚀 ~ file: index.vue ~ line 122 ~ getData ~ historyId", historyId)
if (historyId) {
this.setColumnId('')
this.defaultIndex = historyId + ''
@ -132,7 +131,6 @@ export default {
//
data.length && this.getDeepId(data)
const id = this.deepId
console.log("🚀 ~ file: index.vue ~ line 133 ~ getData ~ id", id, data)
if (id) {
this.getContent(id)
this.defaultIndex = id + ''
@ -147,7 +145,6 @@ export default {
},
// id
getDeepId(data) {
console.log("🚀 ~ file: index.vue ~ line 148 ~ getDeepId ~ data", data)
data.map(e => {
if (e.children.length) {
this.getDeepId(e.children)
@ -280,7 +277,7 @@ export default {
}
}
.list-wrap{
flex: 1;
width: calc(100% - 180px);
margin-left: 24px;
.list{
li{

@ -43,7 +43,8 @@
</div>
</div>
<div class="catalog">
<a class="entry" @click="entry"></a>
<el-button v-if="!overdue" class="renew" type="primary" size="small" @click="showBuy">续费</el-button>
<a v-else class="entry" @click="entry"></a>
<div class="list">
<h4 class="title">{{ courseName }}</h4>
<div class="chapters">
@ -97,6 +98,14 @@
<el-button size="small" type="primary" @click="toSub"> </el-button>
</span>
</el-dialog>
<!-- 购买弹框 -->
<el-dialog title="温馨提示" :visible.sync="buyVisible" width="420px" center :close-on-click-modal="false">
<div class="buy">
<p class="tips">该课程订阅期限已到期若需要续费请扫码添加客服咨询</p>
<img src="@/assets/img/wechat-code.jpeg" alt="">
</div>
</el-dialog>
</div>
</template>
@ -148,7 +157,9 @@ export default {
projectVisible: false,
projects: [],
loading: false,
curProject: ''
curProject: '',
overdue: 0, //
buyVisible: false
};
},
computed: {
@ -159,7 +170,7 @@ export default {
mounted() {
this.insertScript();
this.getData();
this.getChapter();
this.getStatus()
},
destroyed() {
//
@ -182,10 +193,20 @@ export default {
this.assessmentList = data.assessmentConfig;
this.systemIds = data.systemIds
},
//
getStatus() {
this.$get(this.api.whetherToRenewTheFee, {
cid: this.courseId
}).then(({ isRenew }) => {
// 10
this.overdue = isRenew
this.getChapter()
}).catch(res => {})
},
async getChapter() {
let res = await this.$get(`${this.api.curriculumChapter}/${this.courseId}`);
this.chapterList = res.chapterList;
if (this.chapterList.length && this.chapterList[0].subsectionList && this.chapterList[0].subsectionList.length) {
if (this.overdue && this.chapterList.length && this.chapterList[0].subsectionList && this.chapterList[0].subsectionList.length) {
this.preview(this.chapterList[0].subsectionList[0], this.chapterList[0].name);
}
},
@ -207,6 +228,10 @@ export default {
document.body.removeChild(document.querySelector("#aliplayerScript"));
});
},
//
showBuy() {
this.buyVisible = true
},
transferType(ext) {
const suf = ext.toLowerCase()
if('jpg,jpeg,png,gif,svg,psd'.includes(suf)) return '图片'
@ -214,6 +239,8 @@ export default {
return suf
},
preview(row, chapterName) {
//
if (this.overdue) {
this.curLink = `${chapterName}${row.name}`; // +
this.playauth = "";
this.coverUrl = "";
@ -290,6 +317,9 @@ export default {
this.iframeSrc = res.previewUrl;
}).catch(err => {});
}
} else {
this.showBuy()
}
},
closeIframe() {
this.iframeSrc = "";
@ -447,6 +477,10 @@ $height: 700px;
padding: 16px;
margin-left: 12px;
background-color: #252528;
.renew {
width: 100%;
margin-bottom: 16px;
}
.entry {
display: block;
width: 100%;
@ -536,6 +570,16 @@ $height: 700px;
}
}
}
.buy {
text-align: center;
.tips {
margin-bottom: 10px;
font-size: 14px;
}
img {
width: 85%;
}
}
.el-image-viewer__wrapper{
transform: translateY(-10px);
transition: transform .5s;

@ -27,7 +27,7 @@ if (isPro) {
systemPath = `http://${location.hostname}:8093`
host = "http://121.37.12.51/"; // 测试服
// host = 'https://www.occupationlab.com/' // 正式服
// host = "http://192.168.31.151:9000/"; // 榕
host = "http://192.168.31.51:9000/"; // 榕
// host = "http://192.168.31.137:9000/"; // 赓
}

Loading…
Cancel
Save