uni-number-box.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <template>
  2. <view class="uni-numbox">
  3. <view @click="_calcValue('minus')" class="uni-numbox__minus uni-numbox-btns" :style="{background}">
  4. <text class="uni-numbox--text" :class="{ 'uni-numbox--disabled': inputValue <= min || disabled }" :style="{color}">-</text>
  5. </view>
  6. <input :disabled="disabled" @focus="_onFocus" @blur="_onBlur" class="uni-numbox__value" type="number"
  7. v-model="inputValue" :style="{background, color}" />
  8. <view @click="_calcValue('plus')" class="uni-numbox__plus uni-numbox-btns" :style="{background}">
  9. <text class="uni-numbox--text" :class="{ 'uni-numbox--disabled': inputValue >= max || disabled }" :style="{color}">+</text>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. /**
  15. * NumberBox 数字输入框
  16. * @description 带加减按钮的数字输入框
  17. * @tutorial https://ext.dcloud.net.cn/plugin?id=31
  18. * @property {Number} value 输入框当前值
  19. * @property {Number} min 最小值
  20. * @property {Number} max 最大值
  21. * @property {Number} step 每次点击改变的间隔大小
  22. * @property {String} background 背景色
  23. * @property {String} color 字体颜色(前景色)
  24. * @property {Boolean} disabled = [true|false] 是否为禁用状态
  25. * @event {Function} change 输入框值改变时触发的事件,参数为输入框当前的 value
  26. * @event {Function} focus 输入框聚焦时触发的事件,参数为 event 对象
  27. * @event {Function} blur 输入框失焦时触发的事件,参数为 event 对象
  28. */
  29. export default {
  30. name: "UniNumberBox",
  31. emits: ['change', 'input', 'update:modelValue', 'blur', 'focus'],
  32. props: {
  33. value: {
  34. type: [Number, String],
  35. default: 1
  36. },
  37. modelValue: {
  38. type: [Number, String],
  39. default: 1
  40. },
  41. min: {
  42. type: Number,
  43. default: 0
  44. },
  45. max: {
  46. type: Number,
  47. default: 100
  48. },
  49. step: {
  50. type: Number,
  51. default: 1
  52. },
  53. background: {
  54. type: String,
  55. default: '#f5f5f5'
  56. },
  57. color: {
  58. type: String,
  59. default: '#333'
  60. },
  61. disabled: {
  62. type: Boolean,
  63. default: false
  64. }
  65. },
  66. data() {
  67. return {
  68. inputValue: 0
  69. };
  70. },
  71. watch: {
  72. value(val) {
  73. this.inputValue = +val;
  74. },
  75. modelValue(val) {
  76. this.inputValue = +val;
  77. }
  78. },
  79. created() {
  80. if (this.value === 1) {
  81. this.inputValue = +this.modelValue;
  82. }
  83. if (this.modelValue === 1) {
  84. this.inputValue = +this.value;
  85. }
  86. },
  87. methods: {
  88. _calcValue(type) {
  89. if (this.disabled) {
  90. return;
  91. }
  92. const scale = this._getDecimalScale();
  93. let value = this.inputValue * scale;
  94. let step = this.step * scale;
  95. if (type === "minus") {
  96. value -= step;
  97. if (value < (this.min * scale)) {
  98. return;
  99. }
  100. if (value > (this.max * scale)) {
  101. value = this.max * scale
  102. }
  103. }
  104. if (type === "plus") {
  105. value += step;
  106. if (value > (this.max * scale)) {
  107. return;
  108. }
  109. if (value < (this.min * scale)) {
  110. value = this.min * scale
  111. }
  112. }
  113. this.inputValue = (value / scale).toFixed(String(scale).length - 1);
  114. this.$emit("change", +this.inputValue);
  115. // TODO vue2 兼容
  116. this.$emit("input", +this.inputValue);
  117. // TODO vue3 兼容
  118. this.$emit("update:modelValue", +this.inputValue);
  119. },
  120. _getDecimalScale() {
  121. let scale = 1;
  122. // 浮点型
  123. if (~~this.step !== this.step) {
  124. scale = Math.pow(10, String(this.step).split(".")[1].length);
  125. }
  126. return scale;
  127. },
  128. _onBlur(event) {
  129. this.$emit('blur', event)
  130. let value = event.detail.value;
  131. if (!value) {
  132. // this.inputValue = 0;
  133. return;
  134. }
  135. value = +value;
  136. if (value > this.max) {
  137. value = this.max;
  138. } else if (value < this.min) {
  139. value = this.min;
  140. }
  141. const scale = this._getDecimalScale();
  142. this.inputValue = value.toFixed(String(scale).length - 1);
  143. this.$emit("change", +this.inputValue);
  144. this.$emit("input", +this.inputValue);
  145. },
  146. _onFocus(event) {
  147. this.$emit('focus', event)
  148. }
  149. }
  150. };
  151. </script>
  152. <style lang="scss" scoped>
  153. $box-height: 26px;
  154. $bg: #f5f5f5;
  155. $br: 2px;
  156. $color: #333;
  157. .uni-numbox {
  158. /* #ifndef APP-NVUE */
  159. display: flex;
  160. /* #endif */
  161. flex-direction: row;
  162. }
  163. .uni-numbox-btns {
  164. /* #ifndef APP-NVUE */
  165. display: flex;
  166. /* #endif */
  167. flex-direction: row;
  168. align-items: center;
  169. justify-content: center;
  170. padding: 0 8px;
  171. background-color: $bg;
  172. /* #ifdef H5 */
  173. cursor: pointer;
  174. /* #endif */
  175. }
  176. .uni-numbox__value {
  177. margin: 0 2px;
  178. background-color: $bg;
  179. width: 40px;
  180. height: $box-height;
  181. text-align: center;
  182. font-size: 14px;
  183. border-left-width: 0;
  184. border-right-width: 0;
  185. color: $color;
  186. }
  187. .uni-numbox__minus {
  188. border-top-left-radius: $br;
  189. border-bottom-left-radius: $br;
  190. }
  191. .uni-numbox__plus {
  192. border-top-right-radius: $br;
  193. border-bottom-right-radius: $br;
  194. }
  195. .uni-numbox--text {
  196. // fix nvue
  197. line-height: 20px;
  198. font-size: 20px;
  199. font-weight: 300;
  200. color: $color;
  201. }
  202. .uni-numbox .uni-numbox--disabled {
  203. color: #c0c0c0 !important;
  204. /* #ifdef H5 */
  205. cursor: not-allowed;
  206. /* #endif */
  207. }
  208. </style>