| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564 |
- <template>
- <view class="course-detail-page">
- <!-- 自定义导航栏 -->
- <view class="custom-navbar">
- <view class="navbar-left" @click="goBack">
- <text class="back-icon">←</text>
- </view>
- <view class="navbar-title">课程详情</view>
- <view class="navbar-right"></view>
- </view>
- <!-- 课程封面 -->
- <view class="course-cover">
- <image :src="course.cover_image" class="cover-image" mode="aspectFill"></image>
- <view class="cover-mask">
- <view class="discount-tag" v-if="course.discount_rate">限时{{ course.discount_rate }}折</view>
- </view>
- </view>
- <!-- 课程信息 -->
- <view class="course-content">
- <view class="course-title">{{ course.name }}</view>
- <view class="teacher-info">
- <image :src="course.teacher_avatar || DEFAULT_IMAGES.avatar" class="teacher-avatar" mode="aspectFill"></image>
- <view class="teacher-detail">
- <text class="teacher-name">{{ course.teacher_name }}</text>
- <text class="teacher-desc">{{ course.teacher_desc || '资深情感导师' }}</text>
- </view>
- </view>
- <view class="course-stats">
- <view class="stat-item">
- <text class="stat-icon">👥</text>
- <text class="stat-text">{{ course.student_count || 0 }}人学习</text>
- </view>
- <view class="stat-item">
- <text class="stat-icon">⭐</text>
- <text class="stat-text">{{ course.rating || '5.0' }}分</text>
- </view>
- <view class="stat-item">
- <text class="stat-icon">📚</text>
- <text class="stat-text">{{ course.chapter_count || 0 }}个章节</text>
- </view>
- </view>
- <view class="divider"></view>
- <view class="description-section">
- <view class="section-title">课程介绍</view>
- <view class="description-text">{{ course.description || '暂无介绍' }}</view>
- </view>
- <view class="divider"></view>
- <view class="outline-section">
- <view class="section-title">课程大纲</view>
- <view class="outline-text">{{ course.outline || '敬请期待' }}</view>
- </view>
- </view>
- <!-- 底部购买按钮 -->
- <view class="bottom-bar">
- <view class="price-info">
- <text class="price-label">课程价格</text>
- <view class="price-value">
- <text class="price-symbol">¥</text>
- <text class="price-num">{{ course.price || 0 }}</text>
- <text class="original-price" v-if="course.original_price">¥{{ course.original_price }}</text>
- <text class="discount-text" v-if="course.discount_rate">{{ course.discount_rate }}折优惠</text>
- </view>
- </view>
- <view class="purchase-btn" :class="{ purchased: course.purchase_status === 1 }" @click="handlePurchase">
- <text class="btn-text">{{ course.purchase_status === 1 ? '已购买' : '立即购买' }}</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- import api from '@/utils/api.js'
- import { DEFAULT_IMAGES } from '@/config/index.js'
- export default {
- data() {
- return {
- courseId: null,
- course: {
- id: 1,
- name: '恋爱沟通技巧大师课',
- description: '学会有效沟通,让感情更甜蜜。本课程将教你如何在恋爱中进行有效沟通,包括倾听技巧、表达方式、冲突化解等核心内容。适合想要提升感情质量的情侣和单身朋友。',
- cover_image: DEFAULT_IMAGES.course,
- teacher_name: '张情感老师',
- teacher_desc: '资深情感咨询师,拥有10年丰富的情感咨询经验,帮助过千对情侣解决感情问题',
- teacher_avatar: DEFAULT_IMAGES.avatar,
- price: 299,
- original_price: 399,
- discount_rate: 7.5,
- student_count: 1256,
- rating: 4.9,
- chapter_count: 12,
- outline: `第1章:沟通的艺术 - 了解沟通的基本原理
- 第2章:倾听的力量 - 学会深度倾听的技巧
- 第3章:表达的技巧 - 如何准确表达自己的想法
- 第4章:冲突的化解 - 处理感情中的分歧和矛盾
- 第5章:情感表达 - 学会表达爱意和关怀
- 第6章:日常沟通 - 提升日常对话的质量
- 第7章:深度交流 - 如何进行深层次的心灵沟通
- 第8章:危机处理 - 感情危机时的沟通策略
- 第9章:长期维护 - 保持感情新鲜度的沟通方法
- 第10章:非语言沟通 - 肢体语言和表情的运用
- 第11章:网络沟通 - 现代恋爱中的线上沟通技巧
- 第12章:实战演练 - 真实案例分析和练习`,
- status: 1,
- purchase_status: 0 // 0-未购买 1-已购买
- },
- DEFAULT_IMAGES
- }
- },
- onLoad(options) {
- console.log('精品课程详情页面加载, 参数:', options)
-
- if (options.id) {
- this.courseId = options.id
- console.log('课程ID:', this.courseId)
- // 根据ID设置对应的课程数据
- this.setCourseDataById(this.courseId)
- this.loadCourseDetail()
- } else {
- console.log('未传入课程ID,使用默认数据')
- }
-
- // 数据健康检查(确保页面显示正常)
- setTimeout(() => {
- this.checkDataHealth()
- }, 100)
- },
- methods: {
- // 根据ID设置课程数据
- setCourseDataById(courseId) {
- const courseData = {
- '1': {
- id: 1,
- name: '恋爱沟通技巧大师课',
- description: '学会有效沟通,让感情更甜蜜。本课程将教你如何在恋爱中进行有效沟通,包括倾听技巧、表达方式、冲突化解等核心内容。',
- teacher_name: '张情感老师',
- teacher_desc: '资深情感咨询师,10年经验',
- price: 299,
- original_price: 399,
- discount_rate: 7.5,
- student_count: 1256,
- rating: 4.9,
- chapter_count: 12
- },
- '2': {
- id: 2,
- name: '相亲必胜宝典',
- description: '从形象打造到话题聊天,全方位提升相亲成功率。适合想要快速脱单的单身男女。',
- teacher_name: '李红娘老师',
- teacher_desc: '专业红娘,成功牵线300+对',
- price: 199,
- original_price: 299,
- discount_rate: 6.6,
- student_count: 2580,
- rating: 4.8,
- chapter_count: 8
- },
- '3': {
- id: 3,
- name: '婚姻经营智慧课',
- description: '婚后生活经营秘籍,让婚姻更加幸福美满。处理婆媳关系、夫妻沟通等实用内容。',
- teacher_name: '王婚姻老师',
- teacher_desc: '婚姻家庭咨询专家',
- price: 399,
- original_price: 599,
- discount_rate: 6.7,
- student_count: 856,
- rating: 5.0,
- chapter_count: 15
- }
- }
-
- const targetCourse = courseData[courseId]
- if (targetCourse) {
- this.course = {
- ...this.course,
- ...targetCourse,
- cover_image: DEFAULT_IMAGES.course,
- teacher_avatar: DEFAULT_IMAGES.avatar
- }
- console.log('设置课程数据:', this.course.name)
- }
- },
-
- // 加载课程详情
- async loadCourseDetail() {
- try {
- console.log('尝试从API加载课程详情:', this.courseId)
- const data = await api.course.getDetail(this.courseId)
- if (data) {
- this.course = data
- console.log('API课程详情加载成功')
- } else {
- console.log('API返回空数据,使用默认课程详情')
- }
- } catch (error) {
- console.error('加载课程详情失败:', error)
- console.log('API调用失败,保留默认课程详情数据')
- uni.showToast({
- title: '使用示例数据',
- icon: 'none',
- duration: 1500
- })
- }
- },
- // 处理购买
- handlePurchase() {
- // 检查是否已购买
- if (this.course.purchase_status === 1) {
- uni.showToast({
- title: '您已购买过此课程',
- icon: 'none'
- })
- return
- }
-
- uni.showModal({
- title: '确认购买',
- content: `确认购买"${this.course.name}"课程吗?\n价格:¥${this.course.price}`,
- success: async (res) => {
- if (res.confirm) {
- try {
- console.log('尝试购买课程:', this.courseId)
- // await api.course.purchase(this.courseId, {})
-
- // 模拟购买成功
- uni.showToast({
- title: '购买成功!',
- icon: 'success'
- })
-
- // 更新购买状态
- this.course.purchase_status = 1
- this.course.student_count = (this.course.student_count || 0) + 1
-
- setTimeout(() => {
- uni.showModal({
- title: '购买成功',
- content: '您已成功购买此课程,现在可以开始学习了!',
- showCancel: false,
- confirmText: '开始学习',
- success: (modalRes) => {
- if (modalRes.confirm) {
- // TODO: 跳转到课程学习页面
- uni.showToast({
- title: '学习功能开发中',
- icon: 'none'
- })
- }
- }
- })
- }, 1500)
- } catch (error) {
- console.error('购买失败:', error)
- uni.showToast({
- title: '购买失败,请重试',
- icon: 'none'
- })
- }
- }
- }
- })
- },
- // 返回
- goBack() {
- console.log('课程详情返回上一页')
- uni.navigateBack({
- fail: () => {
- // 返回失败时跳转到课程列表
- uni.navigateTo({
- url: '/pages/courses/list'
- })
- }
- })
- },
-
- // 数据健康检查
- checkDataHealth() {
- console.log('=== 精品课程详情页面数据健康检查 ===')
- console.log('courseId:', this.courseId)
- console.log('course:', this.course)
- console.log('DEFAULT_IMAGES:', this.DEFAULT_IMAGES)
-
- // 确保关键数据不为空
- if (!this.course.name || this.course.name === '加载中...') {
- this.course.name = '恋爱沟通技巧大师课'
- }
- if (!this.course.teacher_name) {
- this.course.teacher_name = '张情感老师'
- }
- if (!this.course.cover_image) {
- this.course.cover_image = this.DEFAULT_IMAGES.course
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .course-detail-page {
- min-height: 100vh;
- background-color: #FFF9F9;
- padding-top: 90rpx;
- padding-bottom: 120rpx;
- }
- /* 自定义导航栏 */
- .custom-navbar {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- height: 90rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 20rpx;
- background-color: #E91E63;
- z-index: 999;
- .navbar-left,
- .navbar-right {
- width: 80rpx;
- }
- .back-icon {
- font-size: 40rpx;
- color: #FFFFFF;
- font-weight: bold;
- }
- .navbar-title {
- flex: 1;
- text-align: center;
- font-size: 32rpx;
- font-weight: bold;
- color: #FFFFFF;
- }
- }
- /* 课程封面 */
- .course-cover {
- position: relative;
- width: 100%;
- height: 500rpx;
- .cover-image {
- width: 100%;
- height: 100%;
- }
- .cover-mask {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
- padding: 30rpx;
- .discount-tag {
- display: inline-block;
- padding: 10rpx 20rpx;
- background: linear-gradient(135deg, #FF6B6B 0%, #FF9800 100%);
- color: #FFFFFF;
- font-size: 24rpx;
- font-weight: bold;
- border-radius: 30rpx;
- }
- }
- }
- /* 课程内容 */
- .course-content {
- padding: 30rpx;
- background-color: #FFFFFF;
- margin: 20rpx;
- border-radius: 20rpx;
- .course-title {
- font-size: 36rpx;
- font-weight: bold;
- color: #333333;
- margin-bottom: 30rpx;
- line-height: 1.5;
- }
- .teacher-info {
- display: flex;
- align-items: center;
- margin-bottom: 30rpx;
- .teacher-avatar {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- }
- .teacher-detail {
- flex: 1;
- display: flex;
- flex-direction: column;
- gap: 5rpx;
- .teacher-name {
- font-size: 28rpx;
- font-weight: bold;
- color: #333333;
- }
- .teacher-desc {
- font-size: 24rpx;
- color: #999999;
- }
- }
- }
- .course-stats {
- display: flex;
- justify-content: space-around;
- padding: 20rpx 0;
- background-color: #FFF9F9;
- border-radius: 15rpx;
- .stat-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 10rpx;
- .stat-icon {
- font-size: 32rpx;
- }
- .stat-text {
- font-size: 24rpx;
- color: #666666;
- }
- }
- }
- .divider {
- height: 1rpx;
- background-color: #F0F0F0;
- margin: 30rpx 0;
- }
- .section-title {
- font-size: 30rpx;
- font-weight: bold;
- color: #333333;
- margin-bottom: 20rpx;
- }
- .description-text,
- .outline-text {
- font-size: 28rpx;
- color: #666666;
- line-height: 1.8;
- white-space: pre-wrap;
- }
- }
- /* 底部购买按钮 */
- .bottom-bar {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 20rpx 30rpx;
- background-color: #FFFFFF;
- border-top: 1rpx solid #F0F0F0;
- z-index: 999;
- .price-info {
- flex: 1;
- .price-label {
- display: block;
- font-size: 24rpx;
- color: #999999;
- margin-bottom: 5rpx;
- }
- .price-value {
- display: flex;
- align-items: baseline;
- color: #E91E63;
- font-weight: bold;
- .price-symbol {
- font-size: 28rpx;
- }
- .price-num {
- font-size: 40rpx;
- }
- .original-price {
- margin-left: 10rpx;
- font-size: 24rpx;
- color: #999999;
- text-decoration: line-through;
- }
-
- .discount-text {
- margin-left: 15rpx;
- font-size: 22rpx;
- color: #FF9800;
- background: rgba(255, 152, 0, 0.1);
- padding: 5rpx 12rpx;
- border-radius: 15rpx;
- }
- }
- }
- .purchase-btn {
- padding: 20rpx 60rpx;
- background: linear-gradient(135deg, #E91E63 0%, #FF6B6B 100%);
- border-radius: 50rpx;
- box-shadow: 0 8rpx 16rpx rgba(233, 30, 99, 0.3);
- transition: all 0.3s;
- .btn-text {
- font-size: 32rpx;
- font-weight: bold;
- color: #FFFFFF;
- }
-
- &.purchased {
- background: #4CAF50;
- box-shadow: 0 8rpx 16rpx rgba(76, 175, 80, 0.3);
-
- .btn-text {
- color: #FFFFFF;
- }
- }
-
- &:active {
- transform: scale(0.95);
- }
- }
- }
- </style>
|