s-points-pop.vue 4.1 KB

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