s-points-pop.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <!-- 订单确认的使用积分弹窗 -->
  2. <template>
  3. <su-popup :show="show" type="bottom" round="10" @close="emits('close')" showClose backgroundColor="#ffffff">
  4. <view class="title ss-m-t-16 ss-m-l-20 ss-flex">使用积分</view>
  5. <view class="model-box ss-p-x-30">
  6. <input v-model.number="state.points" class="uni-input input-points ss-m-b-10" type="number"
  7. placeholder="请输入抵扣积分" oninput="this.value=this.value.replace(/\D/g);" :disabled="state.disabled"/>
  8. </view>
  9. <view class="modal-footer text-center">
  10. <view class="subtitle text-disabled">您的可用积分<text class="text-red">{{currentMemberPoints}}</text></view>
  11. <view class="subtitle text-disabled">当前订单价格<text class="text-red">¥{{state.currentTotalPrice}}</text>,可使用的最高积分 <text class="text-red">{{canUesPoint}}</text></view>
  12. <view class="ss-flex ss-m-y-20 ss-col-center">
  13. <button class="confirm-btn ss-reset-button"
  14. @tap="state.points = 0;emits('confirm', state.points)">取消</button>
  15. <button class="confirm-btn ss-reset-button" @tap="onConfirm">确认</button>
  16. </view>
  17. </view>
  18. </su-popup>
  19. </template>
  20. <script setup>
  21. import {
  22. computed,
  23. reactive,
  24. ref,
  25. watch,
  26. nextTick,
  27. watchEffect
  28. } from 'vue';
  29. const props = defineProps({
  30. modelValue: { // 优惠劵列表
  31. type: Object,
  32. default () {},
  33. },
  34. show: {
  35. type: Boolean,
  36. default: false,
  37. },
  38. currentMemberPoints: {
  39. type: String,
  40. default: ''
  41. },
  42. currentTotalPrice: {
  43. type: String,
  44. default: ''
  45. },
  46. });
  47. console.log("props.currentTotalPrice",props.currentTotalPrice)
  48. const emits = defineEmits(['confirm', 'close']);
  49. const state = reactive({
  50. currentMemberPoints: parseFloat(props.currentMemberPoints),
  51. currentTotalPrice: parseFloat(props.currentTotalPrice),
  52. points: 0,
  53. disabled:false
  54. });
  55. // 当前可使用的最高积分 是当前的总价格 - 1块钱 并且积分只能是正数
  56. const canUesPoint = computed(()=>{
  57. console.log("state.currentTotalPrice",parseInt(state.currentTotalPrice - 1))
  58. if(!state.currentTotalPrice) return state.currentTotalPrice
  59. return parseInt(state.currentTotalPrice - 1)
  60. })
  61. watchEffect(() => {
  62. // 使用积分不能大于可用积分
  63. if (state.points > state.currentMemberPoints) {
  64. // 使用 nextTick 确保 DOM 更新
  65. nextTick(() => {
  66. state.points = state.currentMemberPoints;
  67. });
  68. }
  69. // 使用积分不能大于当前可以使用的最大积分
  70. console.log(state.points > canUesPoint.value)
  71. if (state.points > canUesPoint.value) {
  72. console.log("newValue", state.points)
  73. console.log("state.currentTotalPrice", canUesPoint.value)
  74. // 使用 nextTick 确保 DOM 更新
  75. nextTick(() => {
  76. state.points = canUesPoint.value;
  77. });
  78. }
  79. // 如果计算出来的当前可以使用的最大积分等于小于0 则不给输入
  80. if(canUesPoint.value == 0 || canUesPoint.value < 0){
  81. state.disabled = true
  82. }
  83. })
  84. // 确认
  85. const onConfirm = () => {
  86. // if (!state.points) {
  87. // return false
  88. // }
  89. emits('confirm', state.points);
  90. }
  91. </script>
  92. <style lang="scss" scoped>
  93. :deep() {
  94. .uni-checkbox-input {
  95. background-color: var(--ui-BG-Main);
  96. }
  97. .uni-input-wrapper {
  98. width: 100% !important
  99. }
  100. }
  101. .model-box {
  102. // height: 10vh;
  103. text-align: center;
  104. font-size: 30rpx;
  105. .input-points {
  106. text-align: left;
  107. text-indent: 20rpx;
  108. height: 80rpx;
  109. border: 1px solid #bbbbbb;
  110. border-radius: 10rpx;
  111. }
  112. }
  113. .text-disabled {
  114. color: #bbbbbb;
  115. }
  116. .title {
  117. font-size: 36rpx;
  118. height: 80rpx;
  119. font-weight: bold;
  120. color: #333333;
  121. }
  122. .subtitle {
  123. // font-size: 26rpx;
  124. font-weight: 500;
  125. color: #333333;
  126. }
  127. .model-content {
  128. height: 10vh;
  129. }
  130. .modal-footer {
  131. width: 100%;
  132. // height: 120rpx;
  133. // background: #fff;
  134. }
  135. .confirm-btn {
  136. width: 710rpx;
  137. margin:0 20rpx;
  138. height: 80rpx;
  139. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  140. border-radius: 40rpx;
  141. color: #fff;
  142. }
  143. .reason-title {
  144. font-weight: 600;
  145. font-size: 20rpx;
  146. line-height: 26rpx;
  147. color: #ff0003;
  148. }
  149. .reason-desc {
  150. font-weight: 600;
  151. font-size: 20rpx;
  152. line-height: 26rpx;
  153. color: #434343;
  154. }
  155. </style>