| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399 |
- <template>
- <view class="contet">
- <!-- <view class="jg" style="height: 20rpx;background-color: #fff;"></view> -->
- <view class="" style="background-color: #fff;padding-top: 40rpx;position: relative;">
- <image src="../../static/img/ktbg.png" mode="" style="position: absolute;top: 0;width: 750rpx;height: 200rpx;"></image>
- <view class="card" style="position: relative;">
- <view class="card-top flex">
- <view class="avtur"><image :src="userInfo.avatar || '/static/error/missing-face.png'" mode=""></image></view>
- <view class="main">
- <view class="name">{{ userInfo.nickname }}</view>
- <view class="tip" v-if="userInfo.level == 0">尚未开通会员</view>
- </view>
- </view>
- <view class="now-wrap">
- 立即开通
- </view>
- <view class="card-info">
- <view class="info-tit">
- 会员卡
- </view>
- <view class="info-val">
- 100通行证 终身付费会员
- </view>
- </view>
- </view>
- </view>
- <view class="hyjl">
- <view class="jl-tit">会员奖励</view>
- <view class="tool flex">
- <view class="tool-item">
- <view class="tool-img"><image src="../../static/icon/kt1.png" mode=""></image></view>
- <view class="tool-name">佣金奖励</view>
- </view>
- <view class="tool-item" >
- <view class="tool-img"><image src="../../static/icon/kt2.png" mode=""></image></view>
- <view class="tool-name">专属折扣</view>
- </view>
- <view class="tool-item" >
- <view class="tool-img"><image src="../../static/icon/kt3.png" mode=""></image></view>
- <view class="tool-name">专属服务</view>
- </view>
- <view class="tool-item" >
- <view class="tool-img"><image src="../../static/icon/kt4.png" mode=""></image></view>
- <view class="tool-name">团队奖励</view>
- </view>
- </view>
- </view>
- <view class="hyjl" style="padding-bottom: 20rpx;">
- <view class="jl-tit">会员优选</view>
- <view class="tool flex">
- <view class="tool-item1">
- <view class="tool-name">会员独享</view>
- <view class="tool-name bold">优惠价</view>
- <view class="tool-img"><image src="../../static/icon/kt5.png" mode=""></image></view>
- </view>
- <view class="tool-item1" >
- <view class="tool-name">会员专属</view>
- <view class="tool-name bold">专属服务包</view>
- <view class="tool-img"><image src="../../static/icon/kt6.png" mode=""></image></view>
-
- </view>
- <view class="tool-item1" >
- <view class="tool-name">推广得</view>
- <view class="tool-name bold">更多佣金</view>
- <view class="tool-img"><image src="../../static/icon/kt7.png" mode=""></image></view>
-
- </view>
- </view>
- </view>
- <view class="bottom-btn">
- <view class="btm-left">
- 永久付费会员100通行证
- </view>
- <view class="btm-right" @click="readyPay()">
- 马上开通
- </view>
- </view>
- </view>
- </template>
- <script>
- import { becomeVip, getVip, setUserRed, claseauto } from '@/api/user.js';
- import { mapState, mapMutations } from 'vuex';
- import { getUserInfo } from '@/api/user.js';
- export default {
- computed: {
- ...mapState('user', ['userInfo', 'orderInfo', 'hasLogin'])
- },
- data() {
- return {
-
- }
- },
- onLoad() {
-
- },
- methods:{
- ...mapMutations('user', ['setUserInfo', 'setOrderInfo']),
- getUserInfoB() {
- getUserInfo({})
- .then(({ data }) => {
- this.setUserInfo(data);
- if(data.wx_qr) {
- uni.navigateTo({
- url: '/pages/vip/success'
- });
- }else {
- this.$api.msg('请完善会员信息')
- setTimeout(()=> {
- uni.navigateTo({
- url:'/pages/set/userdata'
- });
- }, 1000);
- }
-
- })
- .catch(e => {
- console.log(e);
- });
- },
- // 开通会员
- readyPay() {
- let obj = this;
- if(obj.userInfo.level > 0) {
- return obj.$api.msg('您已开通会员')
- }
- console.log('点击');
- try {
- let obj = this;
- obj.payLoding = true;
- // #ifdef H5
- // 获取当前是否为微信浏览器
- obj.froms = uni.getStorageSync('weichatBrowser') || '';
- // #endif
- uni.showLoading({
- title: '支付中',
- mask: true
- });
- let data = {
- pay_type: 'yue',
- level_id: 1,
- // #ifdef H5
- from: obj.froms ? 'weixin' : 'H5', //来源
- // #endif
- // #ifdef MP-WEIXIN
- from: 'routine', //来源
- // #endif
- // #ifdef APP-PLUS
- from: 'app' //来源
- // #endif
- };
- console.log(data, '传值');
- becomeVip(data).then(({ data }) => {
- console.log('fufei', data);
- uni.hideLoading();
-
- if (data.status == 'PAY_ERROR') {
- console.log(data);
- }
- if (data.status == 'SUCCESS') {
-
- obj.getUserInfoB();
- }
- console.log('-----', data);
- let da = data.result.jsConfig;
- if (obj.payName == 'weixin' || obj.payName == 'routine') {
- // let da = data.result.jsConfig;
- console.log('--da--', da);
- let data = {
- // #ifdef H5
- timestamp: da.timestamp,
- // #endif
- // #ifdef MP
- timeStamp: da.timestamp,
- // #endif
- nonceStr: da.nonceStr,
- package: da.package,
- signType: da.signType,
- paySign: da.paySign,
- success: function(res) {
- console.log(res);
- obj.getUserInfoB();
- },
- fail: e => {
- console.log(e);
- }
- };
- console.log('--data--', data);
- // #ifdef MP
- wx.requestPayment(data);
- // #endif
- // #ifdef H5
- if (obj.payName == 'weixin') {
- weixinObj.chooseWXPay(data);
- }
- // #endif
- }
-
- uni.hideLoading();
- // #ifdef H5
- if (data.status == 'PAY_ERROR') {
- console.log(data);
- }
- if (data.status == 'SUCCESS') {
-
- obj.getUserInfoB();
- }
- // #endif
- });
- } catch (e) {
- console.log('fufiecw', e);
- //TODO handle the exception
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .card {
- position: relative;
- margin: auto;
- z-index: 10;
- width: 655rpx;
- height: 324rpx;
- background: linear-gradient(225deg, #ffeed2 0%, #fed591 100%);
- border-radius: 24rpx;
- padding: 28rpx 25rpx 30rpx 36rpx;
- .now-wrap {
- width: 190rpx;
- line-height: 69rpx;
- background: #C09852;
- border-radius: 35rpx;
- position: absolute;
- top:39rpx;
- right: 25rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #F6DCA9;
- text-align: center;
-
- }
- .card-top {
- justify-content: flex-start;
- .avtur {
- width: 90rpx;
- height: 90rpx;
- border-radius: 50%;
- margin-right: 10rpx;
- image {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- }
- .name {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- .tip {
- font-size: 20rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- opacity: 0.52;
- }
- }
- .btn {
- position: absolute;
- top: 40rpx;
- right: 24rpx;
- width: 190rpx;
- height: 69rpx;
- background: #3a3a3b;
- border-radius: 35rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #ffffff;
- line-height: 69rpx;
- text-align: center;
- }
- .card-info {
- height: 120rpx;
- position: absolute;
- bottom: 30rpx;
- left: 43rpx;
- .info-tit {
- line-height: 70rpx;
- font-size: 40rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .info-val {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #343434;
- }
- }
- }
- .hyjl {
- background-color: #fff;
- padding:30rpx 30rpx 0;
- margin-bottom: 20rpx;
- .jl-tit {
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #000000;
- }
- }
- .tool {
- flex-wrap: wrap;
- justify-content: flex-start;
- align-items: center;
- .tool-item {
- width: 25%;
- height: 160rpx;
- display: flex;
- align-items: center;
- flex-direction: column;
- justify-content: center;
- .tool-img {
- width: 45rpx;
- height: 45rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .tool-name {
- padding-top: 20rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #505050;
- }
- }
- .tool-item1 {
- background: #FAFBFF;
- display: flex;
- align-items: center;
- flex-direction: column;
- justify-content: center;
- width: 222rpx;
- height: 298rpx;
- background: #FAFBFF;
- border-radius: 10rpx;
- .tool-name {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #7B7B7B;
- }
- .bold {
- font-weight: bold;
- color: #000;
- }
- .tool-img {
- width: 157rpx;
- height: 112rpx;
- margin-top: 37rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- }
-
- }
- .bottom-btn {
- display: flex;
- align-items: flex-end;
- position: fixed;
- bottom: 0;
- text-align: center;
- .btm-left {
- width: 750rpx - 280rpx;
- line-height: 100rpx;
- background-color: #34332F;
- color: #fff;
- }
- .btm-right {
- width: 280rpx;
- line-height: 108rpx;
-
- background: #EFD4A1;
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #5A5A5A;
- }
- }
- </style>
|