u-code-input.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <template>
  2. <view class="u-code-input">
  3. <view
  4. class="u-code-input__item"
  5. :style="[itemStyle(index)]"
  6. v-for="(item, index) in codeLength"
  7. :key="index"
  8. >
  9. <view
  10. class="u-code-input__item__dot"
  11. v-if="dot && codeArray.length > index"
  12. ></view>
  13. <text
  14. v-else
  15. :style="{
  16. fontSize: $u.addUnit(fontSize),
  17. fontWeight: bold ? 'bold' : 'normal',
  18. color: color
  19. }"
  20. >{{codeArray[index]}}</text>
  21. <view
  22. class="u-code-input__item__line"
  23. v-if="mode === 'line'"
  24. :style="[lineStyle]"
  25. ></view>
  26. </view>
  27. <input
  28. :disabled="disabledKeyboard"
  29. type="number"
  30. :focus="focus"
  31. :value="inputValue"
  32. :maxlength="maxlength"
  33. class="u-code-input__input"
  34. @input="inputHandler"
  35. :style="{
  36. height: $u.addUnit(size)
  37. }"
  38. />
  39. </view>
  40. </template>
  41. <script>
  42. import props from './props.js';
  43. /**
  44. * CodeInput 验证码输入
  45. * @description 该组件一般用于验证用户短信验证码的场景,也可以结合uView的键盘组件使用
  46. * @tutorial https://www.uviewui.com/components/codeInput.html
  47. * @property {String | Number} maxlength 最大输入长度 (默认 6 )
  48. * @property {Boolean} dot 是否用圆点填充 (默认 false )
  49. * @property {String} mode 显示模式,box-盒子模式,line-底部横线模式 (默认 'box' )
  50. * @property {Boolean} hairline 是否细边框 (默认 false )
  51. * @property {String | Number} space 字符间的距离 (默认 10 )
  52. * @property {String | Number} value 预置值
  53. * @property {Boolean} focus 是否自动获取焦点 (默认 false )
  54. * @property {Boolean} bold 字体和输入横线是否加粗 (默认 false )
  55. * @property {String} color 字体颜色 (默认 '#606266' )
  56. * @property {String | Number} fontSize 字体大小,单位px (默认 18 )
  57. * @property {String | Number} size 输入框的大小,宽等于高 (默认 35 )
  58. * @property {Boolean} disabledKeyboard 是否隐藏原生键盘,如果想用自定义键盘的话,需设置此参数为true (默认 false )
  59. * @property {String} borderColor 边框和线条颜色 (默认 '#c9cacc' )
  60. * @property {Boolean} disabledDot 是否禁止输入"."符号 (默认 true )
  61. *
  62. * @event {Function} change 输入内容发生改变时触发,具体见上方说明 value:当前输入的值
  63. * @event {Function} finish 输入字符个数达maxlength值时触发,见上方说明 value:当前输入的值
  64. * @example <u-code-input v-model="value4" :focus="true"></u-code-input>
  65. */
  66. export default {
  67. name: 'u-code-input',
  68. mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
  69. data() {
  70. return {
  71. inputValue: ''
  72. }
  73. },
  74. watch: {
  75. value: {
  76. immediate: true,
  77. handler(val) {
  78. // 转为字符串,超出部分截掉
  79. this.inputValue = String(val).substring(0, this.maxlength)
  80. }
  81. },
  82. },
  83. computed: {
  84. // 根据长度,循环输入框的个数,因为头条小程序数值不能用于v-for
  85. codeLength() {
  86. return new Array(Number(this.maxlength))
  87. },
  88. // 循环item的样式
  89. itemStyle() {
  90. return index => {
  91. const addUnit = uni.$u.addUnit
  92. const style = {
  93. width: addUnit(this.size),
  94. height: addUnit(this.size)
  95. }
  96. // 盒子模式下,需要额外进行处理
  97. if (this.mode === 'box') {
  98. // 设置盒子的边框,如果是细边框,则设置为0.5px宽度
  99. style.border = `${this.hairline ? 0.5 : 1}px solid ${this.borderColor}`
  100. // 如果盒子间距为0的话
  101. if (uni.$u.getPx(this.space) === 0) {
  102. // 给第一和最后一个盒子设置圆角
  103. if (index === 0) {
  104. style.borderTopLeftRadius = '3px'
  105. style.borderBottomLeftRadius = '3px'
  106. }
  107. if (index === this.codeLength.length - 1) {
  108. style.borderTopRightRadius = '3px'
  109. style.borderBottomRightRadius = '3px'
  110. }
  111. // 最后一个盒子的右边框需要保留
  112. if (index !== this.codeLength.length - 1) {
  113. style.borderRight = 'none'
  114. }
  115. }
  116. }
  117. if (index !== this.codeLength.length - 1) {
  118. // 设置验证码字符之间的距离,通过margin-right设置,最后一个字符,无需右边框
  119. style.marginRight = addUnit(this.space)
  120. } else {
  121. // 最后一个盒子的有边框需要保留
  122. style.marginRight = 0
  123. }
  124. return style
  125. }
  126. },
  127. // 将输入的值,转为数组,给item历遍时,根据当前的索引显示数组的元素
  128. codeArray() {
  129. return String(this.inputValue).split('')
  130. },
  131. // 下划线模式下,横线的样式
  132. lineStyle() {
  133. const style = {}
  134. style.height = this.hairline ? '2px' : '4px'
  135. style.width = uni.$u.addUnit(this.size)
  136. // 线条模式下,背景色即为边框颜色
  137. style.backgroundColor = this.borderColor
  138. return style
  139. }
  140. },
  141. methods: {
  142. // 监听输入框的值发生变化
  143. inputHandler(e) {
  144. const value = e.detail.value
  145. this.inputValue = value
  146. // 是否允许输入“.”符号
  147. if(this.disabledDot) {
  148. this.$nextTick(() => {
  149. this.inputValue = value.replace('.', '')
  150. })
  151. }
  152. // 未达到maxlength之前,发送change事件,达到后发送finish事件
  153. this.$emit('change', value)
  154. // 修改通过v-model双向绑定的值
  155. this.$emit('input', value)
  156. // 达到用户指定输入长度时,发出完成事件
  157. if (String(value).length >= Number(this.maxlength)) {
  158. this.$emit('finish', value)
  159. }
  160. }
  161. }
  162. }
  163. </script>
  164. <style lang="scss" scoped>
  165. @import "../../libs/css/components.scss";
  166. .u-code-input {
  167. @include flex;
  168. position: relative;
  169. overflow: hidden;
  170. &__item {
  171. @include flex;
  172. justify-content: center;
  173. align-items: center;
  174. &__text {
  175. font-size: 15px;
  176. color: $u-content-color;
  177. }
  178. &__dot {
  179. width: 7px;
  180. height: 7px;
  181. border-radius: 100px;
  182. background-color: $u-content-color;
  183. }
  184. &__line {
  185. position: absolute;
  186. bottom: 0;
  187. height: 4px;
  188. border-radius: 100px;
  189. width: 40px;
  190. background-color: $u-content-color;
  191. }
  192. }
  193. &__input {
  194. // 之所以需要input输入框,是因为有它才能唤起键盘
  195. // 这里将它设置为两倍的屏幕宽度,再将左边的一半移出屏幕,为了不让用户看到输入的内容
  196. position: absolute;
  197. left: -750rpx;
  198. width: 1500rpx;
  199. top: 0;
  200. background-color: transparent;
  201. text-align: left;
  202. }
  203. }
  204. </style>