w-message-input.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. <template>
  2. <view class="u-char-box">
  3. <view class="u-char-flex">
  4. <!-- <input :disabled="disabledKeyboard" :value="valueModel" type="number" :focus="focus" :maxlength="maxlength" class="u-input" @input="getVal"/> -->
  5. <view v-for="(item, index) in loopCharArr" :key="index">
  6. <view :class="[breathe && activeIndex == index ? 'u-breathe' : '', 'u-char-item',
  7. activeIndex === index && mode == 'box' ? 'u-box-active' : '',
  8. mode === 'box' ? 'u-box' : '']" :style="{
  9. fontWeight: bold ? 'bold' : 'normal',
  10. fontSize: fontSize + 'rpx',
  11. width: width + 'rpx',
  12. height: width + 'rpx',
  13. color: inactiveColor,
  14. borderColor: activeIndex === index && mode == 'box' ? activeColor : inactiveColor
  15. }">
  16. <view class="u-placeholder-line" :style="{
  17. display: (activeIndex === index &&charArr[index]=='') ? 'block' : 'none',
  18. height: width * 0.5 +'rpx'
  19. }"
  20. v-if="mode !== 'middleLine'"
  21. ></view>
  22. <view v-if="mode === 'middleLine' && activeIndex <= index" :class="[breathe && activeIndex == index ? 'u-breathe' : '', activeIndex === index ? 'u-middle-line-active' : '']"
  23. class="u-middle-line" :style="{height: bold ? '4px' : '2px', background: activeIndex === index ? activeColor : inactiveColor}"></view>
  24. <view v-if="mode === 'bottomLine'" :class="[breathe && activeIndex == index ? 'u-breathe' : '', activeIndex === index ? 'u-buttom-line-active' : '']"
  25. class="u-bottom-line" :style="{height: bold ? '4px' : '2px', background: activeIndex === index ? activeColor : inactiveColor}"></view>
  26. <block v-if="!dotFill"> {{ charArr[index] ? charArr[index] : ''}}</block>
  27. <block v-else>
  28. <text class="u-dot">{{ charArr[index] ? '●' : ''}}</text>
  29. </block>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. /**
  37. * messageInput 验证码输入框
  38. * @description 该组件一般用于验证用户短信验证码的场景,也可以结合uView的键盘组件使用
  39. * @tutorial https://www.uviewui.com/components/messageInput.html
  40. * @property {String Number} maxlength 输入字符个数(默认4)
  41. * @property {Boolean} dot-fill 是否用圆点填充(默认false)
  42. * @property {String} mode 模式选择,见上方"基本使用"说明(默认box)
  43. * @property {String Number} value 预置值
  44. * @property {Boolean} breathe 是否开启呼吸效果,见上方说明(默认true)
  45. * @property {Boolean} focus 是否自动获取焦点(默认false)
  46. * @property {Boolean} bold 字体和输入横线是否加粗(默认true)
  47. * @property {String Number} font-size 字体大小,单位rpx(默认60)
  48. * @property {String} active-color 当前激活输入框的样式(默认#2979ff)
  49. * @property {String} inactive-color 非激活输入框的样式,文字颜色同此值(默认#606266)
  50. * @property {String | Number} width 输入框宽度,单位rpx,高等于宽(默认80)
  51. * @property {Boolean} disabled-keyboard 禁止点击输入框唤起系统键盘(默认false)
  52. * @event {Function} change 输入内容发生改变时触发,具体见官网说明
  53. * @event {Function} finish 输入字符个数达maxlength值时触发,见官网说明
  54. * @example <u-message-input mode="bottomLine"></u-message-input>
  55. */
  56. export default {
  57. name: "u-message-input",
  58. props: {
  59. // 最大输入长度
  60. maxlength: {
  61. type: [Number, String],
  62. default: 4
  63. },
  64. activeIndex: {
  65. type: [Number, String],
  66. default: 2
  67. },
  68. // 是否用圆点填充
  69. dotFill: {
  70. type: Boolean,
  71. default: false
  72. },
  73. // 显示模式,box-盒子模式,bottomLine-横线在底部模式,middleLine-横线在中部模式
  74. mode: {
  75. type: String,
  76. default: "box"
  77. },
  78. // 预置值
  79. value: {
  80. type: [Array,String,Number],
  81. default: []
  82. },
  83. // 当前激活输入item,是否带有呼吸效果
  84. breathe: {
  85. type: Boolean,
  86. default: true
  87. },
  88. // 是否自动获取焦点
  89. focus: {
  90. type: Boolean,
  91. default: false
  92. },
  93. // 字体是否加粗
  94. bold: {
  95. type: Boolean,
  96. default: false
  97. },
  98. // 字体大小
  99. fontSize: {
  100. type: [String, Number],
  101. default: 60
  102. },
  103. // 激活样式
  104. activeColor: {
  105. type: String,
  106. default: '#2979ff'
  107. },
  108. // 未激活的样式
  109. inactiveColor: {
  110. type: String,
  111. default: '#606266'
  112. },
  113. // 输入框的大小,单位rpx,宽等于高
  114. width: {
  115. type: [Number, String],
  116. default: '80'
  117. },
  118. // 是否隐藏原生键盘,如果想用自定义键盘的话,需设置此参数为true
  119. disabledKeyboard: {
  120. type: Boolean,
  121. default: false
  122. }
  123. },
  124. watch: {
  125. // maxlength: {
  126. // // 此值设置为true,会在组件加载后无需maxlength变化就会执行一次本监听函数,无需再created生命周期中处理
  127. // immediate: true,
  128. // handler(val) {
  129. // this.maxlength = Number(val);
  130. // }
  131. // },
  132. value: {
  133. immediate: true,
  134. handler(val) {
  135. this.valueModel = val;
  136. }
  137. },
  138. },
  139. data() {
  140. return {
  141. valueModel: ""
  142. }
  143. },
  144. computed: {
  145. // 是否显示呼吸灯效果
  146. animationClass() {
  147. return (index) => {
  148. if (this.breathe && this.charArr.length == index) return 'u-breathe';
  149. else return '';
  150. }
  151. },
  152. // 用于显示字符
  153. charArr() {
  154. return this.valueModel;
  155. },
  156. charArrLength() {
  157. console.log('光标下标',this.activeIndex)
  158. return this.activeIndex;
  159. },
  160. // 根据长度,循环输入框的个数,因为头条小程序数值不能用于v-for
  161. loopCharArr() {
  162. return new Array(this.maxlength);
  163. }
  164. },
  165. methods: {
  166. getVal(e) {
  167. let {
  168. value
  169. } = e.detail
  170. console.log(value)
  171. this.valueModel = value;
  172. // 判断长度是否超出了maxlength值,理论上不会发生,因为input组件设置了maxlength属性值
  173. if (String(value).length > this.maxlength) return;
  174. // 未达到maxlength之前,发送change事件,达到后发送finish事件
  175. this.$emit('change', value);
  176. if (String(value).length == this.maxlength) {
  177. this.$emit('finish', value);
  178. }
  179. }
  180. }
  181. }
  182. </script>
  183. <style scoped lang="scss">
  184. @import "../../libs/css/style.components.scss";
  185. @keyframes breathe {
  186. 0% {
  187. opacity: 0.3;
  188. }
  189. 50% {
  190. opacity: 1;
  191. }
  192. 100% {
  193. opacity: 0.3;
  194. }
  195. }
  196. .u-char-box {
  197. text-align: center;
  198. }
  199. .u-char-flex {
  200. @include vue-flex;
  201. justify-content: center;
  202. flex-wrap: wrap;
  203. position: relative;
  204. }
  205. .u-input {
  206. position: absolute;
  207. top: 0;
  208. left: -100%;
  209. width: 200%;
  210. height: 100%;
  211. text-align: left;
  212. z-index: 9;
  213. opacity: 0;
  214. background: none;
  215. }
  216. .u-char-item {
  217. position: relative;
  218. width: 90rpx;
  219. height: 90rpx;
  220. margin: 10rpx 10rpx;
  221. font-size: 60rpx;
  222. font-weight: bold;
  223. color: $u-main-color;
  224. line-height: 90rpx;
  225. @include vue-flex;
  226. justify-content: center;
  227. align-items: center;
  228. }
  229. .u-middle-line {
  230. border: none;
  231. }
  232. .u-box {
  233. box-sizing: border-box;
  234. border: 2rpx solid #cccccc;
  235. border-radius: 6rpx;
  236. }
  237. .u-box-active {
  238. overflow: hidden;
  239. animation-timing-function: ease-in-out;
  240. animation-duration: 1500ms;
  241. animation-iteration-count: infinite;
  242. animation-direction: alternate;
  243. border: 2rpx solid $u-type-primary;
  244. }
  245. .u-middle-line-active {
  246. background: $u-type-primary;
  247. }
  248. .u-breathe {
  249. animation: breathe 2s infinite ease;
  250. }
  251. .u-placeholder-line {
  252. /* #ifndef APP-NVUE */
  253. display: none;
  254. /* #endif */
  255. position: absolute;
  256. left: 50%;
  257. top: 50%;
  258. transform: translate(-50%, -50%);
  259. width: 2rpx;
  260. height: 40rpx;
  261. background: #333333;
  262. animation: twinkling 1.5s infinite ease;
  263. }
  264. .u-animation-breathe {
  265. animation-name: breathe;
  266. }
  267. .u-dot {
  268. font-size: 34rpx;
  269. line-height: 34rpx;
  270. }
  271. .u-middle-line {
  272. height: 4px;
  273. background: #000000;
  274. width: 80%;
  275. position: absolute;
  276. border-radius: 2px;
  277. top: 50%;
  278. left: 50%;
  279. transform: translate(-50%, -50%);
  280. }
  281. .u-buttom-line-active {
  282. background: $u-type-primary;
  283. }
  284. .u-bottom-line {
  285. height: 4px;
  286. background: #000000;
  287. width: 80%;
  288. position: absolute;
  289. border-radius: 2px;
  290. bottom: 0;
  291. left: 50%;
  292. transform: translate(-50%);
  293. }
  294. </style>