s-points-pop.vue 4.1 KB

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