coursePay.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <template>
  2. <view class="container">
  3. <view class="pay-content">
  4. <image src="/static/images/edu-icon/pay.png" class="pay-img"></image>
  5. <text class="pay-text">支付成功</text>
  6. <button class="play-btn" @click="toWatch">点击观看</button>
  7. </view>
  8. <view class="pay-member">
  9. <text>个人会员或单位会员免费,点击现在入会></text>
  10. </view>
  11. </view>
  12. </template>
  13. <script setup>
  14. import { ref } from 'vue'
  15. import { onLoad } from '@dcloudio/uni-app'
  16. const courseId = ref("");
  17. const toWatch = () => {
  18. // uni.redirectTo({
  19. // url:"/pages/goOnEdu/course/courseDetail/courseDetail?id=" + courseId.value
  20. // })
  21. uni.navigateBack({
  22. delta: 1
  23. });
  24. }
  25. onLoad((option) => {
  26. const { id } = option
  27. courseId.value = id
  28. console.log('onLoad')
  29. })
  30. </script>
  31. <style lang="scss" scoped>
  32. .container {
  33. height: 100vh;
  34. width: 100vw;
  35. // padding: 0 20rpx;
  36. }
  37. .pay-content{
  38. height: 70%;
  39. display: flex;
  40. flex-direction: column;
  41. justify-content: center;
  42. align-items: center;
  43. .pay-img{
  44. width: 180rpx;
  45. height: 180rpx;
  46. margin-bottom: 20rpx;
  47. }
  48. .pay-text{
  49. font-size: 70rpx;
  50. }
  51. .play-btn{
  52. margin-top: 100rpx;
  53. width: 200rpx;
  54. height: 70rpx;
  55. line-height: 70rpx;
  56. background-color: #0069f6;
  57. color: #fff;
  58. border-radius: 40rpx;
  59. }
  60. }
  61. .pay-member{
  62. color: red;
  63. text-align: center;
  64. font-size: 32rpx;
  65. }
  66. </style>