1658 lines
38 KiB
Vue
1658 lines
38 KiB
Vue
<template>
|
||
|
||
<view
|
||
class="container commonPageBox commonDetailPage"
|
||
style="height: auto !important"
|
||
>
|
||
<!-- 公共组件-每个页面必须引入 -->
|
||
<public-module></public-module>
|
||
<z-nav-bar title="课程详情" bgColor="#5F8F7F" fontColor="#fff"></z-nav-bar>
|
||
|
||
<common-anchor-link
|
||
style="width: 100%"
|
||
baseHeight="200"
|
||
ref="commonAnchorLink"
|
||
:allDataList="allDataList"
|
||
titleKey="title"
|
||
dataListKey="courseList"
|
||
:titleStyle="{}"
|
||
:tabStyle="{
|
||
background: '#fff',
|
||
}"
|
||
>
|
||
<template slot="tabs" slot-scope="slotProps"> </template>
|
||
<template slot="labelSlot" slot-scope="slotProps">
|
||
<u-icon
|
||
v-if="slotProps.data.isBuy != 1 && (vip.type == 0 || vip.type == 2)"
|
||
class="editIcon"
|
||
name="lock-fill"
|
||
color="#aaa"
|
||
size="26"
|
||
style="display: inline-block; margin-left: 5rpx"
|
||
></u-icon>
|
||
</template>
|
||
|
||
<template slot="otherContent" slot-scope="slotProps">
|
||
<view
|
||
v-if="curriculumData.image"
|
||
:style="`height: auto !important;${goBuyTitle ? '' : ''}`"
|
||
>
|
||
<image
|
||
style="width: 100%"
|
||
:src="curriculumData.image"
|
||
mode="widthFix"
|
||
@click="previewImage(curriculumData.image)"
|
||
>
|
||
</image>
|
||
</view>
|
||
|
||
<view
|
||
v-else
|
||
class="headImage"
|
||
style="height: 400rpx; background-color: #f5f5f5"
|
||
>
|
||
</view>
|
||
|
||
<view
|
||
class="containerBg1"
|
||
:style="`${
|
||
curriculumData.content && curriculumData.content != ''
|
||
? 'padding:10rpx 0;'
|
||
: ''
|
||
}`"
|
||
>
|
||
<view class="course_info_box">
|
||
<view class="course_info">
|
||
<view class="flexbox course_title" v-if="curriculumData.id">
|
||
<text class="courseTitle title">{{
|
||
curriculumData.title
|
||
}}</text>
|
||
|
||
<!-- <view class="start_learn_btn PM_font">进入学习</view> -->
|
||
</view>
|
||
<view style="color: #b0b0b0; padding: 0 20rpx">
|
||
{{
|
||
cateList && cateList.length > 0
|
||
? `共${cateList.length}个目录`
|
||
: ""
|
||
}}
|
||
</view>
|
||
<view
|
||
class="containerBg"
|
||
v-if="curriculumData.content && curriculumData.content != ''"
|
||
>
|
||
<view class="prof">
|
||
<view style="padding: 0 20rpx">
|
||
<view
|
||
:class=""
|
||
style="width: calc(100% - 50rpx)"
|
||
v-html="curriculumData.content"
|
||
>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
<template slot="label" slot-scope="slotProps">
|
||
<view class="containerBg2" style="padding-top: 20rpx">
|
||
<view class="catalogueTitle chapter_title">
|
||
<view class="top">
|
||
<view class="line"></view>
|
||
<view class="left">
|
||
<text style="font-weight: blod" class="catalogue_title">{{
|
||
slotProps.data.title
|
||
}}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<template slot="contentList" slot-scope="slotProps">
|
||
<view class="containerBg2">
|
||
<view class="shiting_content">
|
||
<view class="catalogueList">
|
||
<view class="chapter_content">
|
||
<courseDescription
|
||
:isCondition="true"
|
||
:dataList="slotProps.dataList"
|
||
label="title"
|
||
>
|
||
<template slot="labelSlot" slot-scope="slotProps">
|
||
<view
|
||
:style="`${
|
||
slotProps.rowIndex < 3
|
||
? 'width:calc(100% - 100rpx);float:left;'
|
||
: 'width:100%;'
|
||
}`"
|
||
>
|
||
<text
|
||
:class="`${
|
||
slotProps.row.viewFlg == 1 ? 'aui-text-success' : ''
|
||
}`"
|
||
>{{ slotProps.row.title }}</text
|
||
>
|
||
</view>
|
||
|
||
<!-- <text v-if="slotProps.row.conditions!='03'">【试听】</text> -->
|
||
</template>
|
||
|
||
<template slot="leftSlot" slot-scope="slotProps">
|
||
<!-- {{ slotProps.row.bxType }} -->
|
||
<!-- <text v-if="slotProps.row.conditions!='03'">【试听】</text> -->
|
||
</template>
|
||
<template slot="rightSlot" slot-scope="slotProps">
|
||
<!-- {{ slotProps.row.bxType }} -->
|
||
|
||
<view> </view>
|
||
</template>
|
||
</courseDescription>
|
||
</view>
|
||
<view class="small_class_teaching_box">
|
||
<!-- <view class="small_class_teaching_top">
|
||
<view class="small_class_teaching_top_left">
|
||
<image src="@/static/icon/course_ic.png" mode="aspectFil" class="icon1"></image>
|
||
<text>小班教学</text>
|
||
</view>
|
||
<text>{{ curriculumInfo.remainingDays }}</text>
|
||
|
||
|
||
</view> -->
|
||
<view class="small_class_teaching_content">
|
||
<!-- <view class="top">
|
||
<view class="top_item" v-for="(v, i) in teachingList">
|
||
{{ v.title }}
|
||
|
||
|
||
</view>
|
||
|
||
|
||
</view> -->
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
</common-anchor-link>
|
||
|
||
<!-- <u-modal
|
||
:show="show"
|
||
:title="modalInfo.title"
|
||
:content="modalInfo.content"
|
||
showCancelButton
|
||
@confirm="hancleModalConfirm"
|
||
@cancel="hancleModalCancel"
|
||
></u-modal> -->
|
||
<common-select-goods
|
||
ref="commonSelectGoods"
|
||
:selectGoodsData="selectGoodsData"
|
||
:goodsList="goodsList"
|
||
:buyOptions="buyOptions"
|
||
:customButtonGroup1="customButtonGroup1"
|
||
@selectGoods="handleClickSelectGoods"
|
||
@onHandleClickBuy="
|
||
$refs.commonSelectGoods.close();
|
||
protocolShow = true;
|
||
"
|
||
></common-select-goods>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import courseDescription from "@/pages/component/commonComponents/list";
|
||
|
||
import $http from "@/config/requestConfig.js";
|
||
import { mapState } from "vuex";
|
||
export default {
|
||
components: {
|
||
courseDescription, //课程说明
|
||
},
|
||
// 监听页面滚动
|
||
onPageScroll(event) {
|
||
this.$refs.commonAnchorLink.pageScroll(event);
|
||
},
|
||
data() {
|
||
return {
|
||
isHideCourseInfo: true,
|
||
courseList: [],
|
||
showGoBuy: true,
|
||
protocolShow: false,
|
||
options: {},
|
||
percentage: 0,
|
||
selectGoodsData: {},
|
||
buyOptions: [
|
||
// {
|
||
// icon: 'chat',
|
||
// text: '客服'
|
||
// },
|
||
// {
|
||
// icon: 'shop',
|
||
// text: '店铺',
|
||
// // info: 2,
|
||
// infoBackgroundColor: '#007aff',
|
||
// infoColor: "#f5f5f5"
|
||
// },
|
||
// {
|
||
// icon: 'cart',
|
||
// text: '购物车',
|
||
// info: 2
|
||
// }
|
||
],
|
||
customButtonGroup1: [
|
||
{
|
||
with: 200,
|
||
text: "立即购买",
|
||
backgroundColor: "linear-gradient(90deg, #3AB3AE 0%, #117e4c 100%)",
|
||
color: "#fff",
|
||
},
|
||
],
|
||
relatedCoursesList: [], //相关课程
|
||
goodsList: [], //课程相关商品
|
||
curriculumData: {},
|
||
curriculumInfo: {},
|
||
fdButtonStyle: {
|
||
width: "120rpx",
|
||
"border-color": "$themeColor",
|
||
color: "$themeColor",
|
||
float: "right",
|
||
"margin-right": "20rpx",
|
||
"margin-left": "30rpx",
|
||
},
|
||
modalInfo: {},
|
||
vip: {},
|
||
|
||
show: false,
|
||
playData: {},
|
||
taiHuClassInfo: {},
|
||
searchValue: "",
|
||
goBuyTitle: "",
|
||
goBuyType: "",
|
||
description: "",
|
||
teachingList: [
|
||
{
|
||
title: "临床实践",
|
||
|
||
type: "02",
|
||
apiUrl: "app/phoneDoctor.do?getTaiHuToShine",
|
||
},
|
||
{
|
||
title: "学习问答",
|
||
type: "03",
|
||
oid: "8a9fb99809e4428888aad6b56a3096a6",
|
||
},
|
||
{
|
||
title: "学习心得",
|
||
|
||
type: "01",
|
||
},
|
||
{
|
||
title: "在线作业",
|
||
|
||
type: "04",
|
||
oid: "d0f47071c2194e94845fbb373d06f59d",
|
||
},
|
||
], // 一级分类标题1
|
||
cateList: [], // 一级分类标题1
|
||
twoCateList: [], // 二级分类标题
|
||
dataList: [], // 方剂标题
|
||
allDataList: [], // 方剂标题
|
||
currentStatusIndex: 0, // 当前选中的一级分类
|
||
currentCateIndex: 0, // 当前选中的一级分类
|
||
curTwoCateIndex: 0, // 当前选中的二级分类
|
||
searchList: [], // 搜索结果数组
|
||
showSearchList: false,
|
||
userMes: {}, // 用户信息
|
||
searchDisable: false, // 搜索不可用
|
||
limitShow: false,
|
||
limitTitle: "提示",
|
||
limitContent: "",
|
||
scrollViewHeight: 0,
|
||
urlList: {
|
||
curriculumInfo: "visitor/getSociologyCourseCatalogueInfo",
|
||
list: "visitor/getSociologyCourseInfo",
|
||
goodsList: "sociology/product/getProductListForCourse",
|
||
startStudyForMF: "sociology/course/startStudyForMF",
|
||
},
|
||
};
|
||
},
|
||
onLoad(options) {
|
||
this.options = options;
|
||
|
||
// this.getUserInfo()
|
||
// this.getCateList()
|
||
},
|
||
onHide() {
|
||
this.selectGoodsData = {};
|
||
this.protocolShow = false;
|
||
this.handleClickClose();
|
||
this.$refs.commonSelectGoods.close();
|
||
// this.showSearchList = false
|
||
// this.searchList = []
|
||
},
|
||
onUnload() {
|
||
this.selectGoodsData = {};
|
||
this.protocolShow = false;
|
||
this.$refs.commonSelectGoods.close();
|
||
// this.showSearchList = false
|
||
// this.searchList = []
|
||
},
|
||
computed: {
|
||
// ...mapState(["userInfo"]),
|
||
},
|
||
onShow() {
|
||
this.protocolShow = false;
|
||
|
||
this.$nextTick(() => {
|
||
this.getCourseDescriptionData();
|
||
});
|
||
|
||
// 也可以通过主题形式调用,如:
|
||
// this.$refs.uNotify.primary('Primary主题')
|
||
// 关闭 notify
|
||
// this.$refs.uNotify.close()
|
||
},
|
||
methods: {
|
||
handleClickGetVip() {
|
||
uni.navigateTo({
|
||
url: "/pages/mine/vip/index",
|
||
});
|
||
},
|
||
|
||
close() {
|
||
this.show = false;
|
||
},
|
||
getPercentage() {
|
||
console.log(this.cateList[this.currentCateIndex]);
|
||
if (this.cateList) {
|
||
return this.cateList[this.currentCateIndex]
|
||
? this.cateList[this.currentCateIndex].completion
|
||
: 0;
|
||
} else {
|
||
return 0;
|
||
}
|
||
},
|
||
handleClickSelectGoods(data) {
|
||
this.selectGoodsData = data;
|
||
this.$forceUpdate();
|
||
},
|
||
onHandleClickBuy(e) {
|
||
console.log("e at line 387:", e);
|
||
// if (e.index == 0) {
|
||
// this.handleClickClose();
|
||
// }
|
||
// if (e.index == 0) {
|
||
var mynavData = JSON.stringify({
|
||
goods: [this.selectGoodsData],
|
||
typeId: 0,
|
||
navTitle: this.options.navTitle,
|
||
title: this.options.title,
|
||
sourceType: "curriculum",
|
||
}); // 这里转换成 字符串
|
||
uni.navigateTo({
|
||
url: `/pages/goods/order/index?data=${mynavData}`,
|
||
});
|
||
// }
|
||
},
|
||
handleClickGoBuy() {},
|
||
handleClickClose() {
|
||
this.show = false;
|
||
this.goodsList = [];
|
||
this.selectGoodsData = {};
|
||
},
|
||
//获取相关关联课程商品
|
||
//获取相关关联课程商品
|
||
handleClickGetGoodsList(v) {
|
||
// console.log("data at line 313:", data);
|
||
|
||
if (v.type == 0) {
|
||
//免费
|
||
|
||
this.$http
|
||
.request({
|
||
url: this.urlList.startStudyForMF,
|
||
method: "POST",
|
||
data: {
|
||
catalogueId: v.id,
|
||
},
|
||
header: {
|
||
//默认 无 说明:请求头
|
||
"Content-Type": "application/json",
|
||
},
|
||
})
|
||
.then(async (res) => {
|
||
console.log("res at line 493:", res);
|
||
if (res.code == 0) {
|
||
this.getCourseDescriptionData();
|
||
// this.$commonJS.showToast("");
|
||
}
|
||
// if (res.productList.length > 0) {
|
||
// this.goodsList = res.productList;
|
||
// this.selectGoodsData = this.goodsList[0];
|
||
// this.$refs.commonSelectGoods.open();
|
||
// this.show = true;
|
||
// } else {
|
||
// this.$commonJS.showToast("此课程暂无购买方式");
|
||
// }
|
||
|
||
this.$forceUpdate();
|
||
});
|
||
} else {
|
||
if (v.type == 2) {
|
||
// 超v
|
||
|
||
if (this.goBuyType != 1) {
|
||
uni.showModal({
|
||
title: "提示",
|
||
content: "当前课程目录是超V专享,开通超V可观看",
|
||
confirmText: "好的",
|
||
showCancel: false,
|
||
});
|
||
return;
|
||
}
|
||
}
|
||
if (this.goBuyType == 0 || this.goBuyType == 2) {
|
||
this.$http
|
||
.request({
|
||
url: this.urlList.goodsList,
|
||
method: "POST",
|
||
data: {
|
||
id: v.id,
|
||
},
|
||
header: {
|
||
//默认 无 说明:请求头
|
||
"Content-Type": "application/json",
|
||
},
|
||
})
|
||
.then(async (res) => {
|
||
if (res.productList.length > 0) {
|
||
this.goodsList = res.productList;
|
||
this.selectGoodsData = this.goodsList[0];
|
||
this.$refs.commonSelectGoods.open();
|
||
this.show = true;
|
||
} else {
|
||
this.$commonJS.showToast("此课程暂无购买方式");
|
||
}
|
||
|
||
this.$forceUpdate();
|
||
});
|
||
}
|
||
}
|
||
},
|
||
hancleModalConfirm() {
|
||
var data = {
|
||
values: {
|
||
customerType: "D",
|
||
token: uni.getStorageSync("token"),
|
||
customerOid: uni.getStorageSync("customerOid"),
|
||
...this.taiHuClassInfo,
|
||
},
|
||
};
|
||
// $mars.progressBegin('申请中...');
|
||
// $mars.post(customerType, 'applyRelearn', data, function (ret) {
|
||
// api.hideProgress();
|
||
|
||
// fnLoadDataGrid();
|
||
// });
|
||
},
|
||
fnRelearn(oid, days, courseFee) {
|
||
//99和199课程复读一个月60三个月120; 299和399课程复读一个月80三个月180
|
||
//499和599课程复读一个月90三个月220; 699和799课程复读一个月100三个月248
|
||
var feeAs = [
|
||
[60, 120],
|
||
[80, 180],
|
||
[90, 220],
|
||
[100, 248],
|
||
];
|
||
var fee = 0;
|
||
if (courseFee < 206) {
|
||
fee = feeAs[0][days == 30 ? 0 : 1];
|
||
} else if (courseFee < 406) {
|
||
fee = feeAs[1][days == 30 ? 0 : 1];
|
||
} else if (courseFee < 606) {
|
||
fee = feeAs[2][days == 30 ? 0 : 1];
|
||
} else {
|
||
fee = feeAs[3][days == 30 ? 0 : 1];
|
||
}
|
||
this.modalInfo = {
|
||
title: "提示信息",
|
||
content:
|
||
"用户您好,该课程已到期,通过支付" +
|
||
fee +
|
||
"元,本门课程可获得" +
|
||
days +
|
||
"天延期学习时间,点击确认即完成自动扣费,感谢配合!",
|
||
};
|
||
|
||
this.taiHuClassInfo = {
|
||
taiHuClassOid: oid,
|
||
days: days,
|
||
fee: fee,
|
||
};
|
||
this.show = true;
|
||
// $aui.alert({
|
||
// title: ,
|
||
// content: '用户您好,该课程已到期,通过支付' + fee + '元,本门课程可获得' + days + '天延期学习时间,点击确认即完成自动扣费,感谢配合!',
|
||
// buttons: ['取消', '确认'],
|
||
// radius: 6,
|
||
// titleColor: '#ff3300',
|
||
// contColor: '#333',
|
||
// btnColor: ''
|
||
},
|
||
//课程详情
|
||
async gotoDetail(v, index) {
|
||
console.log("v at line 664:", v);
|
||
console.log(
|
||
this.cateList[this.currentCateIndex],
|
||
8888888888888888888888888,
|
||
);
|
||
|
||
// var result = await this.$commonJS.getCheckCourseStatus({
|
||
// oid: v.courseOid,
|
||
// });
|
||
// console.log("result at line 364:", result);
|
||
|
||
// if (result.buyFlg == 0 && v.conditions != "01") {
|
||
// this.$commonJS.showToast("请先购买课程");
|
||
// return;
|
||
// }
|
||
|
||
if (
|
||
this.cateList[this.currentCateIndex].isBuy == 1 ||
|
||
v.isAudition == 1 ||
|
||
this.vip.type == "1" ||
|
||
this.vip.type == "3"
|
||
) {
|
||
uni.navigateTo({
|
||
// url: '../bookShop/commodityDetail?id=' + item.id
|
||
url: `/pages/curriculum/order/curriculum/detail?navTitle=${this.options.navTitle}&title=${v.title}&id=${v.id}&conditions=${v.conditions}&detailOid=${v.detailOid}&curriculumImgUrl=${this.curriculumData.image}`,
|
||
});
|
||
} else {
|
||
this.$commonJS.showToast("请先购买课程");
|
||
}
|
||
},
|
||
//相关课程
|
||
goCourseDescription(v) {
|
||
console.log(v);
|
||
uni.navigateTo({
|
||
// url: '../bookShop/commodityDetail?id=' + item.id
|
||
url: `/pages/curriculum/order/curriculum/index?navTitle=${v.title}&title=${v.title}&oid=${v.oid}`,
|
||
});
|
||
},
|
||
async getChapterList(v) {
|
||
var list = [];
|
||
var that = this;
|
||
|
||
await $http
|
||
.request({
|
||
url: this.urlList.curriculumInfo,
|
||
method: "POST", // POST、GET、PUT、DELETE,具体说明查看官方文档
|
||
data: {
|
||
catalogueId: v.id,
|
||
},
|
||
header: {
|
||
//默认 无 说明:请求头
|
||
"Content-Type": "application/json",
|
||
},
|
||
})
|
||
.then(async (res) => {
|
||
if (res.code == 0 && res.list.length > 0) {
|
||
// res.chapterList.map((item) => {
|
||
// item.tryListen = [];
|
||
// });
|
||
|
||
list = [...res.list];
|
||
|
||
console.log("at line 1343:", list);
|
||
// console.log('status', res)
|
||
} else {
|
||
list = [];
|
||
}
|
||
|
||
this.$forceUpdate();
|
||
});
|
||
|
||
return list;
|
||
},
|
||
getCourseDescriptionData() {
|
||
var data = {};
|
||
var that = this;
|
||
console.log(this.$store.state, "11111111111");
|
||
|
||
this.$http
|
||
.request({
|
||
url: this.urlList.list,
|
||
method: "POST",
|
||
data: {
|
||
courseId: this.options.id,
|
||
},
|
||
header: {
|
||
//默认 无 说明:请求头
|
||
"Content-Type": "application/json",
|
||
},
|
||
})
|
||
.then(async (res) => {
|
||
that.curriculumData = res.data.course;
|
||
that.cateList = [...res.data.catalogues];
|
||
|
||
console.log("that.allDataList at line 1068:", that.allDataList);
|
||
// this..getPercentage();
|
||
|
||
for (let i = 0; i < that.cateList.length; i++) {
|
||
var list = await that.getChapterList(that.cateList[i]);
|
||
|
||
that.allDataList[i] = {
|
||
...that.cateList[i],
|
||
courseList: [...list],
|
||
};
|
||
// that.allDataList[i].courseList = [];
|
||
}
|
||
|
||
setTimeout(() => {
|
||
that.$refs.commonAnchorLink.getDistanceArr();
|
||
}, 200);
|
||
console.log("that.courseList at line 1238:", that.allDataList);
|
||
this.$forceUpdate(); // that.relatedCoursesList = res.data.correlatedList
|
||
// ? res.data.correlatedList
|
||
// : [];
|
||
// await that.handleselectCate(this.cateList[0], 0);
|
||
// socket.init();
|
||
});
|
||
},
|
||
getPriceData() {
|
||
var that = this;
|
||
setTimeout(() => {
|
||
that.$nextTick(() => {
|
||
that.$refs.priceDetail.getData();
|
||
});
|
||
}, 100);
|
||
},
|
||
// 检查是有权限使用搜索功能
|
||
checkDisable() {
|
||
console.log("点击了");
|
||
},
|
||
// 显示无权限弹窗
|
||
// showNoRights() {
|
||
// let that = this
|
||
// uni.showModal({
|
||
// content: "",
|
||
// confirmText: '好的',
|
||
// showCancel: false,
|
||
// success: function(res) {
|
||
// if (res.confirm) {
|
||
// // console.log('用户点击确定');
|
||
// that.clear()
|
||
// }
|
||
// }
|
||
// })
|
||
// },
|
||
|
||
async handleselectCate(item, index) {
|
||
console.log("item at line 662:", item);
|
||
console.log("index at line 637:", index);
|
||
// this.description=`您还未购买当前【${item.title}】课程,`
|
||
var title1 = "";
|
||
this.currentCateIndex = index;
|
||
switch (this.vip.type) {
|
||
case 0:
|
||
this.goBuyTitle = "购买VIP,即可免费观看吴门医述所有课程";
|
||
this.goBuyType = 0;
|
||
break;
|
||
case 1 || 2:
|
||
var vipName = "";
|
||
if (this.vip.type == 1) {
|
||
vipName = "超级VIP";
|
||
}
|
||
if (this.vip.type == 2) {
|
||
vipName = "吴门医述VIP";
|
||
}
|
||
//超级VIP
|
||
this.goBuyTitle = `尊贵的${vipName},您的有效期到 ${
|
||
this.vip.endTime && this.vip.endTime.split(" ")[0]
|
||
}`;
|
||
this.goBuyType = 1;
|
||
break;
|
||
|
||
case 3:
|
||
//众妙之门
|
||
this.goBuyTitle =
|
||
"尊贵的众妙之门VIP,升级至超级VIP,即可免费观看吴门医述所有课程";
|
||
|
||
this.goBuyType = 2;
|
||
break;
|
||
}
|
||
|
||
// this.currentCateIndex = index;
|
||
this.dataList = [];
|
||
var data = [];
|
||
console.log(item, index, 99999);
|
||
var that = this;
|
||
|
||
// curriculumInfo
|
||
this.$http
|
||
.request({
|
||
url: this.urlList.curriculumInfo,
|
||
method: "POST",
|
||
data: {
|
||
catalogueId: item.id,
|
||
},
|
||
header: {
|
||
//默认 无 说明:请求头
|
||
"Content-Type": "application/json",
|
||
},
|
||
})
|
||
|
||
.then(async (res) => {
|
||
// that.curriculumInfo = res.obj;
|
||
// that.currentCateIndex = index;
|
||
that.percentage = item.completion;
|
||
that.dataList = res.chapterList;
|
||
// that.getPercentage();
|
||
that.$forceUpdate();
|
||
|
||
// socket.init();
|
||
});
|
||
|
||
console.log(this.allDataList, this.dataList, "1688");
|
||
|
||
this.searchValue = "";
|
||
this.searchList = [];
|
||
this.showSearchList = false;
|
||
|
||
return data;
|
||
},
|
||
async setOneCateIndex(item, index) {
|
||
this.allDataList = [];
|
||
console.log(index, 99999);
|
||
var that = this;
|
||
|
||
this.currentStatusIndex = index;
|
||
// this.currentCateIndex = 0
|
||
|
||
this.searchValue = "";
|
||
this.searchList = [];
|
||
this.showSearchList = false;
|
||
this.$nextTick(async () => {
|
||
await that.getCourseDescriptionData();
|
||
|
||
this.$forceUpdate();
|
||
});
|
||
|
||
// this.handleselectCate(this.cateList[this.currentCateIndex])
|
||
// if (index != 2) {
|
||
|
||
// uni.createSelectorQuery().select('.statusList').boundingClientRect(function (rect) {
|
||
// var height = rect.height
|
||
// console.log('元素高度:',);
|
||
|
||
// }).exec();
|
||
|
||
// } else {
|
||
// this.getJFList(dictType)
|
||
// }
|
||
},
|
||
|
||
transformData(inputData) {
|
||
const result = {};
|
||
inputData.forEach((item) => {
|
||
const { letter } = item;
|
||
if (!result[letter]) {
|
||
result[letter] = [];
|
||
}
|
||
result[letter].push(item);
|
||
});
|
||
// const finalResult = Object.keys(result).map(key => ({ [key]: result[key] }));
|
||
return result;
|
||
},
|
||
|
||
// 放大图片
|
||
previewImage(url) {
|
||
console.log(url);
|
||
uni.previewImage({
|
||
urls: [url],
|
||
longPressActions: {
|
||
itemList: ["很抱歉,暂不支持保存图片到本地"],
|
||
success: function (res) {
|
||
// console.log(res,'+++++')
|
||
},
|
||
},
|
||
});
|
||
},
|
||
},
|
||
onBackPress() {
|
||
// #ifdef APP-PLUS
|
||
plus.key.hideSoftKeybord();
|
||
// #endif
|
||
},
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
@import "@/style/mixin.scss";
|
||
|
||
.u-grid-list {
|
||
// height: 40rpx;
|
||
}
|
||
|
||
.searchList {
|
||
.item {
|
||
font-size: 28rpx;
|
||
padding: 20rpx;
|
||
border-bottom: 1px solid #dadbde;
|
||
}
|
||
}
|
||
|
||
.scroll-view_H {
|
||
background-color: #fff;
|
||
white-space: nowrap;
|
||
padding: 10rpx;
|
||
}
|
||
|
||
.contentBox {
|
||
height: calc(100% - 50px);
|
||
|
||
.statusList {
|
||
padding: 10rpx;
|
||
box-sizing: border-box;
|
||
justify-content: space-between;
|
||
|
||
text {
|
||
text-align: center;
|
||
display: inline-block;
|
||
width: 32%;
|
||
padding: 20rpx 0;
|
||
font-size: 34rpx;
|
||
border-radius: 10rpx;
|
||
}
|
||
|
||
.cur {
|
||
background-color: $themeColor;
|
||
color: #fff;
|
||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||
}
|
||
}
|
||
|
||
.twoCateList {
|
||
font-size: 28rpx;
|
||
margin-top: 20rpx;
|
||
|
||
.grid-text {
|
||
padding: 10rpx 0rpx;
|
||
text-align: center;
|
||
}
|
||
|
||
.cur {
|
||
color: $themeColor;
|
||
}
|
||
|
||
// .u-grid-list{border: 0.5px solid #dadbde;}
|
||
}
|
||
|
||
.dataList {
|
||
font-size: 26rpx;
|
||
// margin-top: 20rpx;
|
||
// padding: 32rpx 0rpx;
|
||
border-radius: 10rpx;
|
||
background-color: #f8f9fa;
|
||
box-sizing: border-box;
|
||
|
||
.JFtitleItem {
|
||
background-color: #ffffff;
|
||
padding: 20rpx 10rpx;
|
||
width: 100%;
|
||
border-bottom: 0.5px solid #f8f9fa;
|
||
}
|
||
|
||
.wmzhimg {
|
||
width: 220rpx;
|
||
height: 220rpx;
|
||
}
|
||
}
|
||
}
|
||
|
||
.search_box {
|
||
margin: 0 auto;
|
||
overflow: hidden;
|
||
align-items: center;
|
||
width: calc(100% - 10px);
|
||
margin-top: 20rpx;
|
||
margin-bottom: 20rpx;
|
||
|
||
.search {
|
||
height: 56upx;
|
||
display: flex;
|
||
width: 86%;
|
||
margin: 0 auto;
|
||
align-items: center;
|
||
padding: 0upx 40upx;
|
||
background-color: #fff;
|
||
border-radius: 20upx;
|
||
box-shadow: 0 0px 10px 1px $themeColor;
|
||
}
|
||
|
||
.prompt {
|
||
color: #838383;
|
||
font-size: 24rpx;
|
||
}
|
||
|
||
.icon_search {
|
||
background-image: url("@/static/icon/map_ic_search.png");
|
||
background-position: center center;
|
||
background-repeat: no-repeat;
|
||
background-size: cover;
|
||
width: 36upx;
|
||
height: 36upx;
|
||
margin-right: 20upx;
|
||
}
|
||
}
|
||
|
||
.flexbox {
|
||
display: flex;
|
||
background-color: transparent !important;
|
||
}
|
||
|
||
.uni-modal .uni-modal__bd {
|
||
text-align: left;
|
||
}
|
||
|
||
.limiTy {
|
||
font-size: 28rpx;
|
||
line-height: 46rpx;
|
||
}
|
||
|
||
.chImage {
|
||
height: 100rpx;
|
||
}
|
||
|
||
.dataList {
|
||
height: 100%;
|
||
}
|
||
|
||
.titleList2 {
|
||
height: calc(100% - 150rpx);
|
||
}
|
||
|
||
.priceDetail {
|
||
height: calc(100% - 180rpx) !important;
|
||
padding: 0rpx 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.componentPage {
|
||
height: calc(100% - 90rpx) !important;
|
||
}
|
||
|
||
.dateReminder {
|
||
width: 100%;
|
||
font-size: 24rpx;
|
||
text-align: right;
|
||
line-height: 40rpx;
|
||
}
|
||
|
||
.fdButtonBox {
|
||
border: 1rpx solid $themeColor;
|
||
background-color: $themeColor;
|
||
color: $themeColor;
|
||
// width: 100%;
|
||
float: right;
|
||
padding: 4rpx 14rpx;
|
||
font-size: 24rpx;
|
||
font-weight: 500;
|
||
line-height: 30rpx;
|
||
border-radius: 10rpx;
|
||
box-sizing: border-box;
|
||
|
||
// margin-top: 20rpx;
|
||
// display: flex;
|
||
// align-items: center;
|
||
}
|
||
|
||
.fdButtonBoxRed {
|
||
border: 1rpx solid red;
|
||
background-color: red;
|
||
padding: 8rpx 14rpx;
|
||
font-size: 28rpx;
|
||
}
|
||
|
||
.headImage {
|
||
// height: 600rpx !important;
|
||
}
|
||
|
||
.commonDetailPage {
|
||
}
|
||
|
||
.curriulum_box {
|
||
margin-top: 20rpx;
|
||
width: 100%;
|
||
|
||
.curriulum_title_box {
|
||
display: flex;
|
||
align-items: center;
|
||
margin-bottom: 20rpx;
|
||
background-color: #fff;
|
||
|
||
.curriulum_title {
|
||
width: calc(100% - 80rpx);
|
||
|
||
font-size: 32rpx;
|
||
line-height: 40rpx;
|
||
padding: 20rpx;
|
||
box-sizing: border-box;
|
||
}
|
||
}
|
||
}
|
||
|
||
::v-deep.titleItem {
|
||
// width: calc(100% - 120rpx) !important;
|
||
}
|
||
|
||
::v-deep.scroll-view-item:nth-child(2n-1) {
|
||
background-color: transparent !important;
|
||
}
|
||
|
||
.dataList {
|
||
height: auto !important;
|
||
}
|
||
|
||
.small_class_teaching_box {
|
||
width: 100%;
|
||
margin-top: 20rpx;
|
||
// background: #f0fbf3;
|
||
|
||
.small_class_teaching_top {
|
||
padding: 20rpx 20rpx 0 10rpx;
|
||
box-sizing: border-box;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
// background: #EDFCF7;
|
||
color: #8f8e8e;
|
||
|
||
// box-shadow: 0px 0px 6rpx 0px #E9DCCC;
|
||
.icon1 {
|
||
width: 50rpx;
|
||
height: 50rpx;
|
||
}
|
||
|
||
.small_class_teaching_top_left {
|
||
display: flex;
|
||
align-items: center;
|
||
color: #018f89;
|
||
|
||
font-family: MicrosoftYaHei;
|
||
}
|
||
}
|
||
|
||
.small_class_teaching_content {
|
||
margin-top: 0rpx;
|
||
// background: #EDFCF7;
|
||
padding-bottom: 10rpx;
|
||
|
||
.top {
|
||
padding: 20rpx 20rpx;
|
||
box-sizing: border-box;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
border-bottom: 4rpx solid #fff;
|
||
|
||
.top_item {
|
||
width: 23%;
|
||
font-family: PangMenZhengDaoBiaoTiTiMianFeiBan;
|
||
font-weight: normal;
|
||
font-size: 34rpx;
|
||
color: #018f89;
|
||
line-height: 80rpx;
|
||
background: #cef8ea;
|
||
text-align: center;
|
||
border-radius: 10rpx;
|
||
box-shadow: 0px 0px 6rpx 0px #e9dccc;
|
||
}
|
||
}
|
||
|
||
.schedule {
|
||
width: 100%;
|
||
overflow: hidden;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 10rpx 0;
|
||
box-sizing: border-box;
|
||
align-items: center;
|
||
color: #018f89;
|
||
|
||
// font-family: MicrosoftYaHei;
|
||
|
||
.icon_box {
|
||
width: 100px;
|
||
display: flex;
|
||
align-items: center;
|
||
margin-bottom: 0rpx;
|
||
font-weight: 700;
|
||
|
||
.icon1 {
|
||
width: 50rpx;
|
||
height: 50rpx;
|
||
margin-right: 10rpx;
|
||
}
|
||
}
|
||
|
||
.progress_box {
|
||
width: calc(100% - 180rpx);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
position: relative;
|
||
|
||
.progress_icon {
|
||
width: calc(100% - 60rpx);
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.icon1 {
|
||
width: 60rpx;
|
||
height: 60rpx;
|
||
margin: 0 20rpx;
|
||
}
|
||
|
||
.icon2 {
|
||
width: 140rpx;
|
||
height: 100rpx;
|
||
position: absolute;
|
||
right: 0;
|
||
// margin-top: -20rpx;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.related_courses_box {
|
||
background-color: #fff;
|
||
|
||
.small_class_teaching_content {
|
||
padding: 10rpx 20rpx;
|
||
box-sizing: border-box;
|
||
}
|
||
}
|
||
|
||
.related_courses_name {
|
||
display: inline-block;
|
||
width: calc(100% - 150rpx) !important;
|
||
|
||
.aui-text-danger {
|
||
display: inline-block;
|
||
float: right;
|
||
}
|
||
}
|
||
|
||
// .common_curriculum_list{
|
||
|
||
// }
|
||
|
||
.goods_box {
|
||
padding: 40rpx 20rpx;
|
||
padding-bottom: 150rpx;
|
||
|
||
.goods_item {
|
||
overflow: hidden;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
margin-bottom: 20rpx;
|
||
padding: 10rpx 20rpx;
|
||
border: 2rpx solid #fff;
|
||
border-radius: 10rpx;
|
||
}
|
||
|
||
.title {
|
||
box-sizing: border-box;
|
||
font-weight: bold;
|
||
margin-bottom: 20rpx;
|
||
}
|
||
|
||
.image_box {
|
||
width: 70rpx !important;
|
||
height: 70rpx !important;
|
||
float: left;
|
||
background-color: #f5f5f5;
|
||
}
|
||
|
||
.goods_image {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
|
||
.goods_info {
|
||
width: calc(100% - 100rpx);
|
||
// padding: 10rpx 20rpx;
|
||
box-sizing: border-box;
|
||
// height: 100rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
float: left;
|
||
|
||
.name {
|
||
font-size: 30rpx;
|
||
font-weight: 600;
|
||
color: #333;
|
||
}
|
||
|
||
.price {
|
||
font-size: 26rpx;
|
||
color: #aaa;
|
||
font-weight: 600;
|
||
}
|
||
}
|
||
|
||
.isSelectGoods {
|
||
color: $themeColor !important;
|
||
|
||
.name {
|
||
color: $themeColor !important;
|
||
}
|
||
|
||
.price {
|
||
color: $themeColor !important;
|
||
}
|
||
|
||
border: 2rpx solid $themeColor;
|
||
border-radius: 10rpx;
|
||
}
|
||
}
|
||
|
||
.popup_box {
|
||
padding-bottom: 20rpx;
|
||
width: 85vw;
|
||
overflow: hidden;
|
||
position: relative;
|
||
height: auto;
|
||
|
||
.title {
|
||
font-family: PangMenZhengDaoBiaoTiTiMianFeiBan;
|
||
font-weight: normal;
|
||
font-size: 46rpx;
|
||
color: $themeColor;
|
||
background-color: #f5f5f5;
|
||
// line-height: 46rpx;
|
||
padding: 20rpx;
|
||
// border-leradius: 6px;
|
||
border-top-left-radius: 6px;
|
||
border-top-right-radius: 6px;
|
||
}
|
||
|
||
.content {
|
||
font-size: 26rpx;
|
||
letter-spacing: 0.15rpx;
|
||
padding: 20rpx;
|
||
color: #3f3f3f;
|
||
|
||
.top {
|
||
margin: 30rpx 0;
|
||
}
|
||
|
||
.center {
|
||
line-height: 40rpx;
|
||
// padding:0 10rpx;
|
||
}
|
||
|
||
.bottom {
|
||
width: 100%;
|
||
margin-top: 60rpx;
|
||
|
||
font-size: 24rpx;
|
||
line-height: 26rpx;
|
||
color: #b0b0b0;
|
||
}
|
||
}
|
||
|
||
.button_box {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
margin-top: 20rpx;
|
||
|
||
.u-button {
|
||
margin-left: 40rpx;
|
||
}
|
||
|
||
.u-button:nth-child(1) {
|
||
margin-left: 0;
|
||
}
|
||
}
|
||
}
|
||
|
||
.saveBtnss {
|
||
align-items: center;
|
||
justify-content: center;
|
||
height: 80rpx;
|
||
|
||
// width: 46%;
|
||
overflow: hidden;
|
||
border-radius: 50rpx;
|
||
|
||
text {
|
||
padding-left: 10rpx;
|
||
font-size: 28rpx;
|
||
}
|
||
}
|
||
|
||
.vipBtn {
|
||
@include theme("vipbtnbg");
|
||
border-radius: 100rpx;
|
||
justify-content: center;
|
||
width: auto;
|
||
padding: 0 20rpx;
|
||
color: #fff;
|
||
margin: 10rpx auto;
|
||
}
|
||
|
||
.buyBtn {
|
||
background: #f42c32 !important;
|
||
// background:
|
||
}
|
||
|
||
::v-deep.u-alert--warning--light {
|
||
background-color: none !important;
|
||
}
|
||
|
||
::v-deep.u-alert__text--warning--light {
|
||
color: #fff !important;
|
||
}
|
||
|
||
::v-deep.u-alert {
|
||
background: none !important;
|
||
}
|
||
|
||
::v-deep.u-icon__icon--warning {
|
||
color: #fff !important;
|
||
}
|
||
|
||
::v-deep.uni-section {
|
||
background: transparent !important;
|
||
}
|
||
|
||
::v-deep.uni-section .uni-section-header {
|
||
padding-top: 10rpx !important;
|
||
padding-bottom: 10rpx !important;
|
||
}
|
||
|
||
::v-deep.uni-section .uni-section-header {
|
||
padding-left: 0rpx !important;
|
||
// padding-bottom: 10rpx !important;
|
||
}
|
||
|
||
.course_info_box {
|
||
// margin-bottom:10rpx;
|
||
// padding:20rpx;
|
||
.course_info {
|
||
// box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
||
background: rgb(243, 250, 243);
|
||
// border-radius:20rpx;
|
||
overflow: hidden;
|
||
}
|
||
}
|
||
|
||
.catalogue_title {
|
||
background: linear-gradient(130deg, #16171b 0%, #44b2b1 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
font-size: 42rpx;
|
||
font-weight: bold;
|
||
letter-spacing: 4rpx;
|
||
|
||
// border:4rpx solid #1FB2F8;
|
||
// box-shadow: 0 2px 12px 0 rgba(255,255,255,.1);
|
||
// border-radius:40rpx;
|
||
// color:#fff;
|
||
// width:200rpx;
|
||
// height:70rpx;
|
||
// display:inline-block;
|
||
// padding:10rpx 20rpx;
|
||
}
|
||
|
||
.chapter_content {
|
||
// padding: 20rpx;
|
||
// padding-top:60rpx;
|
||
// margin-top: 40rpx;
|
||
border: 4rpx solid #fffffc;
|
||
// background-image: linear-gradient(52deg, #E8F6FF 0%, #E3F2FE 50%);
|
||
// background-image: linear-gradient(-180deg, #8BBDFE 0%, #B4DCFF 100%);
|
||
background: rgba(255, 255, 255, 0.85);
|
||
// background:rgba(255, 255, 255, 0.85);
|
||
box-shadow: 0px 0px 4px 0px rgba(46, 114, 123, 0.6) !important;
|
||
border-top-right-radius: 40rpx;
|
||
border-bottom-left-radius: 40rpx;
|
||
|
||
.videoList {
|
||
// padding:0 20rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
|
||
// justify-content: space-between;
|
||
.video_item {
|
||
width: 24%;
|
||
font-size: 22rpx;
|
||
margin: 10rpx 0;
|
||
background: rgba(255, 255, 255, 0.85);
|
||
box-shadow: 0 2px 12px 0 rgba(255, 255, 255, 0.1);
|
||
border-radius: 10rpx;
|
||
padding: 10rpx 20rpx;
|
||
margin-right: 1%;
|
||
|
||
color: #333;
|
||
letter-spacing: 2rpx;
|
||
}
|
||
}
|
||
}
|
||
|
||
.line {
|
||
width: 16rpx;
|
||
height: 50rpx;
|
||
border-top-right-radius: 12rpx;
|
||
border-bottom-right-radius: 12rpx;
|
||
margin-right: 20rpx;
|
||
background-image: linear-gradient(108deg, #609080 0%, #7ba98c 100%);
|
||
}
|
||
|
||
.containerBg2 {
|
||
width: 100%;
|
||
// padding-top: 40rpx;
|
||
// margin-top: 100rpx;
|
||
|
||
.shiting {
|
||
line-height: 100rpx;
|
||
background: linear-gradient(130deg, #4fa1fd 0%, #12f3ff 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
margin-bottom: 20rpx;
|
||
// background-image: linear-gradient(108deg, #4FA1FD 100%, #4FA1FD 0%);
|
||
// border:4rpx solid #1FB2F8;
|
||
// box-shadow: 0 2px 12px 0 rgba(255,255,255,.1);
|
||
// border-radius:40rpx;
|
||
color: #fff;
|
||
// width:200rpx;
|
||
// height:70rpx;
|
||
// display:inline-block;
|
||
// padding:10rpx 20rpx;
|
||
font-size: 72rpx;
|
||
text-align: center;
|
||
}
|
||
|
||
.shiting_content {
|
||
// padding: 20rpx 0 0;
|
||
}
|
||
}
|
||
|
||
.chapter_title {
|
||
width: 100%;
|
||
font-size: 28rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
position: relative;
|
||
|
||
// justify-content: space-between;
|
||
.top {
|
||
width: 100%;
|
||
display: flex;
|
||
align-items: center;
|
||
|
||
.left {
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.right {
|
||
// float: right;
|
||
position: absolute;
|
||
right: 0;
|
||
}
|
||
}
|
||
|
||
.not_purchased {
|
||
position: relative;
|
||
|
||
.spot {
|
||
width: 8rpx;
|
||
height: 8rpx;
|
||
position: absolute;
|
||
right: -4rpx;
|
||
border-radius: 8rpx;
|
||
background-color: #33435d;
|
||
bottom: -4rpx;
|
||
}
|
||
|
||
color: #33435d;
|
||
margin-left: 20rpx;
|
||
font-size: 24rpx;
|
||
padding: 0 20rpx;
|
||
border-bottom: 2rpx dotted #33435d;
|
||
|
||
text {
|
||
margin: 0 10rpx;
|
||
letter-spacing: 1rpx;
|
||
}
|
||
}
|
||
}
|
||
|
||
.course_title {
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
background: #fff;
|
||
}
|
||
|
||
.catalogueTitle {
|
||
justify-content: space-between;
|
||
overflow: hidden;
|
||
margin-bottom: 20rpx;
|
||
// background-image: linear-gradient(108deg, #cae9f9 0%, #e1f6fc8c 50%);
|
||
|
||
// background-image: linear-gradient(180deg, #cfe0ff 0%, #fff 50%);
|
||
// padding: 0 20rpx;
|
||
font-size: 40rpx;
|
||
|
||
.learnBtn {
|
||
margin-bottom: 20rpx;
|
||
width: 150rpx;
|
||
text-align: center;
|
||
border: 1px solid $themeColor;
|
||
color: $themeColor;
|
||
line-height: 60rpx;
|
||
height: 60rpx;
|
||
font-size: 28rpx;
|
||
margin-top: 40rpx;
|
||
}
|
||
|
||
.price {
|
||
color: #ff582e;
|
||
font-size: 32rpx;
|
||
|
||
i {
|
||
font-style: normal;
|
||
font-size: 60rpx;
|
||
font-weight: bold;
|
||
}
|
||
}
|
||
|
||
.title {
|
||
display: block;
|
||
font-size: 30rpx;
|
||
margin-top: 20rpx;
|
||
font-weight: bold;
|
||
margin-bottom: 20rpx;
|
||
}
|
||
|
||
.saveBtn {
|
||
align-items: center;
|
||
justify-content: center;
|
||
height: 80rpx;
|
||
background-color: #00d8df;
|
||
// width: 46%;
|
||
overflow: hidden;
|
||
border-radius: 30rpx;
|
||
|
||
text {
|
||
padding-left: 10rpx;
|
||
font-size: 28rpx;
|
||
color: #fff;
|
||
}
|
||
}
|
||
}
|
||
|
||
.prof {
|
||
font-size: 26rpx;
|
||
line-height: 50rpx;
|
||
padding: 10rpx 0;
|
||
color: #333;
|
||
// background-color: #f0f0f0;
|
||
// margin-bottom: 10rpx;
|
||
}
|
||
|
||
.containerBg1 {
|
||
border-top: 1px solid #fff;
|
||
margin-top: -4rpx;
|
||
// background: rgb(243, 250, 243);
|
||
// position: relative;
|
||
z-index: 1;
|
||
// padding: 40rpx 0;
|
||
|
||
border-radius: 30rpx 30rpx 0 0;
|
||
// background-color: #fff;
|
||
// overflow: hidden;
|
||
}
|
||
|
||
.courseTitle {
|
||
width: calc(100% - 220rpx);
|
||
padding: 20rpx;
|
||
font-size: 38rpx;
|
||
font-weight: bold;
|
||
// background-image: url(@/static/bg1.jpg);
|
||
background-size: cover;
|
||
background-repeat: no-repeat;
|
||
}
|
||
|
||
.catalogueList {
|
||
// background: linear-gradient(108deg, #F0FBF4 0%, #d1e8da 100%) !important;
|
||
padding-bottom: 40rpx;
|
||
// padding-top: 0;
|
||
}
|
||
|
||
.catalogueList:nth-child(1) {
|
||
margin-top: 0 !important;
|
||
}
|
||
|
||
::v-deep.section {
|
||
padding-top: 0 !important;
|
||
background: linear-gradient(108deg, #f0fbf4 0%, #d1e8da 100%) !important;
|
||
}
|
||
|
||
::v-deep.section_box {
|
||
padding-top: 0 !important;
|
||
}
|
||
</style>
|