courseOrder.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. <template>
  2. <view class="container">
  3. <view class="course-item">
  4. <view class="course-item-image">
  5. <image class="course-image" :src="course.keChengTuPian" mode="aspectFill"></image>
  6. </view>
  7. <view class="course-item-content">
  8. <view class="course-title">
  9. <text>{{ course.keChengMingCheng }}</text>
  10. <image style="width: 25rpx;height: 25rpx;padding-left: 20rpx;"
  11. :src="course.isShouCang ? '/static/edu-icon/favi-icon.png' : '/static/edu-icon/no-favi-icon.png'">
  12. </image>
  13. </view>
  14. <view class="course-type">{{ course.keChengLeXing }}</view>
  15. <view class="course-teacher">
  16. <u-icon name="account" size="28"></u-icon>
  17. {{ course.shouKeZhe }}
  18. </view>
  19. <view class="course-date">
  20. <u-icon name="clock" size="28"></u-icon>
  21. {{ getDateWeek(course.shouKeRiQi) }}
  22. </view>
  23. <view class="course-price">¥{{ course.jiaGe }}元</view>
  24. </view>
  25. </view>
  26. <view class="course-form" style="margin-top: 20rpx;">
  27. <view class="course-form-item">
  28. <view class="course-label">
  29. 开课时间
  30. </view>
  31. <view class="course-value">
  32. {{ course.shouKeRiQi }}{{ course.shouKeShiJian }}开课
  33. </view>
  34. </view>
  35. <view class="course-form-item">
  36. <view class="course-label">
  37. 支付方式
  38. </view>
  39. <view class="course-value" @click="show = true">
  40. {{ activePayType }}<i class="iconfont icon-sangedian-copy"></i>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="course-form" style="margin-top: 20rpx;">
  45. <view class="course-form-item">
  46. <view class="course-label">
  47. 课程金额
  48. </view>
  49. <view class="course-value">
  50. ¥{{ course.jiaGe }}
  51. </view>
  52. </view>
  53. <view class="course-form-item">
  54. <view class="course-label">
  55. 积分抵扣
  56. </view>
  57. <view class="course-value">
  58. </view>
  59. </view>
  60. <view class="course-form-item">
  61. <view class="course-label">
  62. 合计金额
  63. </view>
  64. <view class="course-value">
  65. ¥{{ price }}
  66. </view>
  67. </view>
  68. </view>
  69. <view class="course-form" style="margin-top: 20rpx;">
  70. <view class="course-form-item">
  71. <view class="course-label">
  72. 课程有效期:<text class="text-red">{{ course.keChengYouXiaoQi }}</text>
  73. </view>
  74. </view>
  75. </view>
  76. <view class="course-form" style="background: none;">
  77. <view class="course-form-item">
  78. <text class="text-red" style="font-weight: bold;">个人会员或单位会员免费,点击现在入会></text>
  79. </view>
  80. </view>
  81. <view class="pay">
  82. <view class="pay-price">
  83. ¥:{{price}}
  84. </view>
  85. <view>
  86. <button class="pay-btn" @click="toBuy">立即购买</button>
  87. </view>
  88. </view>
  89. <u-action-sheet :list="list" v-model="show" @click="clickAction" safe-area-inset-bottom></u-action-sheet>
  90. </view>
  91. </template>
  92. <script setup>
  93. import {
  94. ref
  95. } from 'vue'
  96. import {
  97. onLoad
  98. } from '@dcloudio/uni-app'
  99. const courseId = ref("");
  100. const course = ref({})
  101. const price = ref(0)
  102. const activePayType = ref("微信支付")
  103. const list = ref([{
  104. text: '微信支付'
  105. }, {
  106. text: '支付宝支付'
  107. }])
  108. const show = ref(false)
  109. const toBuy = () => {
  110. uni.redirectTo({
  111. url: "/pages/goOnEdu/course/courseDetail/coursePay?id=" + courseId.value
  112. })
  113. }
  114. const clickAction = (i) =>{
  115. // console.log(i)
  116. activePayType.value = list.value[i].text
  117. show.value = false
  118. }
  119. // 加载数据
  120. const init = (id) => {
  121. // 加载数据
  122. courseId.value = id
  123. course.value = {
  124. id: id,
  125. keChengMingCheng: "11Vue.js 从入门到精通",
  126. keChengLeXing: "领袖锻造营",
  127. shouKeZhe: "李老师11",
  128. shouKeRiQi: "2023-09-15",
  129. shouKeShiJian: "18:00",
  130. keChengTuPian: "https://tse4-mm.cn.bing.net/th/id/OIP-C.X_J8jL0bSPQ_jgOrdIbsgQHaEK?rs=1&pid=ImgDetMain",
  131. jiaGe: 199.00,
  132. isGouMai: true,
  133. isShouCang: false,
  134. fuFeiLeiXing: "会员免费",
  135. keChengYouXiaoQi: "用户注销前有效"
  136. }
  137. price.value = course.value.jiaGe
  138. }
  139. // 日期格式:xxxx年xx月xx日(星期x)
  140. function getDateWeek(val) {
  141. const date = new Date(val);
  142. const daysOfWeek = ['日', '一', '二', '三', '四', '五', '六'];
  143. const year = date.getFullYear();
  144. const month = date.getMonth() + 1; // 注意:月份从0开始
  145. const day = date.getDate();
  146. const dayOfWeek = daysOfWeek[date.getUTCDay()];
  147. // const result = `${year}年${month}月${day}日(星期${dayOfWeek})`
  148. return `${year}年${month}月${day}日(星期${dayOfWeek})`
  149. }
  150. onLoad((option) => {
  151. const {
  152. id
  153. } = option;
  154. init(id);
  155. console.log('onLoad', id)
  156. })
  157. </script>
  158. <style lang="scss" scoped>
  159. .container {
  160. height: 100vh;
  161. width: 100vw;
  162. background-color: $uni-bg-color;
  163. // padding: 0 20rpx;
  164. }
  165. .course-item {
  166. padding: 20rpx;
  167. background-color: #fff;
  168. display: flex;
  169. overflow: hidden;
  170. margin: 0 20rpx;
  171. border-radius: 10rpx;
  172. .course-item-image {
  173. width: 200rpx;
  174. height: 280rpx;
  175. flex: 0 0 auto;
  176. margin-right: 20rpx;
  177. .course-image {
  178. width: 100%;
  179. height: 100%;
  180. }
  181. }
  182. .course-item-content {
  183. flex: 1;
  184. position: relative;
  185. view {
  186. margin-bottom: 22rpx;
  187. }
  188. .course-title {
  189. font-weight: bold;
  190. margin-right: 10px;
  191. font-size: 28rpx;
  192. color: #000;
  193. }
  194. .course-type,
  195. .course-teacher,
  196. .course-date,
  197. .course-price {
  198. font-size: 30rpx;
  199. color: #000;
  200. }
  201. .course-price {
  202. color: #fe0000;
  203. letter-spacing: 2rpx;
  204. }
  205. .button::after {
  206. content: none;
  207. /* 移除内容 */
  208. }
  209. .button {
  210. position: absolute;
  211. right: 0;
  212. bottom: 0;
  213. min-width: 80px;
  214. padding: 0 40rpx;
  215. white-space: nowrap;
  216. height: 45rpx;
  217. line-height: 45rpx;
  218. font-size: 22rpx;
  219. /* padding: 0; */
  220. border-radius: 50rpx;
  221. color: white;
  222. border: none;
  223. }
  224. .free {
  225. background-color: #006af4;
  226. }
  227. .purchase {
  228. background-color: #fe0000;
  229. }
  230. .member-free {
  231. background-color: transparent;
  232. background-image: url('~@/static/images/bg-label.png');
  233. background-size: cover;
  234. background-repeat: no-repeat;
  235. color: #000;
  236. height: initial;
  237. padding: 6rpx 0 3rpx;
  238. border-radius: 0;
  239. }
  240. .replay {
  241. background-color: #006af4;
  242. }
  243. .purchased {
  244. background-color: #006af4;
  245. }
  246. }
  247. }
  248. .course-form {
  249. padding: 20rpx;
  250. background-color: #fff;
  251. display: flex;
  252. overflow: hidden;
  253. border-radius: 10rpx;
  254. flex-direction: column;
  255. font-size: 30rpx;
  256. margin: 0 20rpx;
  257. .course-form-item {
  258. display: flex;
  259. justify-content: space-between;
  260. width: 100%;
  261. margin: 20rpx 0;
  262. .iconfont {
  263. display: inline-block;
  264. font-size: 24rpx;
  265. }
  266. }
  267. }
  268. .pay {
  269. position: fixed;
  270. bottom: 0;
  271. width: 100%;
  272. display: flex;
  273. justify-content: space-between;
  274. padding: 40rpx 20rpx env(safe-area-inset-bottom, 0);
  275. background-color: #fff;
  276. align-items: center;
  277. .pay-price {
  278. font-size: 60rpx;
  279. color: red;
  280. font-weight: bold;
  281. }
  282. .pay-btn {
  283. width: 200rpx;
  284. height: 70rpx;
  285. line-height: 70rpx;
  286. background-color: red;
  287. color: #fff;
  288. border-radius: 40rpx;
  289. }
  290. }
  291. .text-red {
  292. color: red;
  293. }
  294. </style>