From 2dceb63d96e05876da7af207ff6752a97e8bcdbf Mon Sep 17 00:00:00 2001
From: yujialong <479214531@qq.com>
Date: Fri, 21 Apr 2023 14:48:06 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E9=AA=8C=E5=8F=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/index.js | 3 +
src/pages/course/list/index.vue | 20 +++-
src/pages/station/list/index.vue | 146 ++++++++++++++++++----------
src/pages/station/preview/index.vue | 5 +
src/setting.js | 2 +-
5 files changed, 124 insertions(+), 52 deletions(-)
diff --git a/src/api/index.js b/src/api/index.js
index 634a2a6..2425ef5 100644
--- a/src/api/index.js
+++ b/src/api/index.js
@@ -67,12 +67,15 @@ export default {
// 课程学习
pageConditionalQueryCourseByStudent: `occupationlab/occupationlab/theoreticalCourse/pageConditionalQueryCourseByStudent`,
+ collectCourse: `occupationlab/occupationlab/theoreticalCourse/collectCourse`,
listClassification: `occupationlab/occupationlab/theoreticalCourseClassification/pagingQuery`,
findByIdCourse: `occupationlab/occupationlab/theoreticalCourse/findById`,
playRecordSave: `occupationlab/occupationlab/playRecord/save`,
studentLoginPreCourse: `occupationlab/occupationlab/theoreticalCourse/studentLoginPreCourse`,
getRedisCache: `occupationlab/occupationlab/theoreticalCourse/getRedisCache`,
getSubsection: `occupationlab/occupationlab/theoreticalCourseSubsection/getSubsection`,
+ recentUse: `nakadai/nakadai/curriculum/recentUse`,
+ recordRecentUsage: `nakadai/nakadai/curriculum/recordRecentUsage`,
// 资讯
queryAllColumns: `occupationlab/occupationlab/information/column/queryAllColumns`, // 栏目树
diff --git a/src/pages/course/list/index.vue b/src/pages/course/list/index.vue
index 3fef552..ca29762 100644
--- a/src/pages/course/list/index.vue
+++ b/src/pages/course/list/index.vue
@@ -13,7 +13,7 @@
-
+
- 课程分类:
- 不限
- {{ item.classificationName }}
@@ -38,6 +38,9 @@
{{ item.pageviews }}
+
+
+
{{ item.schoolName }}
@@ -77,6 +80,10 @@ export default {
{
id: 0,
name: '共享课程'
+ },
+ {
+ id: 2,
+ name: '我的收藏'
}
],
form: {
@@ -109,7 +116,7 @@ export default {
},
mounted() {
// 登录后的课程才需要展示本校课程
- this.isTourist || this.tabs.push({
+ this.isTourist || this.tabs.splice(1, 0, {
id: 1,
name: '本校课程'
})
@@ -199,6 +206,12 @@ export default {
this.page = val;
this.getData();
},
+ // 收藏
+ collect(item) {
+ this.$post(`${this.api.collectCourse}?courseId=${item.id}&state=${item.collectionStatus ? 0 : 1}`).then(res => {
+ this.getData()
+ }).catch(res => {})
+ },
toDetail(id) {
this.$router.push(`/${this.isTourist ? 'preCourse' : 'course'}/details?id=${id}&source=${this.active}`);
}
@@ -369,6 +382,9 @@ export default {
color: #a9a9a9;
font-size: 12px;
}
+ .collect {
+ font-size: 20px;
+ }
&:hover {
box-shadow: 0px 5px 12px 4px rgba(142, 123, 253, 0.09), 0px 3px 6px 0px rgba(142, 123, 253, 0.12), 0px 1px 2px -2px rgba(142, 123, 253, 0.16);
img {
diff --git a/src/pages/station/list/index.vue b/src/pages/station/list/index.vue
index b3943f1..e995ffa 100644
--- a/src/pages/station/list/index.vue
+++ b/src/pages/station/list/index.vue
@@ -9,7 +9,11 @@
@@ -38,6 +43,17 @@ export default {
data() {
return {
keyword: "",
+ active: 0,
+ tabs: [
+ {
+ id: 0,
+ name: '实验课程'
+ },
+ {
+ id: 1,
+ name: '最近使用'
+ }
+ ],
curriculumList: []
}
},
@@ -46,15 +62,25 @@ export default {
},
methods: {
getschoolCourse() { // 获取课程列表
+ this.active ?
+ this.$post(this.api.recentUse, {
+ pageNum: 1,
+ pageSize: 100
+ }).then(({ page }) => {
+ this.curriculumList = page.records
+ }).catch(err => {}) :
this.$get(this.api.schoolCourse).then(res => {
this.curriculumList = res.data;
- }).catch(err => {
- console.log(err);
- });
+ }).catch(err => {})
},
goPreview(item) {
this.$router.push(`/station/preview?courseId=${item.cid}&curriculumName=${item.curriculumName}`);
},
+ // tab切换
+ tabChange(item) {
+ this.active = item.id
+ this.getschoolCourse()
+ },
}
};
@@ -93,61 +119,83 @@ export default {
}
}
+.tabs {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ .item {
+ padding: 0 20px;
+ margin-right: 16px;
+ font-size: 17px;
+ text-align: center;
+ color: #333;
+ line-height: 50px;
+ border-bottom: 3px solid transparent;
+ cursor: pointer;
+ &.active {
+ color: #007EFF;
+ border-color: #007EFF;
+ }
+ }
+}
.station {
min-height: calc(100vh - 520px);
background: url(../../../assets/img/station1.png) (top left)/auto no-repeat,
url(../../../assets/img/station2.png) bottom right/auto no-repeat;
.inner {
+ width: 1072px;
+ margin: 0 auto;
+ }
+ .curs {
display: flex;
flex-wrap: wrap;
- width: 1072px;
padding-top: 60px;
- margin: 0 auto;
- }
- .item {
- position: relative;
- padding: 0 10px;
- margin: 0 10px 40px;
- text-align: center;
- background-color: #fff;
- border-radius: 8px;
- cursor: pointer;
- &:hover {
- opacity: .9;
- }
- img {
- width: 215px;
- height: 118px;
- margin-top: -20px;
- border-radius: 12px;
- }
- .bottom {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 10px 5px;
- }
- .text {
- display: inline-flex;
- align-items: center;
- width: 130px;
- height: 40px;
- text-align: left;
- font-size: 12px;
- line-height: 1.6;
- overflow: hidden;
- span {
- @include mul-ellipsis(2);
+ .item {
+ position: relative;
+ padding: 0 10px;
+ margin: 0 10px 40px;
+ text-align: center;
+ background-color: #fff;
+ border-radius: 8px;
+ cursor: pointer;
+ &:hover {
+ opacity: .9;
+ }
+ img {
+ width: 215px;
+ height: 118px;
+ margin-top: -20px;
+ border-radius: 12px;
+ }
+ .bottom {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 10px 5px;
+ }
+ .text {
+ display: inline-flex;
+ align-items: center;
+ width: 130px;
+ height: 40px;
+ text-align: left;
+ font-size: 12px;
+ line-height: 1.6;
+ overflow: hidden;
+ span {
+ @include mul-ellipsis(2);
+ }
+ }
+ a {
+ padding: 0 8px;
+ line-height: 28px;
+ font-size: 14px;
+ color: #7A7A7A;
+ border-radius: 20px;
+ border: 1px solid #DADADA;
}
- }
- a {
- padding: 0 8px;
- line-height: 28px;
- font-size: 14px;
- color: #7A7A7A;
- border-radius: 20px;
- border: 1px solid #DADADA;
}
}
+
}
\ No newline at end of file
diff --git a/src/pages/station/preview/index.vue b/src/pages/station/preview/index.vue
index 2a4af58..9df0022 100644
--- a/src/pages/station/preview/index.vue
+++ b/src/pages/station/preview/index.vue
@@ -173,6 +173,7 @@ export default {
this.insertScript();
this.getData();
this.getStatus()
+ this.addRecord()
},
destroyed() {
// 记录播放时长
@@ -195,6 +196,10 @@ export default {
this.assessmentList = data.assessmentConfig;
this.systemIds = data.systemIds
},
+ // 记录最近使用
+ addRecord() {
+ this.$post(`${this.api.recordRecentUsage}?cid=${this.courseId}`).then(res => {}).catch(res => {})
+ },
// 查询是否过期
getStatus() {
this.$get(this.api.whetherToRenewTheFee, {
diff --git a/src/setting.js b/src/setting.js
index 156dc87..2ea8a70 100644
--- a/src/setting.js
+++ b/src/setting.js
@@ -28,7 +28,7 @@ if (isPro) {
uploadURL = `http://121.37.12.51/`
host = "http://121.37.12.51/"; // 测试服
// host = 'https://www.occupationlab.com/' // 正式服
- // host = "http://192.168.31.51:9000/"; // 榕
+ host = "http://192.168.31.151:9000/"; // 榕
// host = "http://192.168.31.116:9000/"; // 赓
}