courseHome.vue 7.1 KB

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