index.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <template>
  2. <view>
  3. <van-cell
  4. :size="size"
  5. :icon="leftIcon"
  6. :title="label"
  7. :center="center"
  8. :border="border"
  9. :is-link="isLink"
  10. :required="required"
  11. :clickable="clickable"
  12. :title-width="titleWidth"
  13. :custom-style="customStyle"
  14. :arrow-direction="arrowDirection"
  15. custom-class="van-field"
  16. title-class="label-class"
  17. >
  18. <slot name="left-icon" slot="icon" />
  19. <slot name="label" slot="title" />
  20. <view :class="utils.bem('field__body', [type])">
  21. <textarea
  22. v-if="type === 'textarea'"
  23. :class="'input-class ' + utils.bem('field__input', [inputAlign, type, { disabled, error }])"
  24. :fixed="fixed"
  25. :focus="focus"
  26. :cursor="cursor"
  27. :value="innerValue"
  28. :auto-focus="autoFocus"
  29. :disabled="disabled || readonly"
  30. :maxlength="maxlength"
  31. :placeholder="placeholder"
  32. :placeholder-style="placeholderStyle"
  33. :placeholder-class="utils.bem('field__placeholder', { error })"
  34. :auto-height="!!autosize"
  35. :style="computed.inputStyle(autosize)"
  36. :cursor-spacing="cursorSpacing"
  37. :adjust-position="adjustPosition"
  38. :show-confirm-bar="showConfirmBar"
  39. :hold-keyboard="holdKeyboard"
  40. :selection-end="selectionEnd"
  41. :selection-start="selectionStart"
  42. :disable-default-padding="disableDefaultPadding"
  43. @input="onInput"
  44. @blur="onBlur"
  45. @focus="onFocus"
  46. @confirm="onConfirm"
  47. @linechange="onLineChange"
  48. @keyboardheightchange="onKeyboardHeightChange"
  49. ></textarea>
  50. <input
  51. v-else
  52. :class="'input-class ' + utils.bem('field__input', [inputAlign, { disabled, error }])"
  53. :type="type"
  54. :focus="focus"
  55. :cursor="cursor"
  56. :value="innerValue"
  57. :auto-focus="autoFocus"
  58. :disabled="disabled || readonly"
  59. :maxlength="maxlength"
  60. :placeholder="placeholder"
  61. :placeholder-style="placeholderStyle"
  62. :placeholder-class="utils.bem('field__placeholder', { error })"
  63. :confirm-type="confirmType"
  64. :confirm-hold="confirmHold"
  65. :hold-keyboard="holdKeyboard"
  66. :cursor-spacing="cursorSpacing"
  67. :adjust-position="adjustPosition"
  68. :selection-end="selectionEnd"
  69. :selection-start="selectionStart"
  70. :password="password || type === 'password'"
  71. @input="onInput"
  72. @blur="onBlur"
  73. @focus="onFocus"
  74. @confirm="onConfirm"
  75. @keyboardheightchange="onKeyboardHeightChange"
  76. />
  77. <van-icon v-if="showClear" name="clear" class="van-field__clear-root van-field__icon-root" @touchstart.native.stop.prevent="onClear" />
  78. <view class="van-field__icon-container" @tap="onClickIcon">
  79. <van-icon v-if="rightIcon || icon" :name="rightIcon || icon" :class="'van-field__icon-root ' + iconClass" custom-class="right-icon-class" />
  80. <slot name="right-icon" />
  81. <slot name="icon" />
  82. </view>
  83. <view class="van-field__button">
  84. <slot name="button" />
  85. </view>
  86. </view>
  87. <view v-if="showWordLimit && maxlength" class="van-field__word-limit">
  88. <view :class="utils.bem('field__word-num', { full: value.length >= maxlength })">{{ value.length }}</view>
  89. /{{ maxlength }}
  90. </view>
  91. <view v-if="errorMessage" :class="utils.bem('field__error-message', [errorMessageAlign, { disabled, error }])">
  92. {{ errorMessage }}
  93. </view>
  94. </van-cell>
  95. </view>
  96. </template>
  97. <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
  98. <script module="computed" lang="wxs" src="@/miniprogram_npm/@vant/weapp/field/index.wxs"></script>
  99. <script>
  100. 'use strict';
  101. var __assign =
  102. (this && this.__assign) ||
  103. function () {
  104. __assign =
  105. Object.assign ||
  106. function (t) {
  107. for (var s, i = 1, n = arguments.length; i < n; i++) {
  108. s = arguments[i];
  109. for (var p in s) {
  110. if (Object.prototype.hasOwnProperty.call(s, p)) {
  111. t[p] = s[p];
  112. }
  113. }
  114. }
  115. return t;
  116. };
  117. return __assign.apply(this, arguments);
  118. };
  119. Object.defineProperty(exports, '__esModule', {
  120. value: true
  121. });
  122. var component_1 = require('../common/component');
  123. var props_1 = require('./props');
  124. component_1.VantComponent({
  125. field: true,
  126. classes: ['input-class', 'right-icon-class', 'label-class'],
  127. props: __assign(__assign(__assign(__assign({}, props_1.commonProps), props_1.inputProps), props_1.textareaProps), {
  128. size: String,
  129. icon: String,
  130. label: String,
  131. error: Boolean,
  132. center: Boolean,
  133. isLink: Boolean,
  134. leftIcon: String,
  135. rightIcon: String,
  136. autosize: [Boolean, Object],
  137. readonly: {
  138. type: Boolean,
  139. observer: 'setShowClear'
  140. },
  141. required: Boolean,
  142. iconClass: String,
  143. clearable: {
  144. type: Boolean,
  145. observer: 'setShowClear'
  146. },
  147. clickable: Boolean,
  148. inputAlign: String,
  149. customStyle: String,
  150. errorMessage: String,
  151. arrowDirection: String,
  152. showWordLimit: Boolean,
  153. errorMessageAlign: String,
  154. border: {
  155. type: Boolean,
  156. value: true
  157. },
  158. titleWidth: {
  159. type: String,
  160. value: '90px'
  161. }
  162. }),
  163. data: {
  164. focused: false,
  165. innerValue: '',
  166. showClear: false
  167. },
  168. created: function () {
  169. this.value = this.value;
  170. this.setData({
  171. innerValue: this.value
  172. });
  173. },
  174. methods: {
  175. onInput: function (event) {
  176. var _a = (event.detail || {}).value;
  177. var value = _a === void 0 ? '' : _a;
  178. this.value = value;
  179. this.setShowClear();
  180. this.emitChange();
  181. },
  182. onFocus: function (event) {
  183. this.focused = true;
  184. this.setShowClear();
  185. this.$emit('focus', event.detail);
  186. },
  187. onBlur: function (event) {
  188. this.focused = false;
  189. this.setShowClear();
  190. this.$emit('blur', event.detail);
  191. },
  192. onClickIcon: function () {
  193. this.$emit('click-icon');
  194. },
  195. onClear: function () {
  196. var that = this;
  197. this.setData({
  198. innerValue: ''
  199. });
  200. this.value = '';
  201. this.setShowClear();
  202. this.$nextTick(function () {
  203. that.emitChange();
  204. that.$emit('clear', '');
  205. });
  206. },
  207. onConfirm: function (event) {
  208. var _a = (event.detail || {}).value;
  209. var value = _a === void 0 ? '' : _a;
  210. this.value = value;
  211. this.setShowClear();
  212. this.$emit('confirm', value);
  213. },
  214. setValue: function (value) {
  215. this.value = value;
  216. this.setShowClear();
  217. if (value === '') {
  218. this.setData({
  219. innerValue: ''
  220. });
  221. }
  222. this.emitChange();
  223. },
  224. onLineChange: function (event) {
  225. this.$emit('linechange', event.detail);
  226. },
  227. onKeyboardHeightChange: function (event) {
  228. this.$emit('keyboardheightchange', event.detail);
  229. },
  230. emitChange: function () {
  231. var that = this;
  232. this.setData({
  233. value: this.value
  234. });
  235. this.$nextTick(function () {
  236. that.$emit('input', that.value);
  237. that.$emit('change', that.value);
  238. });
  239. },
  240. setShowClear: function () {
  241. var _a = this;
  242. var clearable = _a.clearable;
  243. var readonly = _a.readonly;
  244. var that = this;
  245. var focused = that.focused;
  246. var value = that.value;
  247. this.setData({
  248. showClear: !!clearable && !!focused && !!value && !readonly
  249. });
  250. },
  251. noop: function () {}
  252. }
  253. });
  254. </script>
  255. <style>
  256. @import './index.css';
  257. </style>