search.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <template>
  2. <view class="back">
  3. <!-- 搜索 -->
  4. <view class="u-flex u-row-between">
  5. <view class="" style="width: 622rpx;">
  6. <u-search @focus='focus' :placeholder="i18n.Please" v-model="keyword"
  7. :showAction='false'></u-search>
  8. </view>
  9. <text @click="clear" v-if="keyword==''">{{i18n.Cancel}}</text>
  10. <text @click="enter" v-else>{{i18n.enter}}</text>
  11. </view>
  12. <view v-if="blurshow==false && keyword==''" class="title" style="margin-top: 32rpx;">
  13. {{i18n.Popularshipment}}
  14. </view>
  15. <view v-if="blurshow==false && keyword==''" class="u-flex " style="column-gap: 20rpx;flex-wrap: wrap;">
  16. <view class="tabs" v-for="(item,idx) in record" :key="idx" @click="select(item)">
  17. {{item}}
  18. </view>
  19. </view>
  20. <scroll-view v-if="blurshow" :scroll-y='true'>
  21. <view @click="changeitem(item)" class="searchitem" v-for="(item,index) in goods">
  22. <text v-if="language =='zh-CN'">{{item.name_cn}}</text>
  23. <text v-if="language =='en-US'">{{item.name_en}}</text>
  24. <text v-if="language =='es-ES'">{{item.name_es}}</text>
  25. <text v-if="language =='it-IT'">{{item.name_ita}}</text>
  26. </view>
  27. </scroll-view>
  28. </view>
  29. </template>
  30. <script>
  31. import { vShow } from 'vue';
  32. export default {
  33. data() {
  34. return {
  35. keyword: '',
  36. blurshow: false, //是否显示热门寄件
  37. language: 'zh-CN',
  38. goods: [], //物品信息
  39. record: [], //历史记录
  40. };
  41. },
  42. computed: {
  43. i18n() {
  44. return this.$t('index')
  45. }
  46. },
  47. onLoad() {
  48. this.getgoods()
  49. },
  50. onShow() {
  51. this.record = uni.getStorageSync('record')? uni.getStorageSync('record').reverse() : []
  52. if (uni.getStorageSync('language') != '') {
  53. this.language = uni.getStorageSync('language')
  54. }
  55. },
  56. methods: {
  57. //选中标签
  58. changeitem(item) {
  59. // console.log(item);
  60. const eventchannel = this.getOpenerEventChannel();
  61. eventchannel.emit('searchinfo', item)
  62. uni.navigateBack()
  63. },
  64. //获取物品信息列表
  65. getgoods() {
  66. uni.$u.http.get('/api/express-goods-info', {
  67. params: {
  68. // is_hot: 0,
  69. name: this.keyword
  70. }
  71. }).then((res) => {
  72. this.goods = res
  73. }).catch(() => {
  74. })
  75. },
  76. //取消
  77. clear() {
  78. uni.navigateBack()
  79. },
  80. enter() {
  81. console.log(this.record);
  82. if(this.record.indexOf(this.keyword)==-1){
  83. this.record.push(this.keyword)
  84. uni.setStorageSync('record',this.record)
  85. }
  86. this.getgoods()
  87. },
  88. search() {
  89. },
  90. // // 失去焦点
  91. // blur() {
  92. // this.blurshow = false
  93. // },
  94. //获取焦点
  95. focus() {
  96. this.blurshow = true
  97. },
  98. //选中
  99. select(name) {
  100. this.keyword = name
  101. this.blurshow = true
  102. this.getgoods()
  103. }
  104. }
  105. }
  106. </script>
  107. <style lang="scss" scoped>
  108. .searchitem {
  109. height: 98rpx;
  110. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  111. line-height: 98rpx;
  112. }
  113. .title {
  114. font-family: PingFangSC, PingFang SC;
  115. font-weight: 500;
  116. font-size: 28rpx;
  117. color: #222222;
  118. line-height: 40rpx;
  119. text-align: left;
  120. font-style: normal;
  121. }
  122. .tabs {
  123. height: 58rpx;
  124. background: #F5F5F5;
  125. border-radius: 36rpx;
  126. font-family: PingFangSC, PingFang SC;
  127. font-weight: 400;
  128. font-size: 24rpx;
  129. color: #333333;
  130. // line-height: 58rpx;
  131. text-align: center;
  132. font-style: normal;
  133. display: inline;
  134. padding: 12rpx 24rpx;
  135. box-sizing: border-box;
  136. margin-top: 24rpx;
  137. }
  138. .back {
  139. padding: 28rpx 20rpx !important;
  140. background-color: #fff;
  141. min-height: calc(100vh - 44rpx);
  142. }
  143. </style>