u-input.vue 12 KB

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