topupConsumptionPoints.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. <!-- 消费分充值 -->
  2. <template>
  3. <s-layout title="消费分充值">
  4. <view class="bg-white ss-modal-box ss-flex-col">
  5. <!-- 提现金额 -->
  6. <view class="modal-content ss-m-t-30">
  7. <uni-forms :model="state.model" :rules="state.rules" validateTrigger="bind" labelPosition="left" border
  8. class="form-box" labelWidth='200' ref="FormRef">
  9. <view class="bg-white ss-p-x-30">
  10. <uni-forms-item name="quota" label="充值金额" :required="true">
  11. <uni-easyinput v-model="state.payPrice" type="number"
  12. placeholder="请输入金额" :inputBorder="false" :clearable="false" @input="validateInput" :maxlength="9" />
  13. </uni-forms-item>
  14. <uni-forms-item name="quota" label="实到消费分">
  15. <view class="ss-flex ss-h-100">
  16. {{consumption}}
  17. </view>
  18. </uni-forms-item>
  19. </view>
  20. </uni-forms>
  21. <view class="ss-flex ss-row-center ss-col-center ss-m-t-30 text-red text-center">备注:充值后请及时查看钱包,查收消费分是否到账</view>
  22. </view>
  23. <view class="modal-footer ss-flex ss-row-center ss-col-center ss-m-t-80 ss-m-b-40 ss-flex-5">
  24. <button class="ss-reset-button save-btn" @tap="submit" >
  25. 确定
  26. </button>
  27. </view>
  28. </view>
  29. </s-layout>
  30. </template>
  31. <script setup>
  32. import {
  33. computed,
  34. reactive,
  35. watchEffect,
  36. nextTick,
  37. onUnmounted
  38. } from 'vue';
  39. import {
  40. onLoad
  41. } from '@dcloudio/uni-app';
  42. import sheep from '@/sheep';
  43. import { clone } from 'lodash';
  44. import {
  45. fen2yuan,
  46. points2point
  47. } from '@/sheep/hooks/useGoods';
  48. import md5 from 'blueimp-md5';
  49. import PayWalletApi from '@/sheep/api/pay/wallet';
  50. import WithdrawalApi from '@/sheep/api/distri/withdrawal';
  51. import { showAuthModal, showShareModal } from '@/sheep/hooks/useModal';
  52. const userWallet = computed(() => sheep.$store('user').userWallet);
  53. const userInfo = computed(() => sheep.$store('user').userInfo);
  54. const state = reactive({
  55. model: {},
  56. payPrice:undefined,
  57. percentage:{
  58. consumptionMagnification:0,
  59. userTopUpConsumptionPoints:0
  60. }
  61. });
  62. const consumption = computed(() => {
  63. if(!state.payPrice){
  64. return 0;
  65. }
  66. let result = parseFloat(state.percentage.consumptionMagnification) * state.payPrice;
  67. // 地板除到小数点后两位
  68. result = Math.floor(result * 100) / 100;
  69. return result;
  70. });
  71. // 确保输入是整数
  72. async function validateInput(value) {
  73. const intValue = parseInt(value);
  74. const strPoints = value.toString()
  75. const [integerPart, decimalPart] = strPoints.split('.')
  76. if (decimalPart) {
  77. nextTick(() => {
  78. state.payPrice = integerPart;
  79. });
  80. }
  81. }
  82. const submit = async () => {
  83. if (!state.payPrice) {
  84. sheep.$helper.toast('请输入充值金额');
  85. return;
  86. }
  87. if (parseFloat(state.payPrice) < state.percentage.userTopUpConsumptionPoints) {
  88. sheep.$helper.toast(`充值金额不能少于${state.percentage.userTopUpConsumptionPoints}`);
  89. return;
  90. }
  91. let {
  92. code,
  93. data
  94. } = await PayWalletApi.topupConsumptionPointsCreate({
  95. payPrice:state.payPrice,
  96. topUpConsumptionPoints:state.payPrice,
  97. userName:userInfo.value.username,
  98. });
  99. if(code === 0){
  100. sheep.$router.redirect('/pages/pay/index', {
  101. id: data.payOrderId,
  102. type:2
  103. });
  104. }
  105. };
  106. const getpercentage = async () => {
  107. const {code,data} = await WithdrawalApi.getWithdrawalPercentage();
  108. if(code === 0){
  109. state.percentage = data;
  110. }
  111. }
  112. onLoad(async(options) => {
  113. await getpercentage();
  114. });
  115. </script>
  116. <style lang="scss" scoped>
  117. .all-btn{
  118. height: 60rpx;
  119. line-height: 60rpx;
  120. min-width: 80rpx;
  121. padding: 0 30rpx;
  122. border-radius: 30rpx;
  123. font-size: 26rpx;
  124. margin-right: 10rpx;
  125. border: 2rpx solid var(--ui-BG-Main);
  126. color: var(--ui-BG-Main);
  127. }
  128. .out-icon {
  129. width: 36rpx;
  130. height: 36rpx;
  131. margin-right: 26rpx;
  132. }
  133. .ss-modal-box {
  134. height: calc(100vh - 88rpx);
  135. // max-height: 1000rpx;
  136. .input-money {
  137. width:90% ;
  138. padding:0 10rpx;
  139. // text-indent: 20rpx;
  140. height: 80rpx;
  141. border: 1px solid #bbbbbb;
  142. border-radius: 10rpx;
  143. margin: 15rpx auto;
  144. font-size: 28rpx;
  145. input{
  146. width: 100%;
  147. height: 100%;
  148. font-size: 28rpx;
  149. }
  150. }
  151. .modal-header {
  152. position: relative;
  153. padding: 60rpx 20rpx 40rpx;
  154. .money-text {
  155. color: $red;
  156. font-size: 46rpx;
  157. font-weight: bold;
  158. font-family: OPPOSANS;
  159. &::before {
  160. content: '¥';
  161. font-size: 30rpx;
  162. }
  163. }
  164. .time-text {
  165. font-size: 26rpx;
  166. color: $gray-b;
  167. }
  168. .close-icon {
  169. position: absolute;
  170. top: 10rpx;
  171. right: 20rpx;
  172. font-size: 46rpx;
  173. opacity: 0.2;
  174. }
  175. }
  176. .modal-content {
  177. overflow-y: auto;
  178. .out-title {
  179. font-size: 26rpx;
  180. font-weight: 500;
  181. color: #333333;
  182. }
  183. .out-tip {
  184. font-size: 26rpx;
  185. color: #bbbbbb;
  186. }
  187. .out-item {
  188. height: 86rpx;
  189. }
  190. .disabled-out-item {
  191. .out-title {
  192. color: #999999;
  193. }
  194. }
  195. .userInfo-money {
  196. font-size: 26rpx;
  197. color: #bbbbbb;
  198. line-height: normal;
  199. }
  200. }
  201. .save-btn {
  202. width: 710rpx;
  203. height: 80rpx;
  204. border-radius: 40rpx;
  205. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  206. color: $white;
  207. }
  208. .disabled-btn {
  209. background: #e5e5e5;
  210. color: #999999;
  211. }
  212. .past-due-btn {
  213. width: 710rpx;
  214. height: 80rpx;
  215. border-radius: 40rpx;
  216. background-color: #999;
  217. color: #fff;
  218. }
  219. }
  220. </style>