courseHome.vue 9.2 KB

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