s-points-pop.vue 4.3 KB

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