时空网前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
2.9 KiB

  1. <template>
  2. <view>
  3. <view class="flex lf-p-30">
  4. <view>
  5. <image src="../../static/center/shop-logo.png" style="height: 120rpx;width: 120rpx;" mode="aspectFill"></image>
  6. </view>
  7. <view class="flex flex-direction lf-p-l-20 justify-center">
  8. <view class="lf-font-32 lf-m-b-10 text-black1 lf-line-2">时空网的内部网友</view>
  9. <view class="lf-font-28 lf-color-gray">会员未开通</view>
  10. </view>
  11. </view>
  12. <self-line/>
  13. <view>
  14. <view class="lf-p-t-30 lf-p-l-32 lf-flex-wrap">
  15. <view class="paynum">
  16. <view class="lf-color-white flex justify-center" style="background-color: #F93A3A;border-radius: 10rpx 0 10rpx 0;width: 168rpx;height: 46rpx;">
  17. <text class="lf-font-24" style="padding: 6rpx 12rpx;">成为分销达人</text>
  18. </view>
  19. <view class="lf-m-t-28 text-black lf-font-24 lf-m-l-20">
  20. 需要支付
  21. </view>
  22. <view class="lf-m-l-20 lf-m-t-16"><text class="lf-font-60 lf-font-bold">9.9</text></view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="lf-p-l-32 lf-m-t-40 lf-font-32 text-black1 solid-bottom lf-p-b-20">
  27. 支付方式
  28. </view>
  29. <view class="flex justify-between align-center text-center lf-p-l-32 lf-p-r-32 lf-p-t-30 lf-p-b-30 solid-bottom">
  30. <view class="flex justify-around align-center text-center">
  31. <view class="lf-row-center">
  32. <image src="../../static/center/loginout.png" mode="widthFix" style="width: 44rpx;height: 38rpx;"></image>
  33. </view>
  34. <view class="lf-font-38 lf-m-l-20 lf-w-100 text-black1">微信支付</view>
  35. </view>
  36. <view>
  37. <view>
  38. <image src="../../static/images/system/paysuccess.png" mode="widthFix" style="width: 40rpx;height: 40rpx;"></image>
  39. </view>
  40. </view>
  41. </view>
  42. <view class="btn-bottom" style="bottom: 60rpx;">
  43. <view class="padding-lr-lg lf-m-b-18">
  44. <checkbox-group @change="checkboxChange" style="display: inline-block;">
  45. <checkbox class="lf-text-vertical" style="" :checked="checked"></checkbox>
  46. </checkbox-group>
  47. <view class="lf-m-l-10 lf-font-24 lf-color-gray" style="display: inline-block;">
  48. <text>已阅读并同意</text>
  49. <text @click="enterAgree" class="text-orange">会员服务协议</text>
  50. </view>
  51. </view>
  52. <view class="padding-lr-lg">
  53. <button class="cu-btn block bg-orange lg" style="border-radius: 42rpx;" @tap="subimitApply()">
  54. <text class="lf-font-32 text-white">购买并支付¥9.9</text>
  55. </button>
  56. </view>
  57. </view>
  58. </view>
  59. </template>
  60. <script>
  61. export default {
  62. data() {
  63. return {
  64. checked: false, // 是否勾选协议
  65. }
  66. },
  67. methods: {
  68. // 勾选协议发生变化
  69. checkboxChange(event){
  70. this.checked = event.detail.value.length > 0;
  71. },
  72. // 进入查看协议
  73. enterAgree(){
  74. this.$url('/pages/agreement/agreement?id='+ this.agreement.article_id);
  75. },
  76. }
  77. }
  78. </script>
  79. <style>
  80. .paynum {
  81. width: 280rpx;
  82. height: 280rpx;
  83. border: 1px solid #FE9903;
  84. background-color: #FFF4E4;
  85. border-radius: 10rpx;
  86. }
  87. </style>