detail.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. <template>
  2. <view class="page">
  3. <cu-custom :isBack="true"></cu-custom>
  4. <view class="header" :style="[{ top: topHeader + 'px' }]">
  5. <view class="header-title">
  6. <view class="header-title-main">
  7. <view class="margin-bottom-xs">{{ tabList[cate_type].title }}</view>
  8. <view class="point"></view>
  9. </view>
  10. </view>
  11. <swiper-tab :menuList="tabList[cate_type].list" @changeTab="changeTab"></swiper-tab>
  12. </view>
  13. <scroll-view v-if="currentIndex === 0" :scroll-y="true" :style="[{ height: 'calc(100vh - 70px - ' + topHeader + 'px)' }]" class="scroll-main">
  14. <view class="content">
  15. <view class="course-img">
  16. <swiper class="swiper" :indicator-dots="swiper.indicatorDots" :autoplay="swiper.autoplay" :interval="swiper.interval" :duration="swiper.duration">
  17. <swiper-item v-for="(item, index) in detail.image" :key="index">
  18. <view class="swiper-item">
  19. <image :src="item" mode="widthFix"></image>
  20. </view>
  21. </swiper-item>
  22. </swiper>
  23. </view>
  24. <!-- 详情 -->
  25. <view class="detail">
  26. <view class="detail-title">{{ detail.name }}</view>
  27. <view class="detail-item">
  28. <view class="detail-item-point"></view>
  29. <view class="detail-label">周期</view>
  30. <view class="detail-text"
  31. >{{ detail.period }}<text class="text-gray">({{ detail.time[0] }})</text></view
  32. >
  33. </view>
  34. <view class="detail-item">
  35. <view class="detail-item-point"></view>
  36. <view class="detail-label">适用年级</view>
  37. <view class="detail-text">{{ detail.grade }}年级通用</view>
  38. </view>
  39. <view class="detail-item">
  40. <view class="detail-item-point"></view>
  41. <view class="detail-label">课时</view>
  42. <view class="detail-text">{{ detail.class_total }}课时</view>
  43. </view>
  44. <view class="detail-item">
  45. <view class="detail-item-point"></view>
  46. <view class="detail-label">单课时价</view>
  47. <view class="detail-text">¥{{ detail.single_money }}</view>
  48. </view>
  49. <view class="detail-item">
  50. <view class="detail-item-point"></view>
  51. <view class="detail-label">补贴</view>
  52. <view class="detail-text">¥{{ detail.subsidy }}/节课</view>
  53. </view>
  54. <view class="detail-item">
  55. <view class="detail-item-point"></view>
  56. <view class="detail-label">培养目标</view>
  57. <view class="detail-text">{{ detail.tenet }}</view>
  58. </view>
  59. </view>
  60. </view>
  61. <!-- 老师介绍 -->
  62. <view class="teacher flex margin-top-sm shadow" v-if="cate_type === 0">
  63. <image mode="scaleToFill" :src="defaultTeacher" class="avatar lg"></image>
  64. <view class="flex-sub margin-left">
  65. <view class="teacher-title">{{ detail.teachers.username || '' }}老师授课</view>
  66. <view class="teacher-item">毕业于{{ detail.teachers.agency_name || '' }}</view>
  67. <view class="teacher-item">所属机构:{{ detail.teachers.orz || '' }}</view>
  68. <view class="teacher-exp flex">
  69. <view class="exp-item">{{ detail.teachers.honor || '' }}</view>
  70. <view class="exp-item">{{ detail.teachers.introduce || '' }}</view>
  71. </view>
  72. </view>
  73. </view>
  74. <!-- 道具选择 -->
  75. <view class="shop margin-top-sm shadow" v-if="detail.prop && detail.prop.length > 0 && !detail.prop[0].required">
  76. <view class="shop-title">请选择课程所需要的道具</view>
  77. <radio-group @change="radioChange" class="margin-top-xs">
  78. <label v-for="radio in radios" :key="radio.value" class="tool-choose margin-right-sm">
  79. <radio :value="radio.value" class="cyan" :checked="radio.checked" style="transform: scale(0.7);" />
  80. {{ radio.name }}
  81. </label>
  82. </radio-group>
  83. <checkbox-group @change="checkboxChange" v-if="needTool === '1'" class="checkbox-group margin-top-xs">
  84. <label v-for="prop in detail.prop" :key="prop.id">
  85. <view class="tool-choose-item">
  86. <checkbox :value="prop.id" class="cyan" style="transform: scale(0.7);" :checked="goods.props.includes(prop.id)" />{{ prop.name }}<text>¥{{ prop.money }}</text>
  87. </view>
  88. </label>
  89. </checkbox-group>
  90. </view>
  91. <!-- 评论 -->
  92. <view class="comment">
  93. <rich-text :nodes="detail.present"></rich-text>
  94. </view>
  95. </scroll-view>
  96. <!-- 评价页 -->
  97. <scroll-view :style="[{ height: 'calc(100vh - 70px - ' + topHeader + 'px)' }]" class="scroll-main" v-if="currentIndex === 1">
  98. <view class="cu-list menu-avatar comment">
  99. <view class="cu-item" v-for="(comment, index) in comments" :key="index">
  100. <image mode="scaleToFill" :src="comment.img" class="avatar md left"></image>
  101. <view class="content">
  102. <view class="text-grey">{{ comment.name }}</view>
  103. <view class="text-gray text-content text-df">
  104. {{ comment.content }}
  105. </view>
  106. <view class="margin-top-sm flex justify-between">
  107. <view class="text-gray text-df">{{ comment.date }}</view>
  108. <!-- <view>
  109. <text class="cuIcon-appreciatefill text-red"></text>
  110. <text class="cuIcon-messagefill text-gray margin-left-sm"></text>
  111. </view> -->
  112. </view>
  113. </view>
  114. </view>
  115. </view>
  116. </scroll-view>
  117. <!-- 视频页 -->
  118. <scroll-view :style="[{ height: 'calc(100vh - 70px - ' + topHeader + 'px)' }]" class="scroll-main" v-if="currentIndex === 2">
  119. <view class="list">
  120. <view class="cu-card case" v-for="(video, index) in detail.video" :key="index">
  121. <view class="cu-item shadow">
  122. <view class="image">
  123. <video :src="video" style="width: 100%;"></video>
  124. </view>
  125. </view>
  126. </view>
  127. </view>
  128. </scroll-view>
  129. <!-- 大纲页 -->
  130. <scroll-view :scroll-y="true" :style="[{ height: 'calc(100vh - 70px - ' + topHeader + 'px)' }]" class="scroll-main" v-if="currentIndex === 3">
  131. <view class="cu-bar bg-white">
  132. <view class="action border-title">
  133. <text class="cuIcon-title text-student"></text>
  134. <text class="text-xl text-bold">{{ tabList[cate_type].list[currentIndex] }}</text>
  135. </view>
  136. </view>
  137. <view class="bg-white padding-lr">
  138. <view class="text-content text-lg" v-for="(outline, index) in detail.out_line" :key="index">
  139. {{ outline.course_content }}
  140. </view>
  141. </view>
  142. </scroll-view>
  143. <view class="static flex shadow">
  144. <view class="static-price">
  145. <text class="satic-label text-lg">小计:</text>
  146. <text class="text-price text-red text-lg">{{ goods.sum_money }}</text>
  147. </view>
  148. <view class="static-choose text-ellipsis" v-if="goods.choose.length > 0">(已选:{{ goods.choose.join(',') }})</view>
  149. <view class="static-order flex align-center">
  150. <shop-cart :class_attend_id="attend_id" :disableBtn="disableBtn" @changeDisableBtn="changeDisableBtn"> </shop-cart>
  151. <button class="cu-btn round bg-student text-white margin-left-xs" :class="{ disabled: carts.includes(attend_id) || !detail.enable }" @tap="addCart">报课</button>
  152. </view>
  153. </view>
  154. </view>
  155. </template>
  156. <script>
  157. import { _detail, _comments, _joinShop } from '@/api/course'
  158. import swiperTab from '@/components/swiper-tab.vue'
  159. import shopCart from '@/components/shop-cart.vue'
  160. import NP from 'number-precision'
  161. import { mapGetters } from 'vuex'
  162. export default {
  163. components: {
  164. swiperTab,
  165. shopCart
  166. },
  167. data() {
  168. return {
  169. topHeader: this.globalCustomBarHeight,
  170. swiper: {
  171. indicatorDots: true,
  172. autoplay: true,
  173. interval: 2000,
  174. duration: 500
  175. },
  176. defaultTeacher: '/static/imgs/class/logo0.png',
  177. attend_id: 0,
  178. cate_type: 0,
  179. currentIndex: 0,
  180. money: 0, // 初始金额
  181. comments: [], // 评论
  182. detail: {}, // 详情
  183. needTool: '1', // 需要道具
  184. disableBtn: false, // 避免多次重复点击
  185. radios: [
  186. { value: '1', name: '需要道具', checked: true },
  187. { value: '2', name: '不需要道具', checked: false }
  188. ],
  189. goods: {
  190. // 动态选中值
  191. props: [], // 选中值
  192. choose: [], // 选中名称
  193. sum_money: 0 // 金额总计
  194. }, // 选中课程
  195. tabList: [
  196. {
  197. title: '课程详细',
  198. list: ['课程介绍', '课程评价', '课程视频', '课程大纲'],
  199. enable: '报课',
  200. disable: '报课',
  201. options: [
  202. { title: '周期', content: ':正在加载,请稍后', des: ':正在加载,请稍后' },
  203. { title: '适用年级', content: ':正在加载,请稍后', des: '' },
  204. { title: '课时', content: ':正在加载,请稍后', des: '' },
  205. { title: '单课时价', content: ':正在加载,请稍后', des: '' },
  206. { title: '补贴', content: ':正在加载,请稍后', des: '' },
  207. { title: '培养目标', content: ':正在加载,请稍后', des: '' }
  208. ]
  209. },
  210. {
  211. title: '餐饮详细',
  212. list: ['餐饮介绍', '餐饮评价', '餐饮视频', '每日菜谱'],
  213. enable: '报餐',
  214. disable: '报餐',
  215. options: [
  216. { title: '周期', content: ':正在加载,请稍后', des: ':正在加载,请稍后' },
  217. { title: '适用年级', content: ':正在加载,请稍后', des: '' },
  218. { title: '用餐次数', content: ':正在加载,请稍后', des: '' },
  219. { title: '单次价格', content: ':正在加载,请稍后', des: '' },
  220. { title: '补贴', content: ':正在加载,请稍后', des: '' },
  221. { title: '用餐介绍', content: ':正在加载,请稍后', des: '' }
  222. ]
  223. },
  224. {
  225. title: '活动详细',
  226. list: ['活动介绍', '活动评价', '活动视频', '活动大纲'],
  227. enable: '报名',
  228. disable: '报名',
  229. options: [
  230. { title: '周期', content: ':正在加载,请稍后', des: ':正在加载,请稍后' },
  231. { title: '适用年级', content: ':正在加载,请稍后', des: '' },
  232. { title: '活动次数', content: ':正在加载,请稍后', des: '' },
  233. { title: '单次价格', content: ':正在加载,请稍后', des: '' },
  234. { title: '补贴', content: ':正在加载,请稍后', des: '' },
  235. { title: '活动目标', content: ':正在加载,请稍后', des: '' }
  236. ]
  237. }
  238. ]
  239. }
  240. },
  241. computed: {
  242. ...mapGetters(['carts'])
  243. },
  244. // 配置分享
  245. onShareAppMessage(res) {
  246. if (res.from === 'button') {
  247. // 来自页面内分享按钮
  248. console.log(res.target)
  249. }
  250. return {
  251. title: '课程详情',
  252. path: `/pages/class/detail?attend_id=${this.attend_id}`
  253. }
  254. },
  255. onShow() {
  256. this.disableBtn = false
  257. },
  258. onLoad(option) {
  259. this.attend_id = Number(decodeURIComponent(option.attend_id))
  260. if (this.attend_id === 0) {
  261. uni.navigateBack()
  262. }
  263. this.get_detail()
  264. this.get_comments()
  265. },
  266. methods: {
  267. get_detail() {
  268. _detail({ class_attend_id: this.attend_id }).then(res => {
  269. this.detail = res.data
  270. this.money = res.data.sum_money
  271. const props = res.data.prop
  272. if (props && props.length > 0) {
  273. this.setDefaultGoods(props)
  274. } else {
  275. this.goods.sum_money = this.money
  276. }
  277. })
  278. },
  279. changeDisableBtn() {
  280. this.disableBtn = true
  281. },
  282. addCart() {
  283. if (this.disableBtn) return false
  284. this.disableBtn = true
  285. if (!this.detail.enable) {
  286. uni.showToast({ title: '课程已停止!', icon: 'none' })
  287. this.disableBtn = false
  288. return false
  289. }
  290. const props = this.goods.props.join(',')
  291. _joinShop({ class_attend_id: this.attend_id, prop: props }).then(res => {
  292. if (res.code === 1) {
  293. this.globalNavigateTo('classCart')
  294. } else {
  295. this.disableBtn = false
  296. }
  297. })
  298. },
  299. setDefaultGoods(props) {
  300. this.goods.props[0] = props[0].id
  301. this.goods.sum_money = NP.plus(this.money, props[0].money)
  302. this.goods.choose[0] = props[0].name
  303. },
  304. get_comments() {
  305. _comments({ class_attend_id: this.attend_id }).then(res => {
  306. this.comemnts = res.data
  307. })
  308. },
  309. changeTab(index) {
  310. this.currentIndex = index
  311. },
  312. radioChange(e) {
  313. const value = e.detail.value
  314. this.needTool = value
  315. if (value === '1') {
  316. this.setDefaultGoods(this.detail.prop)
  317. } else {
  318. this.goods.sum_money = this.money
  319. this.goods.props = []
  320. this.goods.choose = []
  321. }
  322. },
  323. checkboxChange(e) {
  324. const values = e.detail.value
  325. const choose = []
  326. const props = []
  327. let money = 0
  328. values.forEach(item => {
  329. const one = this.detail.prop.find(e => e.id === Number(item))
  330. choose.push(one.name)
  331. props.push(Number(item))
  332. money = NP.plus(money, Number(one.money))
  333. })
  334. const sum = NP.plus(this.money, money)
  335. this.goods = {
  336. props: props,
  337. choose: choose,
  338. sum_money: sum
  339. }
  340. }
  341. }
  342. }
  343. </script>
  344. <style lang="scss" scoped>
  345. .scroll-main {
  346. padding-top: 86px;
  347. }
  348. .detail {
  349. padding: 20rpx;
  350. background-color: #fff;
  351. &-title {
  352. margin-bottom: 1rem;
  353. font-size: 22px;
  354. }
  355. &-item {
  356. margin: 20rpx 0;
  357. display: flex;
  358. color: #999;
  359. &-point {
  360. margin-top: 7px;
  361. margin-right: 7px;
  362. border-radius: 50%;
  363. width: 5px;
  364. height: 5px;
  365. background: #5ecfde;
  366. }
  367. }
  368. &-label {
  369. width: 66px;
  370. padding-right: 6px;
  371. text-align: justify;
  372. text-align-last: justify;
  373. }
  374. &-text {
  375. color: #000;
  376. }
  377. }
  378. .teacher {
  379. padding: 20rpx;
  380. background: #fff;
  381. font-size: 14px;
  382. color: #999;
  383. &-title {
  384. font-size: 18px;
  385. color: #000;
  386. }
  387. }
  388. .shop {
  389. padding: 20rpx;
  390. background: #fff;
  391. }
  392. .tool-choose {
  393. padding: 20rpx 20rpx 20rpx 0;
  394. &-item {
  395. padding: 10rpx 0;
  396. }
  397. }
  398. .checkbox-group {
  399. height: 100px;
  400. overflow-y: scroll;
  401. border: 1px solid #f5f5f5;
  402. }
  403. .comment {
  404. padding: 20rpx;
  405. min-height: 60px;
  406. }
  407. .static {
  408. position: fixed;
  409. left: 0;
  410. right: 0;
  411. bottom: 0;
  412. display: flex;
  413. background: #fff;
  414. height: 70px;
  415. align-items: center;
  416. padding: 0 0.8rem;
  417. justify-content: space-between;
  418. &-price {
  419. font-size: 14px;
  420. }
  421. &-choose {
  422. color: #666;
  423. font-size: 12px;
  424. width: calc(100vw - 240px);
  425. }
  426. }
  427. </style>