uni-events-helper-wx
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.

206 lines
6.1 KiB

3 years ago
  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. *
  61. * @event {Function} change 输入内容发生改变时触发具体见上方说明 value当前输入的值
  62. * @event {Function} finish 输入字符个数达maxlength值时触发见上方说明 value当前输入的值
  63. * @example <u-code-input v-model="value4" :focus="true"></u-code-input>
  64. */
  65. export default {
  66. name: 'u-code-input',
  67. mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
  68. data() {
  69. return {
  70. inputValue: ''
  71. }
  72. },
  73. watch: {
  74. value: {
  75. immediate: true,
  76. handler(val) {
  77. // 转为字符串,超出部分截掉
  78. this.inputValue = String(val).substring(0, this.maxlength)
  79. }
  80. },
  81. },
  82. computed: {
  83. // 根据长度,循环输入框的个数,因为头条小程序数值不能用于v-for
  84. codeLength() {
  85. return new Array(this.maxlength)
  86. },
  87. // 循环item的样式
  88. itemStyle() {
  89. return index => {
  90. const addUnit = uni.$u.addUnit
  91. const style = {
  92. width: addUnit(this.size),
  93. height: addUnit(this.size)
  94. }
  95. // 盒子模式下,需要额外进行处理
  96. if (this.mode === 'box') {
  97. // 设置盒子的边框,如果是细边框,则设置为0.5px宽度
  98. style.border = `${this.hairline ? 0.5 : 1}px solid ${this.borderColor}`
  99. // 如果盒子间距为0的话
  100. if (uni.$u.getPx(this.space) === 0) {
  101. // 给第一和最后一个盒子设置圆角
  102. if (index === 0) {
  103. style.borderTopLeftRadius = '3px'
  104. style.borderBottomLeftRadius = '3px'
  105. }
  106. if (index === this.codeLength.length - 1) {
  107. style.borderTopRightRadius = '3px'
  108. style.borderBottomRightRadius = '3px'
  109. }
  110. // 最后一个盒子的右边框需要保留
  111. if (index !== this.codeLength.length - 1) {
  112. style.borderRight = 'none'
  113. }
  114. }
  115. }
  116. if (index !== this.codeLength.length - 1) {
  117. // 设置验证码字符之间的距离,通过margin-right设置,最后一个字符,无需右边框
  118. style.marginRight = addUnit(this.space)
  119. } else {
  120. // 最后一个盒子的有边框需要保留
  121. style.marginRight = 0
  122. }
  123. return style
  124. }
  125. },
  126. // 将输入的值,转为数组,给item历遍时,根据当前的索引显示数组的元素
  127. codeArray() {
  128. return String(this.inputValue).split('')
  129. },
  130. // 下划线模式下,横线的样式
  131. lineStyle() {
  132. const style = {}
  133. style.height = this.hairline ? '2px' : '4px'
  134. style.width = uni.$u.addUnit(this.size)
  135. // 线条模式下,背景色即为边框颜色
  136. style.backgroundColor = this.borderColor
  137. return style
  138. }
  139. },
  140. methods: {
  141. // 监听输入框的值发生变化
  142. inputHandler(e) {
  143. const value = e.detail.value
  144. this.inputValue = value
  145. // 未达到maxlength之前,发送change事件,达到后发送finish事件
  146. this.$emit('change', value)
  147. // 修改通过v-model双向绑定的值
  148. this.$emit('input', value)
  149. // 达到用户指定输入长度时,发出完成事件
  150. if (String(value).length >= Number(this.maxlength)) {
  151. this.$emit('finish', value)
  152. }
  153. }
  154. }
  155. }
  156. </script>
  157. <style lang="scss">
  158. @import "../../libs/css/components.scss";
  159. .u-code-input {
  160. @include flex;
  161. position: relative;
  162. overflow: hidden;
  163. &__item {
  164. @include flex;
  165. justify-content: center;
  166. align-items: center;
  167. &__text {
  168. font-size: 15px;
  169. color: $u-content-color;
  170. }
  171. &__dot {
  172. width: 7px;
  173. height: 7px;
  174. border-radius: 100px;
  175. background-color: $u-content-color;
  176. }
  177. &__line {
  178. position: absolute;
  179. bottom: 0;
  180. height: 4px;
  181. border-radius: 100px;
  182. width: 40px;
  183. background-color: $u-content-color;
  184. }
  185. }
  186. &__input {
  187. // 之所以需要input输入框,是因为有它才能唤起键盘
  188. // 这里将它设置为两倍的屏幕宽度,再将左边的一半移出屏幕,为了不让用户看到输入的内容
  189. position: absolute;
  190. left: -150rpx;
  191. width: 1500rpx;
  192. top: 0;
  193. background-color: transparent;
  194. text-align: left;
  195. }
  196. }
  197. </style>