index.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <template>
  2. <uni-shadow-root class="vant-field-index"><van-cell :size="size" :icon="leftIcon" :title="label" :center="center" :border="border" :is-link="isLink" :required="required" :clickable="clickable" :title-width="titleWidth" :custom-style="customStyle" :arrow-direction="arrowDirection" custom-class="van-field">
  3. <slot name="left-icon" slot="icon"></slot>
  4. <slot name="label" slot="title"></slot>
  5. <view :class="utils.bem('field__body', [type, system])">
  6. <textarea v-if="type === 'textarea'" :class="'input-class '+(utils.bem('field__input', [inputAlign, type, { disabled, error }]))" :fixed="fixed" :focus="focus" :value="value" :disabled="disabled || readonly" :maxlength="maxlength" :placeholder="placeholder" :placeholder-style="placeholderStyle" :placeholder-class="utils.bem('field__placeholder', { error })" :auto-height="autosize" :cursor-spacing="cursorSpacing" :adjust-position="adjustPosition" :show-confirm-bar="showConfirmBar" :hold-keyboard="holdKeyboard" :selection-end="selectionEnd" :selection-start="selectionStart" @input="onInput" @blur="onBlur" @focus="onFocus" @confirm="onConfirm">
  7. </textarea>
  8. <input v-else :class="'input-class '+(utils.bem('field__input', [inputAlign, { disabled, error }]))" :type="type" :focus="focus" :value="value" :disabled="disabled || readonly" :maxlength="maxlength" :placeholder="placeholder" :placeholder-style="placeholderStyle" :placeholder-class="utils.bem('field__placeholder', { error })" :confirm-type="confirmType" :confirm-hold="confirmHold" :hold-keyboard="holdKeyboard" :cursor-spacing="cursorSpacing" :adjust-position="adjustPosition" :selection-end="selectionEnd" :selection-start="selectionStart" :password="password || type === 'password'" @input="onInput" @blur="onBlur" @focus="onFocus" @confirm="onConfirm"></input>
  9. <van-icon v-if="clearable && focused && value && !readonly" size="16px" name="clear" class="van-field__clear-root van-field__icon-root" @touchstart.native="onClear"></van-icon>
  10. <view class="van-field__icon-container" @click="onClickIcon">
  11. <van-icon v-if="rightIcon || icon" size="16px" :name="rightIcon || icon" :class="'van-field__icon-root '+(iconClass)" custom-class="right-icon-class"></van-icon>
  12. <slot name="right-icon"></slot>
  13. <slot name="icon"></slot>
  14. </view>
  15. <view class="van-field__button">
  16. <slot name="button"></slot>
  17. </view>
  18. </view>
  19. <view v-if="errorMessage" :class="'van-field__error-message '+(utils.bem('field__error', [errorMessageAlign, { disabled, error }]))">
  20. {{ errorMessage }}
  21. </view>
  22. </van-cell></uni-shadow-root>
  23. </template>
  24. <wxs src="../wxs/utils.wxs" module="utils"></wxs>
  25. <script>
  26. import VanCell from '../cell/index.vue'
  27. import VanIcon from '../icon/index.vue'
  28. global['__wxVueOptions'] = {components:{'van-cell': VanCell,'van-icon': VanIcon}}
  29. global['__wxRoute'] = 'vant/field/index'
  30. import { VantComponent } from '../common/component';
  31. import { getSystemInfoSync } from '../common/utils';
  32. VantComponent({
  33. field: true,
  34. classes: ['input-class', 'right-icon-class'],
  35. props: {
  36. size: String,
  37. icon: String,
  38. label: String,
  39. error: Boolean,
  40. fixed: Boolean,
  41. focus: Boolean,
  42. center: Boolean,
  43. isLink: Boolean,
  44. leftIcon: String,
  45. rightIcon: String,
  46. disabled: Boolean,
  47. autosize: Boolean,
  48. readonly: Boolean,
  49. required: Boolean,
  50. password: Boolean,
  51. iconClass: String,
  52. clearable: Boolean,
  53. clickable: Boolean,
  54. inputAlign: String,
  55. placeholder: String,
  56. customStyle: String,
  57. confirmType: String,
  58. confirmHold: Boolean,
  59. holdKeyboard: Boolean,
  60. errorMessage: String,
  61. arrowDirection: String,
  62. placeholderStyle: String,
  63. errorMessageAlign: String,
  64. selectionEnd: {
  65. type: Number,
  66. value: -1
  67. },
  68. selectionStart: {
  69. type: Number,
  70. value: -1
  71. },
  72. showConfirmBar: {
  73. type: Boolean,
  74. value: true
  75. },
  76. adjustPosition: {
  77. type: Boolean,
  78. value: true
  79. },
  80. cursorSpacing: {
  81. type: Number,
  82. value: 50
  83. },
  84. maxlength: {
  85. type: Number,
  86. value: -1
  87. },
  88. type: {
  89. type: String,
  90. value: 'text'
  91. },
  92. border: {
  93. type: Boolean,
  94. value: true
  95. },
  96. titleWidth: {
  97. type: String,
  98. value: '90px'
  99. }
  100. },
  101. data: {
  102. focused: false,
  103. system: getSystemInfoSync().system.split(' ').shift().toLowerCase()
  104. },
  105. methods: {
  106. onInput(event) {
  107. const { value = '' } = event.detail || {};
  108. this.setData({ value }, () => {
  109. this.emitChange(value);
  110. });
  111. },
  112. onFocus(event) {
  113. this.setData({ focused: true });
  114. this.$emit('focus', event.detail);
  115. },
  116. onBlur(event) {
  117. this.setData({ focused: false });
  118. this.$emit('blur', event.detail);
  119. },
  120. onClickIcon() {
  121. this.$emit('click-icon');
  122. },
  123. onClear() {
  124. this.setData({ value: '' }, () => {
  125. this.emitChange('');
  126. this.$emit('clear', '');
  127. });
  128. },
  129. onConfirm() {
  130. this.$emit('confirm', this.data.value);
  131. },
  132. emitChange(value) {
  133. this.$emit('input', value);
  134. this.$emit('change', value);
  135. }
  136. }
  137. });
  138. export default global['__wxComponents']['vant/field/index']
  139. </script>
  140. <style platform="mp-weixin">
  141. @import '../common/index.css';.van-field__body{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.van-field__body--textarea{line-height:1.2em;min-height:24px;min-height:var(--cell-line-height,24px)}.van-field__body--textarea.van-field__body--ios{margin-top:-4.5px}.van-field__input{position:relative;display:block;box-sizing:border-box;width:100%;margin:0;padding:0;line-height:inherit;text-align:left;background-color:initial;border:0;resize:none;color:#323233;color:var(--field-input-text-color,#323233);height:24px;height:var(--cell-line-height,24px);min-height:24px;min-height:var(--cell-line-height,24px)}.van-field__input--textarea{height:18px;height:var(--field-text-area-min-height,18px);min-height:18px;min-height:var(--field-text-area-min-height,18px)}.van-field__input--error{color:#ee0a24;color:var(--field-input-error-text-color,#ee0a24)}.van-field__input--disabled{background-color:initial;opacity:1;color:#969799;color:var(--field-input-disabled-text-color,#969799)}.van-field__input--center{text-align:center}.van-field__input--right{text-align:right}.van-field__placeholder{position:absolute;top:0;right:0;left:0;pointer-events:none;color:#969799;color:var(--field-placeholder-text-color,#969799)}.van-field__placeholder--error{color:#ee0a24;color:var(--field-error-message-color,#ee0a24)}.van-field__icon-root{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;min-height:24px;min-height:var(--cell-line-height,24px)}.van-field__clear-root,.van-field__icon-container{line-height:inherit;vertical-align:middle;padding:0 8px;padding:0 var(--padding-xs,8px);margin-right:-8px;margin-right:-var(--padding-xs,8px)}.van-field__button,.van-field__clear-root,.van-field__icon-container{-webkit-flex-shrink:0;flex-shrink:0}.van-field__clear-root{color:#c8c9cc;color:var(--field-clear-icon-color,#c8c9cc)}.van-field__icon-container{color:#969799;color:var(--field-icon-container-color,#969799)}.van-field__icon-container:empty{display:none}.van-field__button{padding-left:8px;padding-left:var(--padding-xs,8px)}.van-field__button:empty{display:none}.van-field__error-message{text-align:left;font-size:12px;font-size:var(--field-error-message-text-font-size,12px);color:#ee0a24;color:var(--field-error-message-color,#ee0a24)}.van-field__error-message--center{text-align:center}.van-field__error-message--right{text-align:right}
  142. </style>