mineRecord.vue 6.3 KB

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