search.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <view class="report-search-page">
  3. <van-sticky style="background: #fff">
  4. <view style="padding:30rpx 34rpx">
  5. <searchBox
  6. :focus="focus"
  7. placeholder="请输入报告标题或关键字"
  8. @change="onChange"
  9. @search="onSearch"
  10. ></searchBox>
  11. </view>
  12. </van-sticky>
  13. <view class="empty-box" v-if="finished&&list.length==0">
  14. <image :src="globalImgUrls.chartEmpty" mode="widthFix" />
  15. <view>找不到对应报告,试试别的搜索词吧</view>
  16. </view>
  17. <view class="list-wrap" v-else>
  18. <view class="item" v-for="item in list" :key="item" @click="goReportDetail(item)">
  19. <view class="van-ellipsis title" v-html="item.title"></view>
  20. <view class="van-multi-ellipsis--l3 desc" v-html="item.content_sub"></view>
  21. <view class="flex bot">
  22. <view class="tags">
  23. <text v-if="item.classify_name_first">#{{item.classify_name_first}}</text>
  24. <text v-if="item.classify_name_second">#{{item.classify_name_second}}</text>
  25. </view>
  26. <view class="time">{{item.publish_time|formatReportTime}}</view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. import searchBox from './components/searchBox.vue'
  34. import {apiReportSearch} from '@/api/report'
  35. export default {
  36. components: {
  37. searchBox
  38. },
  39. data () {
  40. return {
  41. searchVal:'',
  42. focus:true,
  43. list:[],
  44. finished:false
  45. }
  46. },
  47. methods: {
  48. onChange(e){
  49. this.searchVal=e
  50. },
  51. async onSearch(){
  52. this.finished=false
  53. if(!this.searchVal){
  54. this.list=[]
  55. this.finished=true
  56. return
  57. }
  58. const res=await apiReportSearch({key_word:this.searchVal})
  59. if(res.code===200){
  60. this.list=res.data.list||[]
  61. this.finished=true
  62. }
  63. },
  64. goReportDetail(item){
  65. uni.navigateTo({ url: '/pages-report/reportDetail?reportId='+item.report_id })
  66. }
  67. }
  68. }
  69. </script>
  70. <style>
  71. .van-sticky-wrap--fixed{
  72. background-color: #fff;
  73. }
  74. </style>
  75. <style lang="scss" scoped>
  76. .empty-box{
  77. text-align: center;
  78. font-size: 32rpx;
  79. color: #999;
  80. padding-top: 150rpx;
  81. image{
  82. width: 346rpx;
  83. margin-bottom: 57rpx;
  84. }
  85. }
  86. .list-wrap{
  87. padding: 34rpx;
  88. .item{
  89. padding: 30rpx;
  90. background: #FFFFFF;
  91. box-shadow: 3rpx 3rpx 12rpx 1rpx rgba(184, 184, 184, 0.16);
  92. border-radius: 16rpx;
  93. border: 1px solid #E5E5E5;
  94. margin-bottom: 20rpx;
  95. .title{
  96. font-size: 32rpx;
  97. font-weight: bold;
  98. }
  99. .desc{
  100. color: #666666;
  101. line-height: 1.5;
  102. margin: 10rpx 0 20rpx 0;
  103. }
  104. .bot{
  105. justify-content: space-between;
  106. .time{
  107. flex-shrink: 0;
  108. color: #999999;
  109. font-size: 24rpx;
  110. }
  111. .tags{
  112. font-size: 28rpx;
  113. color: #E3B377;
  114. text{
  115. display: inline-block;
  116. margin-right: 30rpx;
  117. }
  118. }
  119. }
  120. }
  121. }
  122. </style>