uni-search-bar.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <template>
  2. <view class="uni-searchbar">
  3. <view :style="{borderRadius:radius+'px',backgroundColor: bgColor}" class="uni-searchbar__box" @click="searchClick">
  4. <!-- #ifdef MP-ALIPAY -->
  5. <view class="uni-searchbar__box-icon-search">
  6. <uni-icons color="#999999" size="18" type="search" />
  7. </view>
  8. <!-- #endif -->
  9. <!-- #ifndef MP-ALIPAY -->
  10. <uni-icons color="#999999" class="uni-searchbar__box-icon-search" size="18" type="search" />
  11. <!-- #endif -->
  12. <input v-if="show" :focus="showSync" :placeholder="placeholder" :maxlength="maxlength" @confirm="confirm" class="uni-searchbar__box-search-input"
  13. confirm-type="search" type="text" v-model="searchVal" />
  14. <text v-else class="uni-searchbar__text-placeholder">{{ placeholder }}</text>
  15. <view v-if="show && (clearButton==='always'||clearButton==='auto'&&searchVal!=='')" class="uni-searchbar__box-icon-clear" @click="clear">
  16. <uni-icons color="#999999" class="" size="24" type="clear" />
  17. </view>
  18. </view>
  19. <text @click="cancel" class="uni-searchbar__cancel" v-if="cancelButton ==='always' || show && cancelButton ==='auto'">{{cancelText}}</text>
  20. </view>
  21. </template>
  22. <script>
  23. import uniIcons from "../uni-icons/uni-icons.vue";
  24. export default {
  25. name: "UniSearchBar",
  26. components: {
  27. uniIcons
  28. },
  29. props: {
  30. placeholder: {
  31. type: String,
  32. default: "请输入搜索内容"
  33. },
  34. radius: {
  35. type: [Number, String],
  36. default: 5
  37. },
  38. clearButton: {
  39. type: String,
  40. default: "auto"
  41. },
  42. cancelButton: {
  43. type: String,
  44. default: "auto"
  45. },
  46. cancelText: {
  47. type: String,
  48. default: '取消'
  49. },
  50. bgColor: {
  51. type: String,
  52. default: "#F8F8F8"
  53. },
  54. maxlength: {
  55. type: [Number, String],
  56. default: 100
  57. }
  58. },
  59. data() {
  60. return {
  61. show: false,
  62. showSync: false,
  63. searchVal: ""
  64. }
  65. },
  66. watch: {
  67. searchVal() {
  68. this.$emit("input", {
  69. value: this.searchVal
  70. })
  71. }
  72. },
  73. methods: {
  74. searchClick() {
  75. if (this.show) {
  76. return
  77. }
  78. this.searchVal = ""
  79. this.show = true;
  80. this.$nextTick(() => {
  81. this.showSync = true;
  82. })
  83. },
  84. clear() {
  85. this.searchVal = ""
  86. },
  87. cancel() {
  88. this.$emit("cancel", {
  89. value: this.searchVal
  90. });
  91. this.searchVal = ""
  92. this.show = false
  93. this.showSync = false
  94. // #ifndef APP-PLUS
  95. uni.hideKeyboard()
  96. // #endif
  97. // #ifdef APP-PLUS
  98. plus.key.hideSoftKeybord()
  99. // #endif
  100. },
  101. confirm() {
  102. // #ifndef APP-PLUS
  103. uni.hideKeyboard();
  104. // #endif
  105. // #ifdef APP-PLUS
  106. plus.key.hideSoftKeybord()
  107. // #endif
  108. this.$emit("confirm", {
  109. value: this.searchVal
  110. })
  111. }
  112. }
  113. };
  114. </script>
  115. <style lang="scss" scoped>
  116. $uni-searchbar-height: 36px;
  117. .uni-searchbar {
  118. /* #ifndef APP-NVUE */
  119. display: flex;
  120. /* #endif */
  121. flex-direction: row;
  122. position: relative;
  123. padding: $uni-spacing-col-base;
  124. background-color: $uni-bg-color;
  125. }
  126. .uni-searchbar__box {
  127. /* #ifndef APP-NVUE */
  128. display: flex;
  129. box-sizing: border-box;
  130. /* #endif */
  131. overflow: hidden;
  132. position: relative;
  133. flex: 1;
  134. justify-content: center;
  135. flex-direction: row;
  136. align-items: center;
  137. height: $uni-searchbar-height;
  138. padding: 5px 8px 5px 0px;
  139. border-width: 0.5px;
  140. border-style: solid;
  141. border-color: $uni-border-color;
  142. }
  143. .uni-searchbar__box-icon-search {
  144. /* #ifndef APP-NVUE */
  145. display: flex;
  146. /* #endif */
  147. flex-direction: row;
  148. width: 32px;
  149. justify-content: center;
  150. align-items: center;
  151. color: $uni-text-color-placeholder;
  152. }
  153. .uni-searchbar__box-search-input {
  154. flex: 1;
  155. font-size: $uni-font-size-base;
  156. color: $uni-text-color;
  157. }
  158. .uni-searchbar__box-icon-clear {
  159. align-items: center;
  160. line-height: 24px;
  161. padding-left: 5px;
  162. }
  163. .uni-searchbar__text-placeholder {
  164. font-size: $uni-font-size-base;
  165. color: $uni-text-color-placeholder;
  166. margin-left: 5px;
  167. }
  168. .uni-searchbar__cancel {
  169. padding-left: 10px;
  170. line-height: $uni-searchbar-height;
  171. font-size: 14px;
  172. color: $uni-text-color;
  173. }
  174. </style>