index.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <template>
  2. <view :class="utils.bem('search', { withaction: showAction || useActionSlot }) + ' custom-class'" :style="'background: ' + background">
  3. <view :class="utils.bem('search__content', [shape])">
  4. <view class="van-search__label" v-if="label">{{ label }}</view>
  5. <slot v-else name="label" />
  6. <van-field
  7. type="search"
  8. :left-icon="!useLeftIconSlot ? leftIcon : ''"
  9. :right-icon="!useRightIconSlot ? rightIcon : ''"
  10. :focus="focus"
  11. :error="error"
  12. :border="false"
  13. confirm-type="search"
  14. class="van-search__field field-class"
  15. :value="value"
  16. :disabled="disabled"
  17. :readonly="readonly"
  18. :clearable="clearable"
  19. :maxlength="maxlength"
  20. :input-align="inputAlign"
  21. input-class="input-class"
  22. :placeholder="placeholder"
  23. :placeholder-style="placeholderStyle"
  24. custom-style="padding: 5px 10px 5px 0; background-color: transparent;"
  25. @blur="onBlur"
  26. @focus="onFocus"
  27. @change="onChange"
  28. @confirm="onSearch"
  29. @clear="onClear"
  30. >
  31. <slot v-if="useLeftIconSlot" name="left-icon" slot="left-icon" />
  32. <slot v-if="useRightIconSlot" name="right-icon" slot="right-icon" />
  33. </van-field>
  34. </view>
  35. <view v-if="showAction || useActionSlot" class="van-search__action" hover-class="van-search__action--hover" hover-stay-time="70">
  36. <slot v-if="useActionSlot" name="action" />
  37. <view v-else @tap="onCancel" class="cancel-class">{{ actionText }}</view>
  38. </view>
  39. </view>
  40. </template>
  41. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  42. <script>
  43. 'use strict';
  44. Object.defineProperty(exports, '__esModule', {
  45. value: true
  46. });
  47. var component_1 = require('../common/component');
  48. var version_1 = require('../common/version');
  49. component_1.VantComponent({
  50. field: true,
  51. classes: ['field-class', 'input-class', 'cancel-class'],
  52. props: {
  53. label: String,
  54. focus: Boolean,
  55. error: Boolean,
  56. disabled: Boolean,
  57. readonly: Boolean,
  58. inputAlign: String,
  59. showAction: Boolean,
  60. useActionSlot: Boolean,
  61. useLeftIconSlot: Boolean,
  62. useRightIconSlot: Boolean,
  63. leftIcon: {
  64. type: String,
  65. value: 'search'
  66. },
  67. rightIcon: String,
  68. placeholder: String,
  69. placeholderStyle: String,
  70. actionText: {
  71. type: String,
  72. value: '取消'
  73. },
  74. background: {
  75. type: String,
  76. value: '#ffffff'
  77. },
  78. maxlength: {
  79. type: Number,
  80. value: -1
  81. },
  82. shape: {
  83. type: String,
  84. value: 'square'
  85. },
  86. clearable: {
  87. type: Boolean,
  88. value: true
  89. }
  90. },
  91. methods: {
  92. onChange: function (event) {
  93. if (version_1.canIUseModel()) {
  94. this.setData({
  95. value: event.detail
  96. });
  97. }
  98. this.$emit('change', event.detail);
  99. },
  100. onCancel: function () {
  101. var that = this;
  102. /**
  103. * 修复修改输入框值时,输入框失焦和赋值同时触发,赋值失效
  104. * https://github.com/youzan/@vant/weapp/issues/1768
  105. */
  106. setTimeout(function () {
  107. if (version_1.canIUseModel()) {
  108. that.setData({
  109. value: ''
  110. });
  111. }
  112. that.$emit('cancel');
  113. that.$emit('change', '');
  114. }, 200);
  115. },
  116. onSearch: function (event) {
  117. this.$emit('search', event.detail);
  118. },
  119. onFocus: function (event) {
  120. this.$emit('focus', event.detail);
  121. },
  122. onBlur: function (event) {
  123. this.$emit('blur', event.detail);
  124. },
  125. onClear: function (event) {
  126. this.$emit('clear', event.detail);
  127. }
  128. }
  129. });
  130. </script>
  131. <style>
  132. @import './index.css';
  133. </style>