s-points-pop.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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 class="subtitle">您的可用积分 {{currentMemberPoints}}</view>
  9. <view class="subtitle">当前订单价格¥{{state.currentTotalPrice}},可使用的最高积分 {{canUesPoint}}
  10. </view>
  11. </view>
  12. <view class="modal-footer ss-flex">
  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. </su-popup>
  18. </template>
  19. <script setup>
  20. import {
  21. computed,
  22. reactive,
  23. ref,
  24. watch,
  25. nextTick,
  26. watchEffect
  27. } from 'vue';
  28. const props = defineProps({
  29. modelValue: { // 优惠劵列表
  30. type: Object,
  31. default () {},
  32. },
  33. show: {
  34. type: Boolean,
  35. default: false,
  36. },
  37. currentMemberPoints: {
  38. type: Number,
  39. default: 0
  40. },
  41. currentTotalPrice: {
  42. type: Number,
  43. default: 0
  44. },
  45. });
  46. const emits = defineEmits(['confirm', 'close']);
  47. const state = reactive({
  48. currentMemberPoints: parseFloat(props.currentMemberPoints),
  49. currentTotalPrice: parseFloat(props.currentTotalPrice),
  50. points: 0,
  51. disabled:false
  52. });
  53. // 当前可使用的最高积分 是当前的总价格 - 1块钱 并且积分只能是正数
  54. const canUesPoint = computed(()=>{
  55. return parseInt(state.currentTotalPrice - 1)
  56. })
  57. watchEffect(() => {
  58. // 使用积分不能大于可用积分
  59. if (state.points > state.currentMemberPoints) {
  60. state.points = state.currentMemberPoints;
  61. // 使用 nextTick 确保 DOM 更新
  62. nextTick(() => {
  63. state.points = state.currentMemberPoints;
  64. });
  65. }
  66. // 使用积分不能大于实际价格
  67. if (state.points > state.currentTotalPrice) {
  68. console.log("newValue", state.points)
  69. console.log("state.currentTotalPrice", state.currentTotalPrice)
  70. state.points = state.currentTotalPrice;
  71. // 使用 nextTick 确保 DOM 更新
  72. nextTick(() => {
  73. state.points = canUesPoint.value;
  74. });
  75. }
  76. // 如果计算出来的当前价格等于0 则不给输入
  77. if(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. .title {
  111. font-size: 36rpx;
  112. height: 80rpx;
  113. font-weight: bold;
  114. color: #333333;
  115. }
  116. .subtitle {
  117. // font-size: 26rpx;
  118. font-weight: 500;
  119. color: #333333;
  120. }
  121. .model-content {
  122. height: 15vh;
  123. }
  124. .modal-footer {
  125. width: 100%;
  126. height: 120rpx;
  127. // background: #fff;
  128. }
  129. .confirm-btn {
  130. width: 710rpx;
  131. margin-left: 20rpx;
  132. height: 80rpx;
  133. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  134. border-radius: 40rpx;
  135. color: #fff;
  136. }
  137. .reason-title {
  138. font-weight: 600;
  139. font-size: 20rpx;
  140. line-height: 26rpx;
  141. color: #ff0003;
  142. }
  143. .reason-desc {
  144. font-weight: 600;
  145. font-size: 20rpx;
  146. line-height: 26rpx;
  147. color: #434343;
  148. }
  149. </style>