index.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <view class="text" v-if="is_member">会员已与{{member_date}}过期</view>
  5. <view class="text" v-else>开通会员,立享多种特权</view>
  6. </view>
  7. <view class="box">
  8. <view class="title">全年VIP</view>
  9. <view class="price">¥{{price}}<span style="font-size: 40rpx;">/年</span></view>
  10. <view class="title" style="margin: 36rpx 0 20rpx;">会员权益</view>
  11. <u-parse :content="text"></u-parse>
  12. </view>
  13. <view class="bottom">
  14. <view class="hflex acenter">
  15. <u-checkbox-group @change="checkboxChange">
  16. <u-checkbox v-model="agree" shape="circle"></u-checkbox>
  17. </u-checkbox-group>
  18. <view class="text">已阅读并同意<span class="read" @click="open">《会员服务协议》</span></view>
  19. </view>
  20. <view class="button hflex acenter jcenter" @click="openMember">
  21. <view>确定协议并开通</view>
  22. </view>
  23. </view>
  24. <u-popup :show="pay_show" @close="close" mode="bottom" :round="20" :closeable="true">
  25. <view class="popup">
  26. <view class="title">立即支付</view>
  27. <view class="price">¥{{price}}</view>
  28. <!-- <view class="text1">支付方式</view> -->
  29. <view class="vflex">
  30. <u-radio-group @change="checkboxChange1" placement="column" value="checkValue">
  31. <view class="box1 hflex acenter jbetween">
  32. <view class="hflex acenter">
  33. <image src="/static/images/shop/wx_pay.png" style="width: 48rpx;height: 48rpx;"></image>
  34. <view class="box_right">微信支付</view>
  35. </view>
  36. <u-radio :checked="true" name="0" shape="circle"></u-radio>
  37. </view>
  38. <view class="box1 hflex acenter jbetween">
  39. <view class="hflex acenter">
  40. <image src="/static/images/shop/yue_pay.png" style="width: 48rpx;height: 48rpx;"></image>
  41. <view class="box_right">余额支付(¥{{amount}})</view>
  42. </view>
  43. <view class="hflex acenter">
  44. <view class="info">{{info}}</view>
  45. <u-radio name="1" shape="circle"></u-radio>
  46. </view>
  47. </view>
  48. </u-radio-group>
  49. </view>
  50. <view class="btn" @click="pay">立即支付</view>
  51. </view>
  52. </u-popup>
  53. </view>
  54. </template>
  55. <script>
  56. import $api from '@/static/js/api.js'
  57. var that = ''
  58. export default {
  59. data() {
  60. return {
  61. text: '',
  62. agree: false,
  63. agree1: '',
  64. pay_show: false,
  65. price: 0,
  66. is_member: 1,
  67. member_date: '2022-12-01',
  68. amount: '',
  69. info: '',
  70. checkValue: [
  71. {
  72. name:'wx',
  73. },
  74. {
  75. name: 'yue'
  76. }
  77. ],
  78. data: ''
  79. }
  80. },
  81. onLoad() {
  82. that = this
  83. that.getData()
  84. that.getPay()
  85. },
  86. methods: {
  87. getData() {
  88. $api.req({
  89. url: '/data/api.auth.Center/getvipinfo',
  90. method: 'POST',
  91. }, function(res) {
  92. if(res.code == 1) {
  93. that.price = res.data.price
  94. that.text = res.data.user_vip_des
  95. that.data = res.data.user_vip_agreement
  96. }
  97. })
  98. },
  99. // 阅读并同意
  100. checkboxChange(n) {
  101. this.agree = !this.agree
  102. },
  103. // 选择支付方式
  104. checkboxChange1(n) {
  105. this.agree1 = n
  106. },
  107. // 确定协议并开通
  108. openMember() {
  109. if(that.agree) {
  110. that.pay_show = true
  111. } else {
  112. $api.info('请先阅读并同意《会员服务协议》')
  113. }
  114. },
  115. open() {
  116. uni.setStorageSync('agreement',that.data)
  117. $api.jump('/pages/user/agreement?title=会员服务协议')
  118. },
  119. // 关闭弹窗
  120. close() {
  121. that.pay_show = false
  122. },
  123. // 立即支付
  124. pay() {
  125. if(that.agree1) {
  126. that.pay_show = true
  127. } else {
  128. $api.info('请先选择支付方式')
  129. }
  130. }
  131. },
  132. }
  133. </script>
  134. <style lang="scss" scoped>
  135. .content {
  136. background-color: #e4e8f4;
  137. .top {
  138. background: url('/static/images/mine/member_bg.png') no-repeat;
  139. background-size: 100%;
  140. width: 100%;
  141. height: 480rpx;
  142. .text {
  143. font-size: 26rpx;
  144. color: #fff;
  145. padding: 332rpx 0 0 84rpx;
  146. }
  147. }
  148. .box {
  149. width: 100%;
  150. height: calc(100vh - 480rpx);
  151. background-color: #fff;
  152. border-radius: 40rpx 40rpx 0 0;
  153. box-sizing: border-box;
  154. padding: 36rpx 30rpx;
  155. margin-bottom: 246rpx;
  156. .title {
  157. font-size: 40rpx;
  158. color: #444;
  159. }
  160. .price {
  161. font-size: 60rpx;
  162. color: #ff2626;
  163. padding:34rpx 0 52rpx;
  164. border-bottom: 1rpx solid #f2f2f2;
  165. }
  166. }
  167. .bottom {
  168. width: 100%;
  169. height: 246rpx;
  170. background-color: #fff;
  171. box-shadow: 0 -2rpx 16rpx 0 rgba(215,215,215,0.5);
  172. position: fixed;
  173. bottom: 0;
  174. box-sizing: border-box;
  175. padding: 36rpx 30rpx;
  176. .text {
  177. font-size: 24rpx;
  178. color: #9c9c9c;
  179. }
  180. .read {
  181. color: #2a63f3;
  182. }
  183. .button {
  184. width: 690rpx;
  185. height: 96rpx;
  186. background-color: #506dff;
  187. border-radius: 50rpx;
  188. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  189. font-size: 40rpx;
  190. color: #fff;
  191. margin: 40rpx 0 36rpx;
  192. }
  193. }
  194. .popup {
  195. width: 100%;
  196. box-sizing: border-box;
  197. padding: 48rpx 30rpx;
  198. background-color: #fff;
  199. .title {
  200. width: 100%;
  201. text-align: center;
  202. font-size: 36rpx;
  203. color: #222;
  204. margin-bottom: 50rpx;
  205. }
  206. .price {
  207. width: 100%;
  208. text-align: center;
  209. font-size: 60rpx;
  210. color: #ff2626;
  211. margin-bottom: 36rpx;
  212. }
  213. .text1 {
  214. font-size: 30rpx;
  215. color: #222;
  216. margin-bottom: 28rpx;
  217. }
  218. .box1 {
  219. width: 100%;
  220. box-sizing: border-box;
  221. padding: 36rpx 20rpx;
  222. border-bottom: 1rpx solid #F2F2F2;
  223. // background-color: #f6f6f6;
  224. // border-radius: 20rpx;
  225. margin-top: 20rpx;
  226. .box_img {
  227. width: 48rpx;
  228. height: 48rpx;
  229. }
  230. .box_right {
  231. margin-left: 20rpx;
  232. font-size: 26rpx;
  233. color: #555;
  234. }
  235. }
  236. .box1:nth-last-child(1) {
  237. border: none;
  238. }
  239. .btn {
  240. margin-top: 166rpx;
  241. width: 670rpx;
  242. height: 96rpx;
  243. background-color: #506dff;
  244. border-radius: 50rpx;
  245. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  246. font-size: 40rpx;
  247. color: #fff;
  248. text-align: center;
  249. line-height: 96rpx;
  250. // margin: 40rpx 0 36rpx;
  251. }
  252. }
  253. }
  254. </style>