u-input.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. <template>
  2. <view
  3. class="u-input"
  4. :class="{
  5. 'u-input--border': border,
  6. 'u-input--error': validateState,
  7. 'u-input--borderZ': borderZ,
  8. }"
  9. :style="{
  10. padding: `0 ${border ? 20 : 0}rpx`,
  11. borderColor: borderColor,
  12. textAlign: inputAlign,
  13. borderRadius: borderRadius
  14. }"
  15. @tap.stop="inputClick"
  16. >
  17. <u-icon v-if="isExistIcon" custom-prefix="custom-icon" style="margin-right:33rpx" :name="iconName" size="40" color="#fff"></u-icon>
  18. <textarea
  19. v-if="type == 'textarea'"
  20. class="u-input__input u-input__textarea"
  21. :style="[getStyle]"
  22. :value="defaultValue"
  23. :placeholder="placeholder"
  24. :placeholderStyle="placeholderStyle"
  25. :disabled="disabled"
  26. :maxlength="inputMaxlength"
  27. :fixed="fixed"
  28. :focus="focus"
  29. :autoHeight="autoHeight"
  30. :selection-end="uSelectionEnd"
  31. :selection-start="uSelectionStart"
  32. :cursor-spacing="getCursorSpacing"
  33. :show-confirm-bar="showConfirmbar"
  34. @input="handleInput"
  35. @blur="handleBlur"
  36. @focus="onFocus"
  37. @confirm="onConfirm"
  38. />
  39. <input
  40. v-else
  41. class="u-input__input"
  42. :type="type == 'password' ? 'text' : type"
  43. :style="[getStyle]"
  44. :value="defaultValue"
  45. :password="type == 'password' && !showPassword"
  46. :placeholder="placeholder"
  47. :placeholderStyle="placeholderStyle"
  48. :disabled="disabled || type === 'select'"
  49. :maxlength="inputMaxlength"
  50. :focus="focus"
  51. :confirmType="confirmType"
  52. :cursor-spacing="getCursorSpacing"
  53. :selection-end="uSelectionEnd"
  54. :selection-start="uSelectionStart"
  55. :show-confirm-bar="showConfirmbar"
  56. @focus="onFocus"
  57. @blur="handleBlur"
  58. @input="handleInput"
  59. @confirm="onConfirm"
  60. />
  61. <view class="u-input__right-icon u-flex">
  62. <view class="u-input__right-icon__clear u-input__right-icon__item" @tap="onClear" v-if="clearable && value != '' && focused">
  63. <u-icon size="32" name="close-circle-fill" color="#c0c4cc"/>
  64. </view>
  65. <view class="u-input__right-icon__clear u-input__right-icon__item" v-if="passwordIcon && type == 'password'">
  66. <u-icon size="32" custom-prefix="custom-icon" :name="!showPassword ? 'yanjing' : 'yanjing-zhengyan'" color="#c0c4cc" @click="showPassword = !showPassword"/>
  67. </view>
  68. <view class="u-input__right-icon--select u-input__right-icon__item" v-if="type == 'select'" :class="{
  69. 'u-input__right-icon--select--reverse': selectOpen
  70. }">
  71. <u-icon name="arrow-down-fill" size="26" color="#c0c4cc"></u-icon>
  72. </view>
  73. </view>
  74. </view>
  75. </template>
  76. <script>
  77. import Emitter from '../../libs/util/emitter.js';
  78. /**
  79. * input 输入框
  80. * @description 此组件为一个输入框,默认没有边框和样式,是专门为配合表单组件u-form而设计的,利用它可以快速实现表单验证,输入内容,下拉选择等功能。
  81. * @tutorial http://uviewui.com/components/input.html
  82. * @property {String} type 模式选择,见官网说明
  83. * @property {Boolean} clearable 是否显示右侧的清除图标(默认true)
  84. * @property {} v-model 用于双向绑定输入框的值
  85. * @property {String} input-align 输入框文字的对齐方式(默认left)
  86. * @property {String} placeholder placeholder显示值(默认 '请输入内容')
  87. * @property {Boolean} disabled 是否禁用输入框(默认false)
  88. * @property {String Number} maxlength 输入框的最大可输入长度(默认140)
  89. * @property {String Number} selection-start 光标起始位置,自动聚焦时有效,需与selection-end搭配使用(默认-1)
  90. * @property {String Number} maxlength 光标结束位置,自动聚焦时有效,需与selection-start搭配使用(默认-1)
  91. * @property {String Number} cursor-spacing 指定光标与键盘的距离,单位px(默认0)
  92. * @property {String} placeholderStyle placeholder的样式,字符串形式,如"color: red;"(默认 "color: #c0c4cc;")
  93. * @property {String} confirm-type 设置键盘右下角按钮的文字,仅在type为text时生效(默认done)
  94. * @property {Object} custom-style 自定义输入框的样式,对象形式
  95. * @property {Boolean} focus 是否自动获得焦点(默认false)
  96. * @property {Boolean} fixed 如果type为textarea,且在一个"position:fixed"的区域,需要指明为true(默认false)
  97. * @property {Boolean} password-icon type为password时,是否显示右侧的密码查看图标(默认true)
  98. * @property {Boolean} border 是否显示边框(默认false)
  99. * @property {String} border-color 输入框的边框颜色(默认#dcdfe6)
  100. * @property {Boolean} auto-height 是否自动增高输入区域,type为textarea时有效(默认true)
  101. * @property {String Number} height 高度,单位rpx(text类型时为70,textarea时为100)
  102. * @example <u-input v-model="value" :type="type" :border="border" />
  103. */
  104. export default {
  105. name: 'u-input',
  106. mixins: [Emitter],
  107. props: {
  108. value: {
  109. type: [String, Number],
  110. default: ''
  111. },
  112. // 输入框的类型,textarea,text,number
  113. type: {
  114. type: String,
  115. default: 'text'
  116. },
  117. inputAlign: {
  118. type: String,
  119. default: 'left'
  120. },
  121. placeholder: {
  122. type: String,
  123. default: '请输入内容'
  124. },
  125. disabled: {
  126. type: Boolean,
  127. default: false
  128. },
  129. maxlength: {
  130. type: [Number, String],
  131. default: 140
  132. },
  133. placeholderStyle: {
  134. type: String,
  135. default: 'color: #c0c4cc;'
  136. },
  137. confirmType: {
  138. type: String,
  139. default: 'done'
  140. },
  141. // 输入框的自定义样式
  142. customStyle: {
  143. type: Object,
  144. default() {
  145. return {};
  146. }
  147. },
  148. // 如果 textarea 是在一个 position:fixed 的区域,需要显示指定属性 fixed 为 true
  149. fixed: {
  150. type: Boolean,
  151. default: false
  152. },
  153. // 是否自动获得焦点
  154. focus: {
  155. type: Boolean,
  156. default: false
  157. },
  158. // 密码类型时,是否显示右侧的密码图标
  159. passwordIcon: {
  160. type: Boolean,
  161. default: true
  162. },
  163. // input|textarea是否显示边框
  164. border: {
  165. type: Boolean,
  166. default: false
  167. },
  168. // 输入框的边框颜色
  169. borderColor: {
  170. type: String,
  171. default: '#dcdfe6'
  172. },
  173. autoHeight: {
  174. type: Boolean,
  175. default: true
  176. },
  177. // type=select时,旋转右侧的图标,标识当前处于打开还是关闭select的状态
  178. // open-打开,close-关闭
  179. selectOpen: {
  180. type: Boolean,
  181. default: false
  182. },
  183. // 高度,单位rpx
  184. height: {
  185. type: [Number, String],
  186. default: ''
  187. },
  188. // 是否可清空
  189. clearable: {
  190. type: Boolean,
  191. default: true
  192. },
  193. // 指定光标与键盘的距离,单位 px
  194. cursorSpacing: {
  195. type: [Number, String],
  196. default: 0
  197. },
  198. // 光标起始位置,自动聚焦时有效,需与selection-end搭配使用
  199. selectionStart: {
  200. type: [Number, String],
  201. default: -1
  202. },
  203. // 光标结束位置,自动聚焦时有效,需与selection-start搭配使用
  204. selectionEnd: {
  205. type: [Number, String],
  206. default: -1
  207. },
  208. // 是否自动去除两端的空格
  209. trim: {
  210. type: Boolean,
  211. default: true
  212. },
  213. // 是否显示键盘上方带有”完成“按钮那一栏
  214. showConfirmbar:{
  215. type:Boolean,
  216. default:true
  217. },
  218. // 赵志鹏
  219. // 最外层下边框边框
  220. borderZ: {
  221. type: Boolean,
  222. default: false
  223. },
  224. // 是否带图标
  225. isExistIcon: {
  226. type: Boolean,
  227. default: true
  228. },
  229. // 图标名
  230. iconName: {
  231. type: String,
  232. default: 'yonghu'
  233. },
  234. // 边框圆角
  235. borderRadius: {
  236. type: String,
  237. default: ''
  238. }
  239. },
  240. data() {
  241. return {
  242. defaultValue: this.value,
  243. inputHeight: 70, // input的高度
  244. textareaHeight: 100, // textarea的高度
  245. validateState: false, // 当前input的验证状态,用于错误时,边框是否改为红色
  246. focused: false, // 当前是否处于获得焦点的状态
  247. showPassword: false, // 是否预览密码
  248. lastValue: '', // 用于头条小程序,判断@input中,前后的值是否发生了变化,因为头条中文下,按下键没有输入内容,也会触发@input时间
  249. };
  250. },
  251. watch: {
  252. value(nVal, oVal) {
  253. this.defaultValue = nVal;
  254. // 当值发生变化,且为select类型时(此时input被设置为disabled,不会触发@input事件),模拟触发@input事件
  255. if(nVal != oVal && this.type == 'select') this.handleInput({
  256. detail: {
  257. value: nVal
  258. }
  259. })
  260. },
  261. },
  262. computed: {
  263. // 因为uniapp的input组件的maxlength组件必须要数值,这里转为数值,给用户可以传入字符串数值
  264. inputMaxlength() {
  265. return Number(this.maxlength);
  266. },
  267. getStyle() {
  268. let style = {};
  269. // 如果没有自定义高度,就根据type为input还是textare来分配一个默认的高度
  270. style.minHeight = this.height ? this.height + 'rpx' : this.type == 'textarea' ?
  271. this.textareaHeight + 'rpx' : this.inputHeight + 'rpx';
  272. style = Object.assign(style, this.customStyle);
  273. return style;
  274. },
  275. //
  276. getCursorSpacing() {
  277. return Number(this.cursorSpacing);
  278. },
  279. // 光标起始位置
  280. uSelectionStart() {
  281. return String(this.selectionStart);
  282. },
  283. // 光标结束位置
  284. uSelectionEnd() {
  285. return String(this.selectionEnd);
  286. }
  287. },
  288. created() {
  289. // 监听u-form-item发出的错误事件,将输入框边框变红色
  290. this.$on('on-form-item-error', this.onFormItemError);
  291. },
  292. methods: {
  293. /**
  294. * change 事件
  295. * @param event
  296. */
  297. handleInput(event) {
  298. let value = event.detail.value;
  299. // 判断是否去除空格
  300. if(this.trim) value = this.$u.trim(value);
  301. // vue 原生的方法 return 出去
  302. this.$emit('input', value);
  303. // 当前model 赋值
  304. this.defaultValue = value;
  305. // 过一个生命周期再发送事件给u-form-item,否则this.$emit('input')更新了父组件的值,但是微信小程序上
  306. // 尚未更新到u-form-item,导致获取的值为空,从而校验混论
  307. // 这里不能延时时间太短,或者使用this.$nextTick,否则在头条上,会造成混乱
  308. setTimeout(() => {
  309. // 头条小程序由于自身bug,导致中文下,每按下一个键(尚未完成输入),都会触发一次@input,导致错误,这里进行判断处理
  310. // #ifdef MP-TOUTIAO
  311. if(this.$u.trim(value) == this.lastValue) return ;
  312. this.lastValue = value;
  313. // #endif
  314. // 将当前的值发送到 u-form-item 进行校验
  315. this.dispatch('u-form-item', 'on-form-change', value);
  316. }, 40)
  317. },
  318. /**
  319. * blur 事件
  320. * @param event
  321. */
  322. handleBlur(event) {
  323. // 最开始使用的是监听图标@touchstart事件,自从hx2.8.4后,此方法在微信小程序出错
  324. // 这里改为监听点击事件,手点击清除图标时,同时也发生了@blur事件,导致图标消失而无法点击,这里做一个延时
  325. setTimeout(() => {
  326. this.focused = false;
  327. }, 100)
  328. // vue 原生的方法 return 出去
  329. this.$emit('blur', event.detail.value);
  330. setTimeout(() => {
  331. // 头条小程序由于自身bug,导致中文下,每按下一个键(尚未完成输入),都会触发一次@input,导致错误,这里进行判断处理
  332. // #ifdef MP-TOUTIAO
  333. if(this.$u.trim(value) == this.lastValue) return ;
  334. this.lastValue = value;
  335. // #endif
  336. // 将当前的值发送到 u-form-item 进行校验
  337. this.dispatch('u-form-item', 'on-form-blur', event.detail.value);
  338. }, 40)
  339. },
  340. onFormItemError(status) {
  341. this.validateState = status;
  342. },
  343. onFocus(event) {
  344. this.focused = true;
  345. this.$emit('focus');
  346. },
  347. onConfirm(e) {
  348. this.$emit('confirm', e.detail.value);
  349. },
  350. onClear(event) {
  351. this.$emit('input', '');
  352. },
  353. inputClick() {
  354. this.$emit('click');
  355. }
  356. }
  357. };
  358. </script>
  359. <style lang="scss" scoped>
  360. @import "../../libs/css/style.components.scss";
  361. .u-input {
  362. position: relative;
  363. flex: 1;
  364. @include vue-flex;
  365. &__input {
  366. //height: $u-form-item-height;
  367. font-size: 28rpx;
  368. color: $u-main-color;
  369. flex: 1;
  370. }
  371. &__textarea {
  372. width: auto;
  373. font-size: 28rpx;
  374. color: $u-main-color;
  375. padding: 0;
  376. line-height: normal;
  377. flex: 1;
  378. }
  379. &--border {
  380. // border-radius: 6rpx;
  381. border-radius: 4px;
  382. border: 1px solid $u-form-item-border-color;
  383. }
  384. &--borderZ {
  385. border-bottom: 2px solid #EBB162!important;
  386. }
  387. &--error {
  388. border-color: $u-type-error!important;
  389. }
  390. &__right-icon {
  391. &__item {
  392. margin-left: 10rpx;
  393. }
  394. &--select {
  395. transition: transform .4s;
  396. &--reverse {
  397. transform: rotate(-180deg);
  398. }
  399. }
  400. }
  401. }
  402. </style>