123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- <template>
- <view class="recharge">
- <view class="recharge_head">
- <view class="czbj">
- <view class="czbj-img"><image src="https://www.chaomangdao.com/image/me/czbj.jpg"></image></view>
- <view class="czbj-text">
- <text>当前金币</text>
- <span>{{ capital.coin }}</span>
- </view>
- <!-- #ifndef MP -->
- <a href="https://www.chaomangdao.com/image/me/czsp.mp4">
- <view class="czbj-czjc">
- <text>充值教程</text>
- <span></span>
- </view>
- </a>
- <!-- #endif -->
- </view>
- <view class="recharge_head_txt flex">
- <text>选择充值金额</text>
- <text>
- 实际到账金币:
- <text class="real-coin">{{ realCoin }}</text>
- </text>
- </view>
- <view class="recharge_head_ul flexs">
- <view class="recharge_head_li center" :class="{ active: index == i }" @click="changeI(index)" v-for="(item, index) in rechargeList" :key="index">
- <text>¥</text>
- <text>{{ item.coin }}</text>
- </view>
- </view>
- </view>
- <view class="deposit_main">
- <view class="deposit_main_name">选择支付方式</view>
- <view class="deposit_main_ul">
- <view class="deposit_main_li flex" v-for="(item, index) in payList" :key="index" @click="changePay(item.type)">
- <view class="deposit_main_img flexs">
- <image :src="item.image" mode=""></image>
- <text>{{ item.name }}</text>
- </view>
- <view class="deposit_main_li_select">
- <image :src="item.type == payIndex ? '/static/image/publice/xuanzhong1@2x.png' : '/static/image/publice/weixuanzhong@2x.png'" mode=""></image>
- </view>
- </view>
- </view>
- <view class="deposit_main_txt"><u-parse :content="message"></u-parse></view>
- </view>
- <button class="recharge_btn" hover-class="hover-view" @click="submitPay">支付</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- capital: {
- box: 0,
- coin: 0
- },
- i: 0, //选择金额
- message: '',
- tips: '',
- payIndex: 1, //支付方式
- rechargeList: [], //
- bili: 0, //充值比例
- payList: [
- {
- name: '微信支付',
- type: '0',
- image: '/static/image/me/weixin@2x.png'
- }
- // {
- // name:'支付宝支付',
- // type:'1',
- // image:'/static/image/me/zhifubao@2x.png'
- // },
- /* {
- name:'普通支付',
- type:'2',
- image:'/static/image/me/zhifubao@2x_no.png'
- },
-
- */
- // {
- // name:'卡密充值',
- // type:'3',
- // image:'/static/image/me/kmcz.png'
- // },
- // {
- // name:'人工充值',
- // type:'4',
- // image:'/static/image/me/rgcz.png'
- // },
- ] //支付列表
- };
- },
- computed: {
- realCoin() {
- if (!this.rechargeList || this.rechargeList.length < 1) {
- return 0;
- }
- let recharge = this.rechargeList[this.i];
- console.log(recharge.rmb * this.bili * 1, '123456');
- return recharge.rmb * (this.bili * 1);
- }
- },
- created() {
- this.$api.getUserCapital().then(({ code, data }) => {
- if (code == 1) {
- this.capital = data;
- }
- });
- //渲染分类列表
- // this.getCategoryList();
- },
- methods: {
- //提交支付
- submitPay() {
- if (this.payIndex == 3) {
- //充值卡密
- this.rechargePassword();
- return;
- }
- if (this.payIndex == 4) {
- //人工充值
- this.rengong();
- return;
- }
- this.$api.createRechargeOrder({ amount: this.rechargeList[this.i].coin }).then(res => {
- if (res.code === 1) {
- console.log(this.payIndex, '1111');
- if (this.payIndex == 0) {
- // #ifdef MP
- this.$http.post(res.data.wechat).then(res => {
- let da = res.jsConfig;
- let data = {
- // #ifdef MP
- timeStamp: da.timeStamp,
- // #endif
- nonceStr: da.nonceStr,
- package: da.package,
- signType: da.signType,
- paySign: da.paySign,
- success: function(res) {
- uni.showToast({ title: '支付成功' });
- setTimeout(() => {
- uni.redirectTo({ url: '/pages/me/wallet' });
- }, 800);
- },
- fail: () => {
- uni.showToast({ title: '支付失败' });
- }
- };
- console.log(data);
- wx.requestPayment(data);
- });
- // #endif
- }
- }
- });
- },
- //选择金额
- changeI(index) {
- this.i = index;
- },
- //切换支付方式
- changePay(index) {
- this.payIndex = index;
- },
- //获取充值列表
- getRechargeList() {
- this.$api.rechargeList().then(res => {
- if (res.code === 1) {
- this.tips = res.data.tips;
- this.message = res.data.notice;
- this.rechargeList = res.data.list;
- this.bili = res.data.bili;
- }
- });
- },
- //卡密充值跳转
- rechargePassword() {
- uni.navigateTo({
- url: '/pages/me/passwordRecharge/passwordRecharge'
- });
- },
- //人工充值跳转
- rengong() {
- uni.navigateTo({
- url: '/pagesB/pages/server'
- });
- }
- },
- onLoad() {
- this.getRechargeList();
- }
- };
- </script>
- <style lang="scss">
- .czbj {
- margin-top: 1%;
- overflow: hidden;
- width: 100%;
- background: rgb(255, 255, 255);
- box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 20px 0px;
- border-radius: 32rpx;
- }
- .czbj .czbj-img {
- height: 175rpx;
- width: 100%;
- position: relative;
- uin-image {
- width: 100%;
- height: 100%;
- }
- }
- .czbj .czbj-text {
- position: absolute;
- width: 100%;
- height: 175rpx;
- left: 0;
- top: 0;
- padding: 30rpx 65rpx;
- uni-text {
- font-size: 32rpx;
- color: #fff;
- display: block;
- }
- span {
- font-size: 46rpx;
- font-weight: bold;
- color: #fff;
- display: block;
- margin-top: 20rpx;
- }
- }
- .czbj .czbj-czjc {
- padding: 11px 15px;
- span {
- width: 29px;
- height: 29px;
- float: right;
- background: url(../../static/image/me/czjc.png);
- display: block;
- background-size: 100% 100%;
- }
- uni-text {
- font-weight: 600;
- line-height: 48rpx;
- }
- }
- .recharge {
- min-height: calc(100vh - 44px);
- position: relative;
- padding: 0 30rpx;
- .recharge_head {
- .recharge_head_txt {
- padding: 20rpx 0 20rpx 0;
- text {
- &:first-child {
- font-size: 32rpx;
- font-weight: bold;
- }
- &:last-child {
- color: #999999;
- }
- .real-coin {
- color: #ff0000;
- font-size: 32rpx;
- font-weight: bold;
- }
- }
- }
- }
- .recharge_head_ul {
- flex-wrap: wrap;
- .recharge_head_li {
- margin: 0 24rpx 20rpx 0;
- width: 214rpx;
- height: 160rpx;
- background: #ffffff;
- border: 2rpx solid #ebebeb;
- border-radius: 10rpx;
- &:nth-child(3n) {
- margin-right: 0;
- }
- text {
- color: #66a6ff;
- font-size: 30rpx;
- &:last-child {
- font-size: 44rpx;
- }
- }
- }
- .active {
- border: 2rpx solid #66a6ff;
- }
- }
- }
- .deposit_main {
- padding-bottom: 30rpx;
- .deposit_main_name {
- font-size: 32rpx;
- font-weight: bold;
- padding: 10rpx 0 30rpx 10rpx;
- }
- .deposit_main_ul {
- background: #ffffff;
- .deposit_main_li {
- padding: 30rpx 20rpx;
- border: 1px solid #66a6ff;
- border-radius: 60rpx;
- .deposit_main_img {
- image {
- width: 50rpx;
- height: 50rpx;
- margin-right: 20rpx;
- }
- text {
- font-size: 28rpx;
- }
- }
- .deposit_main_li_select {
- width: 32rpx;
- height: 32rpx;
- }
- }
- }
- .deposit_main_txt {
- padding: 30rpx 0;
- }
- }
- .recharge_btn {
- /*position: absolute;
- left: 50%;
- transform: translateX(-50%);
- */
- width: 690rpx;
- bottom: 34rpx;
- color: #fff;
- height: 88rpx;
- background: -webkit-linear-gradient(0deg, #89f7fe 0%, #66a6ff 100%);
- box-shadow: 0rpx 0rpx 12rpx 0rpx rgba(220, 220, 220, 0.2);
- border-radius: 8rpx;
- }
- .password_btn {
- height: 44px;
- }
- </style>
|