s-points-pop.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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">当前可用积分 {{state.pointsInfo}}</view>
  9. </view>
  10. <view class="modal-footer ss-flex">
  11. <button class="confirm-btn ss-reset-button" @tap="emits('close')">取消</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. });
  34. const emits = defineEmits(['confirm', 'close']);
  35. const state = reactive({
  36. pointsInfo: 1000, //computed(() => props.modelValue),
  37. points: undefined,
  38. });
  39. watch(() => state.points, (newValue) => {
  40. if (newValue > state.pointsInfo) {
  41. state.points = state.pointsInfo; // 强制更新为最大值
  42. // 使用 nextTick 确保 DOM 更新
  43. nextTick(() => {
  44. state.points = state.pointsInfo;
  45. });
  46. }
  47. });
  48. // 确认
  49. const onConfirm = () => {
  50. if (!state.points) {
  51. return false
  52. }
  53. emits('confirm', state.points);
  54. }
  55. </script>
  56. <style lang="scss" scoped>
  57. :deep() {
  58. .uni-checkbox-input {
  59. background-color: var(--ui-BG-Main);
  60. }
  61. .uni-input-wrapper {
  62. width: 100% !important
  63. }
  64. }
  65. .model-box {
  66. height: 10vh;
  67. text-align: center;
  68. font-size: 30rpx;
  69. .input-points {
  70. text-align: left;
  71. text-indent: 20rpx;
  72. height: 80rpx;
  73. border: 1px solid #bbbbbb;
  74. border-radius: 10rpx;
  75. }
  76. }
  77. .title {
  78. font-size: 36rpx;
  79. height: 80rpx;
  80. font-weight: bold;
  81. color: #333333;
  82. }
  83. .subtitle {
  84. // font-size: 26rpx;
  85. font-weight: 500;
  86. color: #333333;
  87. }
  88. .model-content {
  89. height: 15vh;
  90. }
  91. .modal-footer {
  92. width: 100%;
  93. height: 120rpx;
  94. // background: #fff;
  95. }
  96. .confirm-btn {
  97. width: 710rpx;
  98. margin-left: 20rpx;
  99. height: 80rpx;
  100. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  101. border-radius: 40rpx;
  102. color: #fff;
  103. }
  104. .reason-title {
  105. font-weight: 600;
  106. font-size: 20rpx;
  107. line-height: 26rpx;
  108. color: #ff0003;
  109. }
  110. .reason-desc {
  111. font-weight: 600;
  112. font-size: 20rpx;
  113. line-height: 26rpx;
  114. color: #434343;
  115. }
  116. </style>