index.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <template>
  2. <uni-shadow-root class="vant-field-index"><van-cell :size="size" :icon="leftIcon" :center="center" :border="border" :is-link="isLink" :required="required" :clickable="clickable" :title-width="titleWidth" title-style="margin-right: 12px;" :custom-style="customStyle" :arrow-direction="arrowDirection" custom-class="custom-class van-field">
  3. <slot name="left-icon" slot="icon"></slot>
  4. <label :for="name" v-if="label" :class="'label-class '+(utils.bem('field__label', { disabled }))" slot="title">
  5. {{ label }}
  6. </label>
  7. <slot v-else name="label" slot="title"></slot>
  8. <view :class="utils.bem('field__body', [type])">
  9. <view :class="utils.bem('field__control', [inputAlign, 'custom'])" @click="onClickInput">
  10. <slot name="input"></slot>
  11. </view>
  12. <include v-if="type === 'textarea'" src="./textarea.wxml"></include>
  13. <include v-else src="./input.wxml"></include>
  14. <van-icon v-if="showClear" :name="clearIcon" class="van-field__clear-root van-field__icon-root" @touchstart.native.stop.prevent="onClear"></van-icon>
  15. <view class="van-field__icon-container" @click="onClickIcon">
  16. <van-icon v-if="rightIcon || icon" :name="rightIcon || icon" :class="'van-field__icon-root '+(iconClass)" custom-class="right-icon-class"></van-icon>
  17. <slot name="right-icon"></slot>
  18. <slot name="icon"></slot>
  19. </view>
  20. <view class="van-field__button">
  21. <slot name="button"></slot>
  22. </view>
  23. </view>
  24. <label :for="name" v-if="showWordLimit && maxlength" class="van-field__word-limit">
  25. <view :class="utils.bem('field__word-num', { full: value.length >= maxlength })">{{ value.length >= maxlength ? maxlength : value.length }}</view>/{{ maxlength }}
  26. </label>
  27. <label :for="name" v-if="errorMessage" :class="utils.bem('field__error-message', [errorMessageAlign, { disabled, error }])">
  28. {{ errorMessage }}
  29. </label>
  30. </van-cell></uni-shadow-root>
  31. </template>
  32. <wxs src="../wxs/utils.wxs" module="utils"></wxs><wxs src="./index.wxs" module="computed"></wxs>
  33. <script>
  34. import VanCell from '../cell/index.vue'
  35. import VanIcon from '../icon/index.vue'
  36. global['__wxVueOptions'] = {components:{'van-cell': VanCell,'van-icon': VanIcon}}
  37. global['__wxRoute'] = 'vant/field/index'
  38. import { nextTick } from '../common/utils';
  39. import { VantComponent } from '../common/component';
  40. import { commonProps, inputProps, textareaProps } from './props';
  41. VantComponent({
  42. field: true,
  43. classes: ['input-class', 'right-icon-class', 'label-class'],
  44. props: Object.assign(Object.assign(Object.assign(Object.assign({}, commonProps), inputProps), textareaProps), { size: String, icon: String, label: String, error: Boolean, center: Boolean, isLink: Boolean, leftIcon: String, rightIcon: String, autosize: null, required: Boolean, iconClass: String, clickable: Boolean, inputAlign: String, customStyle: String, errorMessage: String, arrowDirection: String, showWordLimit: Boolean, errorMessageAlign: String, readonly: {
  45. type: Boolean,
  46. observer: 'setShowClear',
  47. }, clearable: {
  48. type: Boolean,
  49. observer: 'setShowClear',
  50. }, clearTrigger: {
  51. type: String,
  52. value: 'focus',
  53. }, border: {
  54. type: Boolean,
  55. value: true,
  56. }, titleWidth: {
  57. type: String,
  58. value: '6.2em',
  59. }, clearIcon: {
  60. type: String,
  61. value: 'clear',
  62. }, extraEventParams: {
  63. type: Boolean,
  64. value: false,
  65. } }),
  66. data: {
  67. focused: false,
  68. innerValue: '',
  69. showClear: false,
  70. },
  71. created() {
  72. this.value = this.data.value;
  73. this.setData({ innerValue: this.value });
  74. },
  75. methods: {
  76. formatValue(value) {
  77. const { maxlength } = this.data;
  78. if (maxlength !== -1 && value.length > maxlength) {
  79. return value.slice(0, maxlength);
  80. }
  81. return value;
  82. },
  83. onInput(event) {
  84. const { value = '' } = event.detail || {};
  85. const formatValue = this.formatValue(value);
  86. this.value = formatValue;
  87. this.setShowClear();
  88. return this.emitChange(Object.assign(Object.assign({}, event.detail), { value: formatValue }));
  89. },
  90. onFocus(event) {
  91. this.focused = true;
  92. this.setShowClear();
  93. this.$emit('focus', event.detail);
  94. },
  95. onBlur(event) {
  96. this.focused = false;
  97. this.setShowClear();
  98. this.$emit('blur', event.detail);
  99. },
  100. onClickIcon() {
  101. this.$emit('click-icon');
  102. },
  103. onClickInput(event) {
  104. this.$emit('click-input', event.detail);
  105. },
  106. onClear() {
  107. this.setData({ innerValue: '' });
  108. this.value = '';
  109. this.setShowClear();
  110. nextTick(() => {
  111. this.emitChange({ value: '' });
  112. this.$emit('clear', '');
  113. });
  114. },
  115. onConfirm(event) {
  116. const { value = '' } = event.detail || {};
  117. this.value = value;
  118. this.setShowClear();
  119. this.$emit('confirm', value);
  120. },
  121. setValue(value) {
  122. this.value = value;
  123. this.setShowClear();
  124. if (value === '') {
  125. this.setData({ innerValue: '' });
  126. }
  127. this.emitChange({ value });
  128. },
  129. onLineChange(event) {
  130. this.$emit('linechange', event.detail);
  131. },
  132. onKeyboardHeightChange(event) {
  133. this.$emit('keyboardheightchange', event.detail);
  134. },
  135. emitChange(detail) {
  136. const { extraEventParams } = this.data;
  137. this.setData({ value: detail.value });
  138. let result;
  139. const data = extraEventParams
  140. ? Object.assign(Object.assign({}, detail), { callback: (data) => {
  141. result = data;
  142. } }) : detail.value;
  143. this.$emit('input', data);
  144. this.$emit('change', data);
  145. return result;
  146. },
  147. setShowClear() {
  148. const { clearable, readonly, clearTrigger } = this.data;
  149. const { focused, value } = this;
  150. let showClear = false;
  151. if (clearable && !readonly) {
  152. const hasValue = !!value;
  153. const trigger = clearTrigger === 'always' || (clearTrigger === 'focus' && focused);
  154. showClear = hasValue && trigger;
  155. }
  156. this.setData({ showClear });
  157. },
  158. noop() { },
  159. },
  160. });
  161. export default global['__wxComponents']['vant/field/index']
  162. </script>
  163. <style platform="mp-weixin">
  164. @import '../common/index.css';.van-field{--cell-icon-size:var(--field-icon-size,16px)}.van-field__label{color:var(--field-label-color,#646566)}.van-field__label--disabled{color:var(--field-disabled-text-color,#c8c9cc)}.van-field__body{align-items:center;display:flex}.van-field__body--textarea{box-sizing:border-box;line-height:1.2em;min-height:var(--cell-line-height,24px);padding:3.6px 0}.van-field__control:empty+.van-field__control{display:block}.van-field__control{background-color:initial;border:0;box-sizing:border-box;color:var(--field-input-text-color,#323233);display:none;height:var(--cell-line-height,24px);line-height:inherit;margin:0;min-height:var(--cell-line-height,24px);padding:0;position:relative;resize:none;text-align:left;width:100%}.van-field__control:empty{display:none}.van-field__control--textarea{height:var(--field-text-area-min-height,18px);min-height:var(--field-text-area-min-height,18px)}.van-field__control--error{color:var(--field-input-error-text-color,#ee0a24)}.van-field__control--disabled{background-color:initial;color:var(--field-input-disabled-text-color,#c8c9cc);opacity:1}.van-field__control--center{text-align:center}.van-field__control--right{text-align:right}.van-field__control--custom{align-items:center;display:flex;min-height:var(--cell-line-height,24px)}.van-field__placeholder{color:var(--field-placeholder-text-color,#c8c9cc);left:0;pointer-events:none;position:absolute;right:0;top:0}.van-field__placeholder--error{color:var(--field-error-message-color,#ee0a24)}.van-field__icon-root{align-items:center;display:flex;min-height:var(--cell-line-height,24px)}.van-field__clear-root,.van-field__icon-container{line-height:inherit;margin-right:calc(var(--padding-xs, 8px)*-1);padding:0 var(--padding-xs,8px);vertical-align:middle}.van-field__button,.van-field__clear-root,.van-field__icon-container{flex-shrink:0}.van-field__clear-root{color:var(--field-clear-icon-color,#c8c9cc);font-size:var(--field-clear-icon-size,16px)}.van-field__icon-container{color:var(--field-icon-container-color,#969799);font-size:var(--field-icon-size,16px)}.van-field__icon-container:empty{display:none}.van-field__button{padding-left:var(--padding-xs,8px)}.van-field__button:empty{display:none}.van-field__error-message{color:var(--field-error-message-color,#ee0a24);display:block;font-size:var(--field-error-message-text-font-size,12px);text-align:left}.van-field__error-message--center{text-align:center}.van-field__error-message--right{text-align:right}.van-field__word-limit{color:var(--field-word-limit-color,#646566);font-size:var(--field-word-limit-font-size,12px);line-height:var(--field-word-limit-line-height,16px);margin-top:var(--padding-base,4px);text-align:right}.van-field__word-num{display:inline}.van-field__word-num--full{color:var(--field-word-num-full-color,#ee0a24)}
  165. </style>