123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- <template>
- <view class="recharge">
- <view class="mine"> {{ i18n.myBalance }}(元) </view>
- <view class="money">{{ userInformation.balance }}</view>
- <view class="to-withdrawal">
- <AllRight
- :name="i18n.goMoney"
- :withdrawal="true"
- @toDetail="toWithdrawal"
- />
- </view>
- <view class="select-money">
- <view class="title"> {{ i18n.balanceRecharge }} </view>
- <!-- 选择充值金额 -->
- <view class="select-recharge">
- <view
- class="recharge-money"
- :class="{ 'back-red': backgroundRed == 100 }"
- @click="selectMoney(100)"
- >
- <text>¥</text>100
- </view>
- <view
- class="recharge-money"
- :class="{ 'back-red': backgroundRed == 200 }"
- @click="selectMoney(200)"
- >
- <text>¥</text>200
- </view>
- <view
- class="recharge-money"
- :class="{ 'back-red': backgroundRed == 300 }"
- @click="selectMoney(300)"
- >
- <text>¥</text>300
- </view>
- <view
- class="recharge-money"
- :class="{ 'back-red': backgroundRed == 600 }"
- @click="selectMoney(600)"
- >
- <text>¥</text>600
- </view>
- <view
- class="recharge-money"
- :class="{ 'back-red': backgroundRed == 800 }"
- @click="selectMoney(800)"
- >
- <text>¥</text>800
- </view>
- <view
- class="recharge-money"
- :class="{ 'back-red': backgroundRed == 1000 }"
- @click="selectMoney(1000)"
- >
- <text>¥</text>1000
- </view>
- </view>
- <!-- 选择充值金额 -->
- <u--input
- :placeholder="i18n.customAmount"
- prefixIcon="rmb"
- v-model="rmb"
- prefixIconStyle="font-size: 36rpx;color: #000;font-weight:600"
- ></u--input>
- <view class="payment">
- <view class="title"> {{ i18n.payMethod }} </view>
- <view class="wx-pay">
- <view class="logo">
- <image
- src="../../static/mine/323.png"
- class="wx-logo"
- mode=""
- ></image>
- {{ i18n.WechatPay }}
- </view>
- <image
- src="../../static/mine/330.png"
- mode="scaleToFill"
- class="wx-logo"
- />
- </view>
- </view>
- <button class="recharge-btn" @click="recharge">
- {{ i18n.recharge }}
- </button>
- </view>
- </view>
- </template>
- <script>
- import AllRight from "../mineComponent/allRight/allRight.vue";
- export default {
- components: {
- AllRight,
- },
- data() {
- return {
- backgroundRed: 0,
- rmb: "",
- userInformation: {},
- };
- },
- onShow() {
- this.getBalance();
- },
- computed: {
- i18n() {
- return this.$t("index");
- },
- },
- methods: {
- selectMoney(num) {
- this.backgroundRed = num;
- },
- toWithdrawal() {
- uni.navigateTo({
- url: "/pageC/withdrawal/withdrawal?type=balance",
- });
- },
- //充值
- recharge() {
- let num = this.rmb == "" ? this.backgroundRed : this.rmb;
- uni.$u.http
- .post(`/api/recharge`, {
- account_type: "balance",
- amount: num,
- })
- .then((res) => {
- uni.requestPayment({
- provider: "wxpay",
- timeStamp: String(res.timeStamp),
- nonceStr: res.nonceStr,
- package: res.package,
- signType: res.signType,
- paySign: res.paySign,
- success: function (res) {
- console.log("success:" + JSON.stringify(res));
- uni.navigateBack();
- },
- fail: function (err) {
- console.log("fail:" + JSON.stringify(err));
- },
- });
- console.log(res);
- });
- },
- //获取账户余额
- getBalance() {
- uni.$u.http.get(`/api/member/info`).then((res) => {
- this.userInformation = res;
- });
- },
- },
- mounted() {
- uni.setNavigationBarTitle({
- title: this.i18n.recharge,
- });
- },
- };
- </script>
- <style lang="scss" scoped>
- .recharge {
- height: 100vh;
- background-color: #fff;
- .mine {
- padding-top: 63rpx;
- text-align: center;
- color: #222;
- font-size: 28rpx;
- border-top: 1px solid #ccc;
- }
- .money {
- font-size: 84rpx;
- text-align: center;
- color: #222;
- font-weight: 600;
- margin-top: 28rpx;
- margin-bottom: 20rpx;
- }
- .to-withdrawal {
- display: flex;
- justify-content: center;
- }
- .select-money {
- padding-top: 42rpx;
- border-top: 1px solid #ccc;
- margin: 0 auto;
- margin-top: 64rpx;
- width: 94%;
- .title {
- font-size: 32rpx;
- color: #222;
- font-weight: 500;
- margin-bottom: 36rpx;
- }
- .payment {
- margin-top: 46rpx;
- .wx-pay {
- height: 100rpx;
- background-color: #f4f4f4;
- width: 94%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 20rpx;
- font-size: 32rpx;
- .logo {
- display: flex;
- align-items: center;
- }
- .wx-logo {
- width: 39rpx;
- height: 34rpx;
- margin-right: 18rpx;
- }
- }
- }
- .recharge-btn {
- background-color: #f83224;
- border-radius: 44rpx;
- color: #fff;
- margin-top: 150rpx;
- }
- .select-recharge {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- .recharge-money {
- width: 210rpx;
- height: 120rpx;
- border: 1px solid #f83224;
- border-radius: 16rpx;
- text-align: center;
- line-height: 120rpx;
- font-size: 40rpx;
- font-weight: 600;
- margin-bottom: 26rpx;
- text {
- font-size: 24rpx;
- }
- }
- .back-red {
- background-color: #f83224;
- color: #fff;
- }
- }
- }
- }
- /deep/.u-input {
- background-color: #f4f4f4;
- height: 80rpx;
- }
- </style>
|