withdraw.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <!-- 提现 -->
  2. <template>
  3. <s-layout title="提现">
  4. <view class="bg-white ss-modal-box ss-flex-col">
  5. <!-- 提现方式 -->
  6. <view class="modal-content">
  7. <view class="out-title ss-p-l-30 ss-m-y-30">选择提现方式</view>
  8. <radio-group @change="onTapOut">
  9. <label class="out-type-item" v-for="item in state.outMethods" :key="item.title">
  10. <view class="out-item ss-flex ss-col-center ss-row-between ss-p-x-30 border-bottom"
  11. :class="{ 'disabled-out-item': item.disabled }">
  12. <view class="ss-flex ss-col-center">
  13. <image class="out-icon" v-if="item.disabled"
  14. :src="sheep.$url.static('/static/img/shop/out/cod_disabled.png')"
  15. mode="aspectFit" />
  16. <image class="out-icon" v-else :src="sheep.$url.static(item.icon)" mode="aspectFit" />
  17. <text class="out-title">{{ item.title }}</text>
  18. </view>
  19. <view class="check-box ss-flex ss-col-center ss-p-l-10">
  20. <radio
  21. :value="item.value"
  22. color="var(--ui-BG-Main)"
  23. style="transform: scale(0.8)"
  24. :disabled="item.disabled"
  25. :checked="state.payment === item.value"
  26. />
  27. </view>
  28. </view>
  29. </label>
  30. </radio-group>
  31. </view>
  32. <!-- 提现金额 -->
  33. <view class="modal-content ">
  34. <view class="out-title ss-p-l-30 ss-m-y-30">提现金额</view>
  35. <view class="ss-flex ss-row-left ss-col-center input-money ss-m-y-10" >
  36. <input v-model.number="state.outMoney" class="uni-input " type="number"
  37. placeholder="请输入金额"/>
  38. </view>
  39. <view class="ss-flex ss-row-center ss-col-center">
  40. 您当前可兑换金额:¥<text class="text-red">{{canUseMoney}}</text>
  41. <button class="ss-m-l-10 all-btn " @click="useAllPonints">全部</button>
  42. </view>
  43. </view>
  44. <!-- 工具 -->
  45. <view class="modal-footer ss-flex ss-row-center ss-col-center ss-m-t-80 ss-m-b-40 ss-flex-5">
  46. <button class="ss-reset-button save-btn" @tap="submit" :disabled="state.disabled" :class="{ 'disabled-btn': state.disabled }"
  47. >
  48. 确定
  49. </button>
  50. </view>
  51. </view>
  52. </s-layout>
  53. </template>
  54. <script setup>
  55. import {
  56. computed,
  57. reactive,
  58. watchEffect,
  59. nextTick
  60. } from 'vue';
  61. import {
  62. onLoad
  63. } from '@dcloudio/uni-app';
  64. import sheep from '@/sheep';
  65. import {
  66. fen2yuan,
  67. points2point
  68. } from '@/sheep/hooks/useGoods';
  69. import md5 from 'blueimp-md5';
  70. import PayWalletApi from '@/sheep/api/pay/wallet';
  71. const userWallet = computed(() => sheep.$store('user').userWallet);
  72. const userInfo = computed(() => sheep.$store('user').userInfo);
  73. const canUseMoney = computed(() => points2point(userWallet.value.integralDO.currentQuota));
  74. // 检测支付环境
  75. const state = reactive({
  76. orderType: 'goods', // 订单类型; goods - 商品订单, recharge - 充值订单
  77. outMent: '',
  78. outMoney:undefined,
  79. disabled:true,
  80. outMethods: [{
  81. title: "提现到微信",
  82. value: 'wx'
  83. },
  84. {
  85. title: "提现到支付宝",
  86. value: 'alipay'
  87. },
  88. {
  89. title: "提现到银行卡",
  90. value: 'bank'
  91. }
  92. ]
  93. });
  94. const submit = () => {
  95. if (state.outMent === '') {
  96. sheep.$helper.toast('请选择提现方式');
  97. return;
  98. }
  99. if (!state.outMoney) {
  100. sheep.$helper.toast('请输入提现金额');
  101. return;
  102. }
  103. if (state.outMent === 'alipay' && userInfo.value.alipayAccount === null){
  104. // 没绑定支付宝
  105. uni.showModal({
  106. title: '提示',
  107. content: '未绑定支付宝账号',
  108. confirmText:'去绑定',
  109. success: async function(res) {
  110. if (!res.confirm) {
  111. return;
  112. }
  113. sheep.$router.go('/pages/user/info');
  114. },
  115. });
  116. return;
  117. }
  118. if (state.outMent === 'bank' && userInfo.value.bankAccount === null){
  119. // 没绑定银行卡
  120. uni.showModal({
  121. title: '提示',
  122. content: '未绑定银行卡',
  123. confirmText:'去绑定',
  124. success: async function(res) {
  125. if (!res.confirm) {
  126. return;
  127. }
  128. sheep.$router.go('/pages/user/info');
  129. },
  130. });
  131. return;
  132. }
  133. };
  134. // 切换提现方式
  135. function onTapOut(e) {
  136. console.log(e.detail.value)
  137. state.outMent = e.detail.value;
  138. }
  139. // 提现全部积分
  140. async function useAllPonints(){
  141. const {code,data} = await PayWalletApi.getDuserInfo();
  142. const userCanUsePoints = parseFloat(points2point(data.integralDO.currentQuota));
  143. state.outMoney = parseInt(userCanUsePoints);
  144. state.disable = false;
  145. }
  146. watchEffect(() => {
  147. // 提现金额不能大于可用积分
  148. if (state.outMoney > canUseMoney.value) {
  149. // 使用 nextTick 确保 DOM 更新
  150. nextTick(() => {
  151. state.outMoney = canUseMoney.value;
  152. });
  153. }
  154. // 如果计算出来的当前可以使用的最大积分等于小于0 则不给输入
  155. if(canUseMoney.value == 0 || canUseMoney.value < 0){
  156. state.disabled = true
  157. }
  158. if(canUseMoney.value > 0){
  159. state.disabled = false
  160. }
  161. })
  162. onLoad((options) => {
  163. });
  164. </script>
  165. <style lang="scss" scoped>
  166. .all-btn{
  167. height: 60rpx;
  168. line-height: 60rpx;
  169. min-width: 80rpx;
  170. padding: 0 30rpx;
  171. border-radius: 30rpx;
  172. font-size: 26rpx;
  173. margin-right: 10rpx;
  174. border: 2rpx solid var(--ui-BG-Main);
  175. color: var(--ui-BG-Main);
  176. }
  177. .out-icon {
  178. width: 36rpx;
  179. height: 36rpx;
  180. margin-right: 26rpx;
  181. }
  182. .ss-modal-box {
  183. height: calc(100vh - 88rpx);
  184. // max-height: 1000rpx;
  185. .input-money {
  186. width:90% ;
  187. padding:0 10rpx;
  188. // text-indent: 20rpx;
  189. height: 80rpx;
  190. border: 1px solid #bbbbbb;
  191. border-radius: 10rpx;
  192. margin: 15rpx auto;
  193. font-size: 28rpx;
  194. input{
  195. width: 100%;
  196. height: 100%;
  197. font-size: 28rpx;
  198. }
  199. }
  200. .modal-header {
  201. position: relative;
  202. padding: 60rpx 20rpx 40rpx;
  203. .money-text {
  204. color: $red;
  205. font-size: 46rpx;
  206. font-weight: bold;
  207. font-family: OPPOSANS;
  208. &::before {
  209. content: '¥';
  210. font-size: 30rpx;
  211. }
  212. }
  213. .time-text {
  214. font-size: 26rpx;
  215. color: $gray-b;
  216. }
  217. .close-icon {
  218. position: absolute;
  219. top: 10rpx;
  220. right: 20rpx;
  221. font-size: 46rpx;
  222. opacity: 0.2;
  223. }
  224. }
  225. .modal-content {
  226. overflow-y: auto;
  227. .out-title {
  228. font-size: 26rpx;
  229. font-weight: 500;
  230. color: #333333;
  231. }
  232. .out-tip {
  233. font-size: 26rpx;
  234. color: #bbbbbb;
  235. }
  236. .out-item {
  237. height: 86rpx;
  238. }
  239. .disabled-out-item {
  240. .out-title {
  241. color: #999999;
  242. }
  243. }
  244. .userInfo-money {
  245. font-size: 26rpx;
  246. color: #bbbbbb;
  247. line-height: normal;
  248. }
  249. }
  250. .save-btn {
  251. width: 710rpx;
  252. height: 80rpx;
  253. border-radius: 40rpx;
  254. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  255. color: $white;
  256. }
  257. .disabled-btn {
  258. background: #e5e5e5;
  259. color: #999999;
  260. }
  261. .past-due-btn {
  262. width: 710rpx;
  263. height: 80rpx;
  264. border-radius: 40rpx;
  265. background-color: #999;
  266. color: #fff;
  267. }
  268. }
  269. </style>