裂变星小程序-25.03.04
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
592 B

  1. <template>
  2. <view class="number-box">
  3. <uv-number-box
  4. :value="value"
  5. @input="$emit('input', value)"
  6. :min="1"
  7. integer
  8. button-size="60rpx"
  9. bgColor="#F3F3F3"
  10. color="#000000"
  11. ></uv-number-box>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. props: {
  17. value: {
  18. default: null
  19. },
  20. min: {
  21. type: Number,
  22. default: 1,
  23. }
  24. },
  25. data() {
  26. return {
  27. }
  28. },
  29. }
  30. </script>
  31. <style scoped lang="scss">
  32. .number-box {
  33. background-color: #F3F3F3;
  34. border-radius: 30rpx;
  35. overflow: hidden;
  36. }
  37. </style>