s-points-pop.vue 3.9 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: Number,
  40. default: 0
  41. },
  42. currentTotalPrice: {
  43. type: Number,
  44. default: 0
  45. },
  46. });
  47. const emits = defineEmits(['confirm', 'close']);
  48. const state = reactive({
  49. currentMemberPoints: parseFloat(props.currentMemberPoints),
  50. currentTotalPrice: parseFloat(props.currentTotalPrice),
  51. points: 0,
  52. disabled:false
  53. });
  54. // 当前可使用的最高积分 是当前的总价格 - 1块钱 并且积分只能是正数
  55. const canUesPoint = computed(()=>{
  56. return parseInt(state.currentTotalPrice - 1)
  57. })
  58. watchEffect(() => {
  59. // 使用积分不能大于可用积分
  60. if (state.points > state.currentMemberPoints) {
  61. // 使用 nextTick 确保 DOM 更新
  62. nextTick(() => {
  63. state.points = state.currentMemberPoints;
  64. });
  65. }
  66. // 使用积分不能大于当前可以使用的最大积分
  67. console.log(state.points > canUesPoint.value)
  68. if (state.points > canUesPoint.value) {
  69. console.log("newValue", state.points)
  70. console.log("state.currentTotalPrice", canUesPoint.value)
  71. // 使用 nextTick 确保 DOM 更新
  72. nextTick(() => {
  73. state.points = canUesPoint.value;
  74. });
  75. }
  76. // 如果计算出来的当前可以使用的最大积分等于小于0 则不给输入
  77. if(canUesPoint.value == 0 || canUesPoint.value < 0){
  78. state.disabled = true
  79. }
  80. })
  81. // 确认
  82. const onConfirm = () => {
  83. // if (!state.points) {
  84. // return false
  85. // }
  86. emits('confirm', state.points);
  87. }
  88. </script>
  89. <style lang="scss" scoped>
  90. :deep() {
  91. .uni-checkbox-input {
  92. background-color: var(--ui-BG-Main);
  93. }
  94. .uni-input-wrapper {
  95. width: 100% !important
  96. }
  97. }
  98. .model-box {
  99. // height: 10vh;
  100. text-align: center;
  101. font-size: 30rpx;
  102. .input-points {
  103. text-align: left;
  104. text-indent: 20rpx;
  105. height: 80rpx;
  106. border: 1px solid #bbbbbb;
  107. border-radius: 10rpx;
  108. }
  109. }
  110. .text-disabled {
  111. color: #bbbbbb;
  112. }
  113. .title {
  114. font-size: 36rpx;
  115. height: 80rpx;
  116. font-weight: bold;
  117. color: #333333;
  118. }
  119. .subtitle {
  120. // font-size: 26rpx;
  121. font-weight: 500;
  122. color: #333333;
  123. }
  124. .model-content {
  125. height: 10vh;
  126. }
  127. .modal-footer {
  128. width: 100%;
  129. // height: 120rpx;
  130. // background: #fff;
  131. }
  132. .confirm-btn {
  133. width: 710rpx;
  134. margin:0 20rpx;
  135. height: 80rpx;
  136. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  137. border-radius: 40rpx;
  138. color: #fff;
  139. }
  140. .reason-title {
  141. font-weight: 600;
  142. font-size: 20rpx;
  143. line-height: 26rpx;
  144. color: #ff0003;
  145. }
  146. .reason-desc {
  147. font-weight: 600;
  148. font-size: 20rpx;
  149. line-height: 26rpx;
  150. color: #434343;
  151. }
  152. </style>