s-points-pop.vue 4.3 KB

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