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