index.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <view class="text" v-if="member_date!==''">会员已与{{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" v-if="combination">{{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. member_date: '',
  67. amount: '',
  68. info: '需组合支付',
  69. checkValue: [
  70. {
  71. name:'wx',
  72. },
  73. {
  74. name: 'yue'
  75. }
  76. ],
  77. data: '',
  78. pay_data: [],
  79. combination: false
  80. }
  81. },
  82. onLoad() {
  83. that = this
  84. that.getData()
  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. var pages = getCurrentPages()
  97. var prePage = pages[pages.length - 2]
  98. that.member_date = prePage.$vm.user.vip_datetime
  99. that.amount = prePage.$vm.user.money
  100. if(Number(that.amount) < Number(that.price)) {
  101. that.combination = true
  102. }
  103. }
  104. })
  105. },
  106. // 阅读并同意
  107. checkboxChange(n) {
  108. this.agree = !this.agree
  109. },
  110. // 选择支付方式
  111. checkboxChange1(n) {
  112. this.agree1 = n
  113. },
  114. // 确定协议并开通
  115. openMember() {
  116. if(that.agree) {
  117. that.pay_show = true
  118. } else {
  119. $api.info('请先阅读并同意《会员服务协议》')
  120. }
  121. },
  122. open() {
  123. uni.setStorageSync('agreement',that.data)
  124. $api.jump('/pages/user/agreement?title=会员服务协议')
  125. },
  126. // 关闭弹窗
  127. close() {
  128. that.pay_show = false
  129. },
  130. // 立即支付
  131. pay() {
  132. if (that.agree1 !== '') {
  133. $api.req({
  134. url: '/data/api.auth.Center/channel',
  135. method: 'POST',
  136. data: {
  137. type: 1,
  138. from: 1
  139. }
  140. }, function(res) {
  141. if(res.code == 1) {
  142. var data = {}
  143. if(that.agree1 == 0) {
  144. var payment = res.data[0]
  145. data = {
  146. pay_code: payment.code
  147. }
  148. } else {
  149. if(!that.combination) {
  150. var payment = res.data[1]
  151. data = {
  152. pay_code: payment.code
  153. }
  154. } else {
  155. data = {
  156. pay_code: res.data[1].code,
  157. difference_pay_code: res.data[0].code
  158. }
  159. }
  160. }
  161. $api.req({
  162. url: '/data/api.auth.Center/openvip',
  163. method: 'POST',
  164. data: data,
  165. }, function(res) {
  166. if(res.code == 1) {
  167. console.log(res);
  168. }
  169. })
  170. }
  171. })
  172. } else {
  173. $api.info('请先选择支付方式')
  174. }
  175. }
  176. },
  177. }
  178. </script>
  179. <style lang="scss" scoped>
  180. .content {
  181. background-color: #e4e8f4;
  182. .top {
  183. background: url('/static/images/mine/member_bg.png') no-repeat;
  184. background-size: 100%;
  185. width: 100%;
  186. height: 480rpx;
  187. .text {
  188. font-size: 26rpx;
  189. color: #fff;
  190. padding: 332rpx 0 0 84rpx;
  191. }
  192. }
  193. .box {
  194. width: 100%;
  195. height: calc(100vh - 480rpx);
  196. background-color: #fff;
  197. border-radius: 40rpx 40rpx 0 0;
  198. box-sizing: border-box;
  199. padding: 36rpx 30rpx;
  200. margin-bottom: 246rpx;
  201. .title {
  202. font-size: 40rpx;
  203. color: #444;
  204. }
  205. .price {
  206. font-size: 60rpx;
  207. color: #ff2626;
  208. padding:34rpx 0 52rpx;
  209. border-bottom: 1rpx solid #f2f2f2;
  210. }
  211. }
  212. .bottom {
  213. width: 100%;
  214. height: 246rpx;
  215. background-color: #fff;
  216. box-shadow: 0 -2rpx 16rpx 0 rgba(215,215,215,0.5);
  217. position: fixed;
  218. bottom: 0;
  219. box-sizing: border-box;
  220. padding: 36rpx 30rpx;
  221. .text {
  222. font-size: 24rpx;
  223. color: #9c9c9c;
  224. }
  225. .read {
  226. color: #2a63f3;
  227. }
  228. .button {
  229. width: 690rpx;
  230. height: 96rpx;
  231. background-color: #506dff;
  232. border-radius: 50rpx;
  233. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  234. font-size: 40rpx;
  235. color: #fff;
  236. margin: 40rpx 0 36rpx;
  237. }
  238. }
  239. .popup {
  240. width: 100%;
  241. box-sizing: border-box;
  242. padding: 48rpx 30rpx;
  243. background-color: #fff;
  244. .title {
  245. width: 100%;
  246. text-align: center;
  247. font-size: 36rpx;
  248. color: #222;
  249. margin-bottom: 50rpx;
  250. }
  251. .price {
  252. width: 100%;
  253. text-align: center;
  254. font-size: 60rpx;
  255. color: #ff2626;
  256. margin-bottom: 36rpx;
  257. }
  258. .text1 {
  259. font-size: 30rpx;
  260. color: #222;
  261. margin-bottom: 28rpx;
  262. }
  263. .box1 {
  264. width: 100%;
  265. box-sizing: border-box;
  266. padding: 36rpx 20rpx;
  267. border-bottom: 1rpx solid #F2F2F2;
  268. // background-color: #f6f6f6;
  269. // border-radius: 20rpx;
  270. margin-top: 20rpx;
  271. .box_img {
  272. width: 48rpx;
  273. height: 48rpx;
  274. }
  275. .box_right {
  276. margin-left: 20rpx;
  277. font-size: 26rpx;
  278. color: #555;
  279. }
  280. }
  281. .box1:nth-last-child(1) {
  282. border: none;
  283. }
  284. .btn {
  285. margin-top: 166rpx;
  286. width: 670rpx;
  287. height: 96rpx;
  288. background-color: #506dff;
  289. border-radius: 50rpx;
  290. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  291. font-size: 40rpx;
  292. color: #fff;
  293. text-align: center;
  294. line-height: 96rpx;
  295. // margin: 40rpx 0 36rpx;
  296. }
  297. }
  298. }
  299. </style>