courseHome.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. <template>
  2. <view class="container">
  3. <!-- 搜索 -->
  4. <u-search @search="search" :show-action="false" shape="round" placeholder="搜索您想要的内容"
  5. v-model="searchWord"></u-search>
  6. <!-- tabs -->
  7. <view style="padding-top: 20rpx;display: flex;">
  8. <u-tabs style="flex: 1;" :list="tabsList" :is-scroll="true" font-size="24" :bold="false"
  9. inactive-color="#000000" active-color="#000000" :bar-style="{'background-color': '#2979ff'}"
  10. :gutter="30" height="45" v-model="currentTab" @change="changeTab"></u-tabs>
  11. <u-icon name="list" style="flex: 0 0 auto;padding-left: 20rpx;"></u-icon>
  12. </view>
  13. <!-- 列表 -->
  14. <view class="course-list">
  15. <view v-for="(course,index) in filterCourses" :key="course.id" @click="toPage(course)">
  16. <view class="course-item">
  17. <view class="course-item-image">
  18. <image class="course-image" :src="course.keChengTuPian" mode="aspectFill"></image>
  19. </view>
  20. <view class="course-item-content">
  21. <view class="course-title">
  22. <text>{{ course.keChengMingCheng }}</text>
  23. <image style="width: 25rpx;height: 25rpx;padding-left: 20rpx;"
  24. :src="course.isShouCang ? '/static/edu-icon/favi-icon.png' : '/static/edu-icon/no-favi-icon.png'"
  25. @click.stop="collectCourse(course.id, index)">
  26. </image>
  27. </view>
  28. <view class="course-type">{{ course.keChengLeXing }}</view>
  29. <view class="course-teacher">
  30. <u-icon name="account" size="28"></u-icon>
  31. {{ course.shouKeZhe }}
  32. </view>
  33. <view class="course-date">
  34. <u-icon name="clock" size="28"></u-icon>
  35. {{ getDateWeek(course.shouKeShiJian) }}
  36. </view>
  37. <view class="course-price">¥{{ course.jiaGe }}元</view>
  38. <button :class="['button', getButtonClass(course)]">{{ getButtonText(course) }}</button>
  39. </view>
  40. </view>
  41. <u-line />
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script setup>
  47. import {
  48. ref
  49. } from 'vue';
  50. import {
  51. onLoad
  52. } from '@dcloudio/uni-app'
  53. const searchWord = ref("")
  54. const isMember = ref(false);
  55. const tabsList = ref([{
  56. name: '全部'
  57. }, {
  58. name: '精英训练营'
  59. }, {
  60. name: '领袖锻造营'
  61. }, {
  62. name: '合规专训营'
  63. }]);
  64. const currentTab = ref(0)
  65. // 展示的课程
  66. const filterCourses = ref([]);
  67. const courses = ref([{
  68. id: 1,
  69. keChengMingCheng: "前端开发基础前端开发基础前端开发基础",
  70. keChengLeXing: "精英训练营",
  71. shouKeZhe: "张老师",
  72. shouKeShiJian: "2023-10-01",
  73. keChengTuPian: "https://tse3-mm.cn.bing.net/th/id/OIP-C.YKoZzgmubNBxQ8j-mmoTKAHaEK?rs=1&pid=ImgDetMain",
  74. jiaGe: 99.00,
  75. isGouMai: false,
  76. isShouCang: true,
  77. fuFeiLeiXing: "免费" // 新增字段,标识课程的付费类型
  78. },
  79. {
  80. id: 2,
  81. keChengMingCheng: "Vue.js 从入门到精通",
  82. keChengLeXing: "领袖锻造营",
  83. shouKeZhe: "李老师",
  84. shouKeShiJian: "2023-09-15",
  85. keChengTuPian: "https://pic3.zhimg.com/v2-e52354ffdbd94a8e0a7649eacd34a788_r.jpg?source=1940ef5c",
  86. jiaGe: 199.00,
  87. isGouMai: false,
  88. isShouCang: false,
  89. fuFeiLeiXing: "会员免费"
  90. },
  91. {
  92. id: 3,
  93. keChengMingCheng: "React 开发实战",
  94. keChengLeXing: "领袖锻造营",
  95. shouKeZhe: "王老师",
  96. shouKeShiJian: "2023-11-05",
  97. keChengTuPian: "https://desk-fd.zol-img.com.cn/t_s960x600c5/g4/M03/00/0C/Cg-4zFS8bC-Ie9zBADCvovJAqiEAATJ8wDX__cAMK-6184.jpg",
  98. jiaGe: 149.00,
  99. isGouMai: false,
  100. isShouCang: false,
  101. fuFeiLeiXing: "付费"
  102. },
  103. {
  104. id: 4,
  105. keChengMingCheng: "Node.js 全栈开发",
  106. keChengLeXing: "合规专训营",
  107. shouKeZhe: "赵老师",
  108. shouKeShiJian: "2023-08-20",
  109. keChengTuPian: "https://pic3.zhimg.com/v2-e52354ffdbd94a8e0a7649eacd34a788_r.jpg?source=1940ef5c",
  110. jiaGe: 299.00,
  111. isGouMai: true,
  112. isShouCang: false,
  113. fuFeiLeiXing: "付费"
  114. },
  115. {
  116. id: 5,
  117. keChengMingCheng: "移动端开发技巧",
  118. keChengLeXing: "精英训练营",
  119. shouKeZhe: "钱老师",
  120. shouKeShiJian: "2025-07-18",
  121. keChengTuPian: "https://desk-fd.zol-img.com.cn/t_s960x600c5/g4/M03/00/0C/Cg-4zFS8bC-Ie9zBADCvovJAqiEAATJ8wDX__cAMK-6184.jpg",
  122. jiaGe: 89.00,
  123. isGouMai: true,
  124. isShouCang: false,
  125. fuFeiLeiXing: "付费"
  126. },
  127. {
  128. id: 6,
  129. keChengMingCheng: "11Vue.js 从入门到精通",
  130. keChengLeXing: "领袖锻造营",
  131. shouKeZhe: "李老师11",
  132. shouKeShiJian: "2023-09-15",
  133. keChengTuPian: "https://pic3.zhimg.com/v2-e52354ffdbd94a8e0a7649eacd34a788_r.jpg?source=1940ef5c",
  134. jiaGe: 199.00,
  135. isGouMai: true,
  136. isShouCang: false,
  137. fuFeiLeiXing: "会员免费"
  138. },
  139. {
  140. id: 7,
  141. keChengMingCheng: "113Vue.js 从入门到精通",
  142. keChengLeXing: "领袖锻造营",
  143. shouKeZhe: "李老师11",
  144. shouKeShiJian: "2025-09-15",
  145. keChengTuPian: "https://pic3.zhimg.com/v2-e52354ffdbd94a8e0a7649eacd34a788_r.jpg?source=1940ef5c",
  146. jiaGe: 199.00,
  147. isGouMai: true,
  148. isShouCang: false,
  149. fuFeiLeiXing: "会员免费"
  150. },
  151. ]);
  152. // 按钮的文字
  153. function getButtonText(course) {
  154. const currentDate = new Date();
  155. const classDate = new Date(course.shouKeShiJian);
  156. if (course.fuFeiLeiXing === "免费") {
  157. return "免费";
  158. }
  159. if (course.fuFeiLeiXing === "会员免费") {
  160. if (isMember.value) return "会员免费";
  161. if (!course.isGouMai && !isMember.value) return "会员免费";
  162. if (course.isGouMai) {
  163. return currentDate < classDate ? "点击查看" : "点击查看回放";
  164. }
  165. }
  166. if (course.fuFeiLeiXing === "付费") {
  167. if (!course.isGouMai) return "点击购买";
  168. return currentDate < classDate ? "点击查看" : "点击查看回放";
  169. }
  170. return "error"; // 默认返回
  171. }
  172. // 按钮的样式
  173. function getButtonClass(course) {
  174. if (course.fuFeiLeiXing === "免费") return 'free';
  175. if (course.fuFeiLeiXing === "会员免费") {
  176. if (isMember.value) return 'member-free';
  177. return course.isGouMai ? (new Date() < new Date(course.shouKeShiJian) ? 'purchased' : 'replay') :
  178. 'member-free';
  179. }
  180. if (course.fuFeiLeiXing === "付费") {
  181. return course.isGouMai ? (new Date() < new Date(course.shouKeShiJian) ? 'purchased' : 'replay') : 'purchase';
  182. }
  183. return 'error';
  184. }
  185. // 日期格式:xxxx年xx月xx日(星期x)
  186. function getDateWeek(val) {
  187. const date = new Date(val);
  188. const daysOfWeek = ['日', '一', '二', '三', '四', '五', '六'];
  189. const year = date.getFullYear();
  190. const month = date.getMonth() + 1; // 注意:月份从0开始
  191. const day = date.getDate();
  192. const dayOfWeek = daysOfWeek[date.getUTCDay()];
  193. // const result = `${year}年${month}月${day}日(星期${dayOfWeek})`
  194. return `${year}年${month}月${day}日(星期${dayOfWeek})`
  195. }
  196. // 切换搜索框下面的tab
  197. function changeTab(index) {
  198. if (index === 0) {
  199. filterCourses.value = courses.value
  200. return
  201. }
  202. filterCourses.value = courses.value.filter(item => item.keChengLeXing == tabsList.value[index].name)
  203. }
  204. // 搜索
  205. function search(e) {
  206. console.log(e, "searchword")
  207. }
  208. // 收藏
  209. function collectCourse(id,index) {
  210. // 联调后端,
  211. // 返回成功后
  212. courses.value[index].isShouCang = !courses.value[index].isShouCang
  213. }
  214. // 初始化
  215. function init() {
  216. // 初始化页面,获取数据
  217. filterCourses.value = courses.value
  218. searchWord.value = ""
  219. }
  220. function toPage(course) {
  221. uni.navigateTo({
  222. url: `/pages/goOnEdu/course/courseDetail/courseDetail?id=${course.id}&name=${course.keChengMingCheng}`
  223. });
  224. }
  225. onLoad(() => {
  226. const userInfo = uni.getStorageSync("userinfo");
  227. isMember.value = userInfo.isMember
  228. init()
  229. })
  230. </script>
  231. <style lang="scss" scoped>
  232. .container {
  233. // padding: 20px;
  234. }
  235. .title {
  236. font-size: 48rpx;
  237. margin-bottom: 30rpx;
  238. }
  239. .course-item {
  240. margin: 20rpx 0;
  241. display: flex;
  242. overflow: hidden;
  243. .course-item-image {
  244. width: 200rpx;
  245. height: 260rpx;
  246. flex: 0 0 auto;
  247. margin-right: 20rpx;
  248. .course-image {
  249. width: 100%;
  250. }
  251. }
  252. .course-item-content {
  253. flex: 1;
  254. position: relative;
  255. view {
  256. margin-bottom: 15rpx;
  257. }
  258. .course-title {
  259. font-weight: bold;
  260. margin-right: 10px;
  261. font-size: 28rpx;
  262. color: #000;
  263. }
  264. .course-type,
  265. .course-teacher,
  266. .course-date,
  267. .course-price {
  268. font-size: 24rpx;
  269. color: #000;
  270. }
  271. .course-price {
  272. color: #fe0000;
  273. letter-spacing: 2rpx;
  274. }
  275. .button::after {
  276. content: none;
  277. /* 移除内容 */
  278. }
  279. .button {
  280. position: absolute;
  281. right: 0;
  282. bottom: 0;
  283. min-width: 80px;
  284. padding: 0 40rpx;
  285. white-space: nowrap;
  286. height: 45rpx;
  287. line-height: 45rpx;
  288. font-size: 22rpx;
  289. /* padding: 0; */
  290. border-radius: 50rpx;
  291. color: white;
  292. border: none;
  293. }
  294. .free {
  295. background-color: #006af4;
  296. }
  297. .purchase {
  298. background-color: #fe0000;
  299. }
  300. .member-free {
  301. background-color: transparent;
  302. background-image: url('~@/static/images/bg-label.png');
  303. background-size: cover;
  304. background-repeat: no-repeat;
  305. color: #000;
  306. height: initial;
  307. padding: 6rpx 0 3rpx;
  308. border-radius: 0;
  309. }
  310. .replay {
  311. background-color: #006af4;
  312. }
  313. .purchased {
  314. background-color: #006af4;
  315. }
  316. }
  317. }
  318. </style>