search.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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">为你找到“这是输入的搜索内容”相关结果共0条</view>
  20. </view>
  21. <!-- item -->
  22. <view class="itemBg">
  23. <view v-for="(item,index) in bannerArr" :key="index" class="twoItem">
  24. <image src="../../static/logo.png" mode="" class="img2"></image>
  25. <view class="rightItem">
  26. <view class="title">文字标题</view>
  27. <view class="title2">摘要</view>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import searchBox from '@/components/searchBox/searchBox.vue'
  35. export default {
  36. components: {
  37. searchBox
  38. },
  39. data() {
  40. return {
  41. searchValue: '',
  42. bannerArr: [1, 2, 3, 4, 5, 6],
  43. }
  44. },
  45. onLoad() {
  46. },
  47. methods: {
  48. back() {
  49. uni.navigateBack({
  50. })
  51. },
  52. search(val) {
  53. // console.log(val);
  54. this.searchValue = val
  55. // this.page = 1
  56. // this.getData()
  57. },
  58. }
  59. }
  60. </script>
  61. <style scoped>
  62. .content {
  63. min-height: 100vh;
  64. background-color: #f4f5f7;
  65. padding-top: 88rpx;
  66. padding-bottom: 20rpx;
  67. }
  68. .nav {
  69. position: fixed;
  70. left: 0;
  71. top: 0;
  72. width: 100vw;
  73. height: 88rpx;
  74. background-color: #FFFFFF;
  75. display: flex;
  76. justify-content: space-between;
  77. align-items: center;
  78. z-index: 999;
  79. border-bottom: #eeeeee 2rpx solid;
  80. }
  81. .navTitle {
  82. font-size: 36rpx;
  83. font-weight: bold;
  84. color: #3c3c3c;
  85. }
  86. .leftView {
  87. width: 30%;
  88. }
  89. .rightView {
  90. width: 30%;
  91. display: flex;
  92. justify-content: flex-end;
  93. padding-right: 24rpx;
  94. }
  95. .rightImg {
  96. width: 40rpx;
  97. height: 40rpx;
  98. }
  99. .commend {
  100. position: fixed;
  101. left: 0;
  102. top: 90rpx;
  103. width: calc(100vw - 50rpx);
  104. background-color: #FFFFFF;
  105. padding: 0 25rpx 30rpx;
  106. z-index: 999;
  107. height: 180rpx;
  108. }
  109. .top {
  110. padding: 20rpx 0;
  111. text-align: left;
  112. font-size: 24rpx;
  113. color: #999999;
  114. }
  115. .itemBg{
  116. background-color: #FFFFFF;
  117. padding: 180rpx 25rpx 30rpx;
  118. }
  119. .twoItem {
  120. display: flex;
  121. background-color: #FFFFFF;
  122. padding: 30rpx 0;
  123. border-top: #eeeeee 2rpx solid;
  124. }
  125. .title {
  126. font-size: 28rpx;
  127. font-weight: bold;
  128. color: #3c3c3c;
  129. }
  130. .title2 {
  131. font-size: 24rpx;
  132. font-weight: bold;
  133. color: #999999;
  134. /* 隐藏文字显示 ...不换行 */
  135. overflow: hidden;
  136. text-overflow: ellipsis;
  137. white-space: nowrap;
  138. margin: 14rpx 0;
  139. }
  140. .img2 {
  141. width: 240rpx;
  142. height: 160rpx;
  143. }
  144. .rightItem {
  145. margin-left: 30rpx;
  146. }
  147. </style>