s-points-pop.vue 4.0 KB

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