search.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <template>
  2. <view class="content">
  3. <!-- 导航 -->
  4. <view class="nav">
  5. <view class="leftView" @click="back">
  6. <image src="../../static/mobile/backBtn.png" mode=""
  7. style="width: 22rpx; height: 40rpx; padding-left: 24rpx;"></image>
  8. </view>
  9. <view class="navTitle">搜索</view>
  10. <view class="rightView">
  11. </view>
  12. </view>
  13. <!-- content -->
  14. <view class="commend">
  15. <!-- 搜索 -->
  16. <view class="searchBoxBg">
  17. <searchBox placeholder="请输入搜索内容" @search='search($event)'></searchBox>
  18. </view>
  19. <view class="top">为你找到“{{searchValue}}”相关结果共{{TotalSize}}条</view>
  20. </view>
  21. <!-- item -->
  22. <view class="itemBg">
  23. <view v-for="(item,index) in itemArr" :key="index" class="twoItem" @click="goDetail(item)">
  24. <image :src="item.LogoImg" mode="" class="img2"></image>
  25. <view class="rightItem">
  26. <view class="title">{{item.Title}}</view>
  27. <view class="title2">{{item.Comment}}</view>
  28. </view>
  29. </view>
  30. </view>
  31. <!-- 上拉 加载更多 -->
  32. <view class="noMore" v-if="noMoreShow">没有更多数据</view>
  33. <!-- 无数据空白页 -->
  34. <nodata v-if="itemArr.length==0"></nodata>
  35. </view>
  36. </template>
  37. <script>
  38. import searchBox from '@/components/searchBox/searchBox.vue'
  39. import nodata from '../../components/nodata/nodata.vue'
  40. export default {
  41. components: {
  42. searchBox,
  43. nodata
  44. },
  45. data() {
  46. return {
  47. searchValue: '',
  48. page:1,
  49. itemArr: [],
  50. TotalSize:'',
  51. noMoreShow:false,
  52. }
  53. },
  54. onLoad() {
  55. },
  56. methods: {
  57. goDetail(item){
  58. uni.navigateTo({
  59. url:'detail?id=' + item.ID
  60. })
  61. },
  62. back() {
  63. uni.navigateBack({
  64. })
  65. },
  66. search(val) {
  67. // console.log(val);
  68. this.searchValue = val
  69. this.page = 1
  70. this.getItemData()
  71. },
  72. getItemData() {
  73. uni.showLoading({
  74. title: '加载中'
  75. })
  76. let url = 'trainingOpenApi/searchPageData',
  77. params = {
  78. page: this.page,
  79. limit: 10,
  80. title: this.searchValue,
  81. }
  82. this.$http(url, params, 'GET').then(res => {
  83. uni.hideLoading();
  84. var data = res.data
  85. // 处理 undefined和null转为空白字符串
  86. for (const key in data) {
  87. data[key] = this.$praseStrEmpty(data[key])
  88. }
  89. this.TotalSize = data.TotalSize
  90. if (this.page == 1) {
  91. this.itemArr = data.Items
  92. } else {
  93. this.itemArr = this.itemArr.concat(data.Items)
  94. }
  95. if (data.Items.length < 10) {
  96. this.noMoreShow = true
  97. } else {
  98. this.noMoreShow = false
  99. }
  100. if (this.itemArr.length == 0) {
  101. this.noMoreShow = false
  102. }
  103. })
  104. },
  105. }
  106. }
  107. </script>
  108. <style scoped>
  109. .content {
  110. min-height: 100vh;
  111. background-color: #f4f5f7;
  112. padding-top: 88rpx;
  113. padding-bottom: 20rpx;
  114. }
  115. .nav {
  116. position: fixed;
  117. left: 0;
  118. top: 0;
  119. width: 100vw;
  120. height: 88rpx;
  121. background-color: #FFFFFF;
  122. display: flex;
  123. justify-content: space-between;
  124. align-items: center;
  125. z-index: 999;
  126. border-bottom: #eeeeee 2rpx solid;
  127. }
  128. .navTitle {
  129. font-size: 36rpx;
  130. font-weight: bold;
  131. color: #3c3c3c;
  132. }
  133. .leftView {
  134. width: 30%;
  135. }
  136. .rightView {
  137. width: 30%;
  138. display: flex;
  139. justify-content: flex-end;
  140. padding-right: 24rpx;
  141. }
  142. .rightImg {
  143. width: 40rpx;
  144. height: 40rpx;
  145. }
  146. .commend {
  147. position: fixed;
  148. left: 0;
  149. top: 90rpx;
  150. width: calc(100vw - 50rpx);
  151. background-color: #FFFFFF;
  152. padding: 0 25rpx 30rpx;
  153. z-index: 999;
  154. height: 180rpx;
  155. }
  156. .top {
  157. padding: 20rpx 0;
  158. text-align: left;
  159. font-size: 24rpx;
  160. color: #999999;
  161. }
  162. .itemBg {
  163. background-color: #FFFFFF;
  164. padding: 180rpx 25rpx 30rpx;
  165. }
  166. .twoItem {
  167. display: flex;
  168. background-color: #FFFFFF;
  169. padding: 30rpx 0;
  170. border-top: #eeeeee 2rpx solid;
  171. }
  172. .title {
  173. font-size: 28rpx;
  174. font-weight: bold;
  175. color: #3c3c3c;
  176. }
  177. .title2 {
  178. font-size: 24rpx;
  179. font-weight: bold;
  180. color: #999999;
  181. /* 隐藏文字显示 ...不换行 */
  182. overflow: hidden;
  183. text-overflow: ellipsis;
  184. white-space: nowrap;
  185. margin: 14rpx 0;
  186. }
  187. .img2 {
  188. width: 240rpx;
  189. height: 160rpx;
  190. border-radius: 10rpx;
  191. }
  192. .rightItem {
  193. margin-left: 30rpx;
  194. }
  195. .noMore {
  196. text-align: center;
  197. line-height: 50rpx;
  198. color: #999999;
  199. font-size: 28rpx;
  200. }
  201. </style>