withdrawal.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <template>
  2. <view class="withdrawal">
  3. <!-- 提现头部 -->
  4. <view class="withdrawal-top">
  5. <view class="title"> {{ i18n.paymentMethod }} </view>
  6. <view class="wx">
  7. <image src="../../static/mine/323.png" class="wx-logo" mode=""></image>
  8. <text>{{ i18n.weChatBalance }}</text>
  9. </view>
  10. </view>
  11. <!-- 提现头部 -->
  12. <view class="content">
  13. <view class="money"> {{ i18n.withdrawalAmount }} </view>
  14. <view class="inp">
  15. <text>¥</text>
  16. <input type="number" v-model="money" />
  17. <text style="color: #f83224" @click="whole">{{
  18. i18n.withdrawAllFunds
  19. }}</text>
  20. </view>
  21. <text class="all-money" v-if="type == 'balance'"
  22. >{{ i18n.moneyAmount }}¥{{ userInformation.balance }}</text
  23. >
  24. <text class="all-money" v-else
  25. >{{ i18n.moneyAmount }}¥{{ userInformation.deposit }}</text
  26. >
  27. <button class="immediately" @click="immediatelyWithdrawal">
  28. {{ i18n.withdrawImmediately }}
  29. </button>
  30. <view class="detail" @click="toWithdrawalDetail">
  31. {{ i18n.withdrawalDetails }}
  32. </view>
  33. </view>
  34. <u-toast ref="uToast"></u-toast>
  35. </view>
  36. </template>
  37. <script>
  38. export default {
  39. data() {
  40. return {
  41. money: "",
  42. userInformation: {},
  43. type: "",
  44. };
  45. },
  46. computed: {
  47. i18n() {
  48. return this.$t("index");
  49. },
  50. },
  51. onLoad(options) {
  52. this.type = options.type;
  53. if (options.type == "deposit") {
  54. uni.setNavigationBarTitle({ title: "保证金提现" });
  55. } else {
  56. uni.setNavigationBarTitle({ title: this.i18n.balanceWithdrawal });
  57. }
  58. },
  59. methods: {
  60. toWithdrawalDetail() {
  61. uni.navigateTo({
  62. url: "/pageC/withdrawalDetail/withdrawalDetail?type=" + this.type,
  63. });
  64. },
  65. //立即提现
  66. immediatelyWithdrawal() {
  67. uni.$u.http
  68. .post(`/api/withdraw`, { amount: this.money, account_type: this.type })
  69. .then((res) => {
  70. this.money = "";
  71. this.getUserInfo();
  72. this.$refs.uToast.show({
  73. type: "default",
  74. title: "默认主题",
  75. message: this.i18n.submitWith,
  76. });
  77. });
  78. },
  79. whole() {
  80. if (this.type == "balance") {
  81. this.money = this.userInformation.balance;
  82. } else {
  83. this.money = this.userInformation.deposit;
  84. }
  85. },
  86. //获取余额
  87. getUserInfo() {
  88. uni.$u.http.get(`/api/member/info`).then((res) => {
  89. this.userInformation = res;
  90. });
  91. },
  92. },
  93. mounted() {
  94. this.getUserInfo();
  95. },
  96. };
  97. </script>
  98. <style scoped lang="scss">
  99. .withdrawal {
  100. padding: 20rpx 24rpx 0;
  101. .withdrawal-top {
  102. display: flex;
  103. justify-content: space-between;
  104. align-items: center;
  105. height: 104rpx;
  106. background-color: #fff;
  107. border-radius: 16rpx;
  108. padding: 0 24rpx;
  109. .title {
  110. font-size: 30rpx;
  111. }
  112. .wx {
  113. display: flex;
  114. align-items: center;
  115. height: 50rpx;
  116. .wx-logo {
  117. width: 40rpx;
  118. height: 40rpx;
  119. margin-right: 10rpx;
  120. }
  121. }
  122. }
  123. .content {
  124. background-color: #fff;
  125. border-radius: 16rpx;
  126. margin-top: 16rpx;
  127. padding: 32rpx 24rpx 46rpx;
  128. .money {
  129. font-size: 30rpx;
  130. }
  131. .inp {
  132. display: flex;
  133. height: 110rpx;
  134. align-items: center;
  135. justify-content: space-between;
  136. border-bottom: 2rpx solid rgba(151, 151, 151, 0.3);
  137. margin-bottom: 18rpx;
  138. }
  139. .all-money {
  140. font-size: 24rpx;
  141. color: #555;
  142. }
  143. .immediately {
  144. box-shadow: 0rpx 12rpx 28rpx -12rpx #f83224;
  145. border-radius: 44rpx;
  146. background-color: #f83224;
  147. color: #fff;
  148. margin-top: 60rpx;
  149. margin-bottom: 60rpx;
  150. }
  151. .detail {
  152. text-align: center;
  153. font-size: 26rpx;
  154. opacity: 0.6;
  155. color: #131415;
  156. }
  157. }
  158. }
  159. </style>