index.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. <template>
  2. <view class="vip-box">
  3. <view class="vip_top hflex acenter jbetween">
  4. <view class="vip_uesr hflex acenter">
  5. <image :src="user.avatar" mode="aspectFill"></image>
  6. <view class="name vflex">
  7. <text>{{user.username}}</text>
  8. <text>{{user.introduction}}</text>
  9. </view>
  10. </view>
  11. <view class="btn hflex acenter" v-if="showsign" @click="tosign">
  12. <image src="/static/images/rili.png" mode="aspectFill"></image>
  13. <text>{{is_qiandao == 1 ? '已签到' : '签到'}}</text>
  14. </view>
  15. </view>
  16. <view class="level hflex acenter jbetween" v-if="showlevel">
  17. <text>LV{{user.level || 1}}</text>
  18. <u-line-progress :percentage="user.already_upgrade_rate * 100" inactiveColor="#CCCCCC" height="2"
  19. activeColor="#FFFFFF"></u-line-progress>
  20. <text>LV{{Number(user.level) + 1 || 2}}</text>
  21. </view>
  22. <view class="bottom hflex acenter jbetween">
  23. <text>{{user.is_vip ? user.vip_expired_at : '开通会员享福利'}}</text>
  24. <text @click="show_buy = true">{{user.is_vip ? '立即续费' : '立即开通'}}</text>
  25. </view>
  26. <u-popup :show="show" mode="center" @close="toclose">
  27. <view class="qiandao vflex acenter jcenter">
  28. <image src="/static/images/qiandao.png" mode="aspectFill"></image>
  29. <text>签到成功</text>
  30. <text>获得积分+ {{jifen}}</text>
  31. <view class="btn" @click="show = false">确定</view>
  32. </view>
  33. </u-popup>
  34. <u-popup :show="show_buy" mode="bottom" @close="toclose" :round="16">
  35. <view class="vip-buy">
  36. <view class="buy-title">会员充值</view>
  37. <view class="buy-list hflex acenter jbetween">
  38. <view class="buy-item vflex acenter jcenter" :class="buy_active == index ? 'buy-active' : ''"
  39. v-for="(item,index) in buylist" :key="index">
  40. <text class="name">{{item.name}}</text>
  41. <text class="price"><span>¥</span>{{item.price}}</text>
  42. <view class="text">额外获得{{item.integral}}积分</view>
  43. <view class="text">额外免费拍摄{{item.coupon_count}}次</view>
  44. <view class="text">升级领福利</view>
  45. <view class="text">积分商城折扣</view>
  46. </view>
  47. </view>
  48. <view class="buy-title">支付方式</view>
  49. <view class="hflex acenter jbetween pay-item">
  50. <view class="hflex acenter">
  51. <image src="../../static/images/ali-pay.png" mode="aspectFill" class="pay-icon"></image>
  52. <text>支付宝支付</text>
  53. </view>
  54. <view class="" @click="pay_active = 1">
  55. <image src="../../static/images/check-active.png" mode="aspectFill" class="pay-select"
  56. v-if="pay_active == 1"></image>
  57. <image src="../../static/images/check.png" mode="aspectFill" class="pay-select" v-else></image>
  58. </view>
  59. </view>
  60. <view class="hflex acenter jbetween pay-item">
  61. <view class="hflex acenter">
  62. <image src="../../static/images/wx-pay.png" mode="aspectFill" class="pay-icon"></image>
  63. <text>微信支付</text>
  64. </view>
  65. <view class="" @click="pay_active = 2">
  66. <image src="../../static/images/check-active.png" mode="aspectFill" class="pay-select"
  67. v-if="pay_active == 2"></image>
  68. <image src="../../static/images/check.png" mode="aspectFill" class="pay-select" v-else></image>
  69. </view>
  70. </view>
  71. <view class="bottom-buy" @click="topay">
  72. 确认支付
  73. </view>
  74. </view>
  75. </u-popup>
  76. </view>
  77. </template>
  78. <script>
  79. import $api from '@/static/js/api.js'
  80. export default {
  81. props: {
  82. user: {
  83. typeof: Object,
  84. default: {}
  85. },
  86. showsign: {
  87. typeof: Boolean,
  88. default: true
  89. },
  90. showlevel: {
  91. typeof: Boolean,
  92. default: true
  93. },
  94. },
  95. data() {
  96. return {
  97. show: false,
  98. show_buy: false,
  99. jifen: 0,
  100. buylist: [],
  101. pay_active: 0,
  102. buy_active: 0,
  103. is_qiandao: 0
  104. }
  105. },
  106. mounted() {
  107. this.getlist()
  108. this.getdata()
  109. this.getsign()
  110. },
  111. methods: {
  112. getsign() {
  113. var that = this
  114. $api.req({
  115. url: 'sign/is-sign'
  116. }, function(res) {
  117. that.is_qiandao = res.data
  118. })
  119. },
  120. getdata() {
  121. var that = this
  122. $api.req({
  123. url: 'config?module=sign'
  124. }, function(res) {
  125. that.jifen = res.data.integral_num
  126. })
  127. },
  128. topay() {
  129. var that = this
  130. let pay_type = ''
  131. if (that.pay_active == '1') {
  132. pay_type = 'alipay'
  133. } else if (that.pay_active == '2') {
  134. pay_type = 'wechat'
  135. } else {
  136. pay_type = 'integral'
  137. }
  138. $api.req({
  139. url: 'vip/order',
  140. method: 'post',
  141. data: {
  142. vip_id: that.buylist[that.buy_active].id,
  143. pay_type: pay_type,
  144. platform: 'app'
  145. }
  146. }, function(res) {
  147. if (res.code == 10000) {
  148. $api.info('支付成功')
  149. that.show_buy = false
  150. }
  151. })
  152. },
  153. getlist() {
  154. var that = this
  155. $api.req({
  156. url: 'vip/product',
  157. }, function(res) {
  158. that.buylist = res.data
  159. })
  160. },
  161. toclose() {
  162. this.show = false
  163. this.show_buy = false
  164. },
  165. tosign() {
  166. var _this = this
  167. $api.req({
  168. url: 'sign',
  169. method: 'POST'
  170. }, function(res) {
  171. if (res.code == 10000) {
  172. _this.show = true
  173. _this.is_qiandao = 1
  174. } else if (res.code == 20001) {
  175. uni.$u.toast('请先登录')
  176. }
  177. })
  178. },
  179. }
  180. }
  181. </script>
  182. <style lang="scss">
  183. .vip-box {
  184. background: linear-gradient(225deg, #4C4B4E 0%, #121212 100%);
  185. border-radius: 16rpx;
  186. box-sizing: border-box;
  187. padding: 28rpx 20rpx;
  188. .qiandao {
  189. width: 550rpx;
  190. image {
  191. width: 270rpx;
  192. height: 260rpx;
  193. padding: 40rpx;
  194. }
  195. text {
  196. font-size: 28rpx;
  197. font-family: SFPro, SFPro;
  198. font-weight: 400;
  199. color: #222222;
  200. padding: 14rpx 0 0;
  201. }
  202. .btn {
  203. margin: 48rpx 0 60rpx;
  204. width: 250rpx;
  205. height: 80rpx;
  206. background: #00B0B0;
  207. border-radius: 8rpx;
  208. font-size: 32rpx;
  209. font-family: PingFangSC, PingFang SC;
  210. font-weight: 400;
  211. color: #FFFFFF;
  212. line-height: 80rpx;
  213. letter-spacing: 1px;
  214. text-align: center;
  215. }
  216. }
  217. .bottom {
  218. text {
  219. font-size: 24rpx;
  220. font-family: PingFangSC, PingFang SC;
  221. font-weight: 400;
  222. color: #FFFFFF;
  223. }
  224. text:last-child {
  225. color: #FF7B15;
  226. }
  227. }
  228. .level {
  229. padding: 44rpx 0;
  230. text {
  231. font-size: 32rpx;
  232. font-family: Silom;
  233. color: #FFFFFF;
  234. }
  235. text:first-child {
  236. padding-right: 16rpx;
  237. }
  238. text:last-child {
  239. padding-left: 16rpx;
  240. }
  241. }
  242. .vip_top {
  243. .btn {
  244. background: #00B0B0;
  245. border-radius: 40rpx;
  246. padding: 8rpx 18rpx;
  247. image {
  248. width: 36rpx;
  249. height: 36rpx;
  250. margin: 8rpx;
  251. }
  252. text {
  253. font-size: 24rpx;
  254. font-family: PingFangSC, PingFang SC;
  255. font-weight: 400;
  256. color: #FFFFFF;
  257. }
  258. }
  259. .vip_uesr {
  260. image {
  261. width: 80rpx;
  262. height: 80rpx;
  263. border-radius: 50%;
  264. margin: 0 12rpx 0 0;
  265. }
  266. .name {
  267. text:first-child {
  268. font-size: 28rpx;
  269. font-family: PingFangSC, PingFang SC;
  270. font-weight: 400;
  271. color: #FFFFFF;
  272. }
  273. text:last-child {
  274. font-size: 24rpx;
  275. font-family: PingFangSC, PingFang SC;
  276. font-weight: 400;
  277. color: #999999;
  278. padding: 6rpx 0 0;
  279. }
  280. }
  281. }
  282. }
  283. .vip-buy {
  284. padding: 34rpx 24rpx;
  285. .buy-title {
  286. font-size: 32rpx;
  287. color: #222222;
  288. line-height: 44rpx;
  289. }
  290. .pay-item {
  291. padding: 42rpx 0 0;
  292. image {
  293. width: 44rpx;
  294. height: 44rpx;
  295. }
  296. text {
  297. font-size: 30rpx;
  298. color: #333333;
  299. line-height: 42rpx;
  300. padding-left: 28rpx;
  301. }
  302. }
  303. .bottom-buy {
  304. margin: 180rpx 0 88rpx;
  305. width: 694rpx;
  306. height: 88rpx;
  307. background: #00B0B0;
  308. border-radius: 48rpx;
  309. font-size: 32rpx;
  310. color: #FFFFFF;
  311. line-height: 88rpx;
  312. text-align: center;
  313. }
  314. .buy-list {
  315. padding: 34rpx 12rpx;
  316. .buy-item {
  317. width: 320rpx;
  318. height: 392rpx;
  319. background: #F8F8F8;
  320. border-radius: 16rpx;
  321. border: 2rpx solid #D3D3D3;
  322. .name {
  323. font-size: 28rpx;
  324. color: #222222;
  325. line-height: 40rpx;
  326. text-align: center;
  327. }
  328. .price {
  329. padding: 30rpx 0 24rpx;
  330. font-size: 60rpx;
  331. color: #222222;
  332. line-height: 30rpx;
  333. text-align: center;
  334. }
  335. span {
  336. font-size: 24rpx;
  337. }
  338. .text {
  339. font-size: 20rpx;
  340. color: #222222;
  341. line-height: 24rpx;
  342. padding: 0 0 20rpx;
  343. }
  344. }
  345. .buy-active {
  346. border: 2rpx solid #DD6838;
  347. background: #FFF9F4;
  348. }
  349. }
  350. }
  351. }
  352. </style>