collect.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <template>
  2. <view class="container">
  3. <view class="header-box">
  4. <view class="search-box">
  5. <u-search
  6. v-model="searchForm.keyword"
  7. :clearabled="true"
  8. bg-color="#E5E5E5"
  9. :input-style="searchInputStyle"
  10. placeholder="搜索您想要的内容"
  11. ></u-search>
  12. </view>
  13. <view class="tab-box">
  14. <u-tabs
  15. name="label"
  16. :list="searchType"
  17. :is-scroll="false"
  18. v-model="searchForm.type"
  19. @change="onSearchTypeChange"
  20. font-size="24"
  21. :bold="false"
  22. inactive-color="#000000"
  23. active-color="#000000"
  24. :bar-style="{'background-color': '#2979ff'}"
  25. height="50"
  26. ></u-tabs>
  27. </view>
  28. </view>
  29. <view class="list-box">
  30. <view class="list-item-box" v-for="item in list" :key="item.id" @click="onClickReport(item)">
  31. <view class="icon-box">
  32. <view class="icon" v-if="item.isNew"></view>
  33. </view>
  34. <view class="info-box">
  35. <view class="title">
  36. {{item.title}}
  37. </view>
  38. <view class="text">
  39. 【{{item.type}}】
  40. </view>
  41. </view>
  42. <view class="suffix-box">
  43. <view class="button">
  44. 查看
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. </template>
  51. <script setup>
  52. import { ref } from 'vue'
  53. import { onLoad } from '@dcloudio/uni-app'
  54. const searchInputStyle = {
  55. backgroundColor: '#E5E5E5'
  56. }
  57. const searchType = [
  58. {
  59. label: '全部',
  60. value: 0
  61. },
  62. {
  63. label: '研究报告',
  64. value: 1
  65. },
  66. {
  67. label: '继续教育',
  68. value: 2
  69. },
  70. ]
  71. const searchForm = ref({
  72. keyword: '',
  73. type: 0
  74. })
  75. const list = ref([
  76. {
  77. id: '01',
  78. title: '2024年11月关注是中介促成二手住宅市场交易简报',
  79. type: '月度成交简报',
  80. isNew: true
  81. },
  82. {
  83. id: '02',
  84. title: '客户需求理解与匹配',
  85. type: '精英修炼营',
  86. isNew: true
  87. },
  88. {
  89. id: '03',
  90. title: '2024年11月关注是中介促成二手住宅市场交易简报',
  91. type: '月度成交简报',
  92. isNew: false
  93. },
  94. {
  95. id: '04',
  96. title: '客户需求理解与匹配',
  97. type: '精英修炼营',
  98. isNew: false
  99. },
  100. {
  101. id: '05',
  102. title: '2024年11月关注是中介促成二手住宅市场交易简报',
  103. type: '月度成交简报',
  104. isNew: false
  105. },
  106. {
  107. id: '06',
  108. title: '客户需求理解与匹配',
  109. type: '精英修炼营',
  110. isNew: false
  111. },
  112. ])
  113. function onSearchTypeChange(val) {}
  114. function onClickReport(report) {
  115. uni.navigateTo({
  116. url: `/pages/reportDetail/reportDetail?id=${report.id}&title=${report.title}`
  117. })
  118. }
  119. onLoad(() => {
  120. console.log('onLoad')
  121. })
  122. </script>
  123. <style lang="scss" scoped>
  124. .container {
  125. height: 100vh;
  126. width: 100vw;
  127. background-color: $uni-text-color-inverse;
  128. padding: 0 20rpx;
  129. .header-box {
  130. background-color: $uni-text-color-inverse;
  131. @include topMagnet();
  132. }
  133. .search-box {
  134. margin-bottom: 20rpx;
  135. ::v-deep(.u-search) {
  136. background-color: #e5e5e5;
  137. border-radius: 50rpx;
  138. .u-action {
  139. width: 18%;
  140. background-color: $uni-color-primary;
  141. border-radius: 50rpx;
  142. color: $uni-text-color-inverse;
  143. margin-right: 8rpx;
  144. font-size: 28rpx;
  145. line-height: 50rpx;
  146. letter-spacing: 3rpx;
  147. text-align: center;
  148. }
  149. }
  150. }
  151. .list-box {
  152. .list-item-box {
  153. padding: 20rpx 10rpx;
  154. border-bottom: 5rpx solid #E6E6E6;
  155. display: flex;
  156. &:active {
  157. background-color: $uni-bg-color-hover;
  158. }
  159. .icon-box {
  160. width: 3%;
  161. padding-top: 10rpx;
  162. .icon {
  163. width: 10rpx;
  164. height: 10rpx;
  165. background-color: $uni-color-primary;
  166. border-radius: 50%;
  167. }
  168. }
  169. .info-box {
  170. width: 82%;
  171. .title {
  172. font-size: $uni-title-font-size-2;
  173. font-weight: bold;
  174. margin-bottom: 5rpx;
  175. @include text-overflow()
  176. }
  177. .text {
  178. line-height: 40rpx;
  179. font-size: $uni-font-size-2;
  180. font-weight: bold;
  181. }
  182. }
  183. .suffix-box {
  184. width: 15%;
  185. display: flex;
  186. align-items: center;
  187. justify-content: center;
  188. .button {
  189. color: $uni-text-color-inverse;
  190. padding: 5rpx 18rpx;
  191. border-radius: $uni-card-border-radius;
  192. background-color: $uni-color-primary;
  193. font-size: $uni-font-size-3;
  194. letter-spacing: 3rpx;
  195. }
  196. }
  197. }
  198. }
  199. }
  200. </style>