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