s-points-pop.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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="state.points" class="uni-input input-points ss-m-b-10" type="number"
  7. placeholder="请输入抵扣积分" />
  8. <view class="subtitle">当前可用积分 {{currentMemberPoints}}</view>
  9. </view>
  10. <view class="modal-footer ss-flex">
  11. <button class="confirm-btn ss-reset-button" @tap="state.points = 0;emits('confirm', state.points)">取消</button>
  12. <button class="confirm-btn ss-reset-button" @tap="onConfirm">确认</button>
  13. </view>
  14. </su-popup>
  15. </template>
  16. <script setup>
  17. import {
  18. computed,
  19. reactive,
  20. ref,
  21. watch,
  22. nextTick
  23. } from 'vue';
  24. const props = defineProps({
  25. modelValue: { // 优惠劵列表
  26. type: Object,
  27. default () {},
  28. },
  29. show: {
  30. type: Boolean,
  31. default: false,
  32. },
  33. currentMemberPoints:{
  34. type:Number,
  35. default:0
  36. },
  37. currentTotalPrice:{
  38. type:Number,
  39. default:0
  40. },
  41. });
  42. const emits = defineEmits(['confirm', 'close']);
  43. const state = reactive({
  44. currentMemberPoints: parseFloat(props.currentMemberPoints),
  45. currentTotalPrice:parseFloat(props.currentTotalPrice),
  46. points: undefined,
  47. });
  48. console.log(props.currentTotalPrice)
  49. watch(() => state.points, (newValue) => {
  50. if (newValue > state.currentMemberPoints ) {
  51. state.points = state.currentMemberPoints; // 使用积分不能大于可用积分
  52. // 使用 nextTick 确保 DOM 更新
  53. nextTick(() => {
  54. state.points = state.currentMemberPoints;
  55. });
  56. }
  57. if (newValue > state.currentTotalPrice ) {
  58. state.points = state.currentTotalPrice; // 使用积分不能大于可用积分
  59. // 使用 nextTick 确保 DOM 更新
  60. nextTick(() => {
  61. state.points = state.currentTotalPrice;
  62. });
  63. }
  64. });
  65. // 确认
  66. const onConfirm = () => {
  67. // if (!state.points) {
  68. // return false
  69. // }
  70. emits('confirm', state.points);
  71. }
  72. </script>
  73. <style lang="scss" scoped>
  74. :deep() {
  75. .uni-checkbox-input {
  76. background-color: var(--ui-BG-Main);
  77. }
  78. .uni-input-wrapper {
  79. width: 100% !important
  80. }
  81. }
  82. .model-box {
  83. height: 10vh;
  84. text-align: center;
  85. font-size: 30rpx;
  86. .input-points {
  87. text-align: left;
  88. text-indent: 20rpx;
  89. height: 80rpx;
  90. border: 1px solid #bbbbbb;
  91. border-radius: 10rpx;
  92. }
  93. }
  94. .title {
  95. font-size: 36rpx;
  96. height: 80rpx;
  97. font-weight: bold;
  98. color: #333333;
  99. }
  100. .subtitle {
  101. // font-size: 26rpx;
  102. font-weight: 500;
  103. color: #333333;
  104. }
  105. .model-content {
  106. height: 15vh;
  107. }
  108. .modal-footer {
  109. width: 100%;
  110. height: 120rpx;
  111. // background: #fff;
  112. }
  113. .confirm-btn {
  114. width: 710rpx;
  115. margin-left: 20rpx;
  116. height: 80rpx;
  117. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  118. border-radius: 40rpx;
  119. color: #fff;
  120. }
  121. .reason-title {
  122. font-weight: 600;
  123. font-size: 20rpx;
  124. line-height: 26rpx;
  125. color: #ff0003;
  126. }
  127. .reason-desc {
  128. font-weight: 600;
  129. font-size: 20rpx;
  130. line-height: 26rpx;
  131. color: #434343;
  132. }
  133. </style>