collect.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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">
  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: true
  93. },
  94. {
  95. id: '04',
  96. title: '客户需求理解与匹配',
  97. type: '精英修炼营',
  98. isNew: true
  99. },
  100. {
  101. id: '05',
  102. title: '2024年11月关注是中介促成二手住宅市场交易简报',
  103. type: '月度成交简报',
  104. isNew: true
  105. },
  106. {
  107. id: '06',
  108. title: '客户需求理解与匹配',
  109. type: '精英修炼营',
  110. isNew: true
  111. },
  112. ])
  113. function onSearchTypeChange(val) {}
  114. onLoad(() => {
  115. console.log('onLoad')
  116. })
  117. </script>
  118. <style lang="scss" scoped>
  119. .container {
  120. height: 100vh;
  121. width: 100vw;
  122. background-color: $uni-text-color-inverse;
  123. padding: 0 20rpx;
  124. .header-box {
  125. background-color: $uni-text-color-inverse;
  126. @include topMagnet();
  127. }
  128. .search-box {
  129. margin-bottom: 20rpx;
  130. ::v-deep(.u-search) {
  131. background-color: #e5e5e5;
  132. border-radius: 50rpx;
  133. .u-action {
  134. width: 18%;
  135. background-color: $uni-color-primary;
  136. border-radius: 50rpx;
  137. color: $uni-text-color-inverse;
  138. margin-right: 8rpx;
  139. font-size: 28rpx;
  140. line-height: 50rpx;
  141. letter-spacing: 3rpx;
  142. text-align: center;
  143. }
  144. }
  145. }
  146. .list-box {
  147. .list-item-box {
  148. padding: 10rpx;
  149. border-bottom: 5rpx solid #E6E6E6;
  150. display: flex;
  151. .icon-box {
  152. width: 3%;
  153. padding-top: 10rpx;
  154. .icon {
  155. width: 10rpx;
  156. height: 10rpx;
  157. background-color: $uni-color-primary;
  158. border-radius: 50%;
  159. }
  160. }
  161. .info-box {
  162. width: 82%;
  163. .title {
  164. font-size: $uni-title-font-size-3;
  165. font-weight: bold;
  166. margin-bottom: 5rpx;
  167. @include text-overflow()
  168. }
  169. .text {
  170. line-height: 40rpx;
  171. font-size: $uni-font-size-2;
  172. font-weight: bold;
  173. }
  174. }
  175. .suffix-box {
  176. width: 15%;
  177. display: flex;
  178. align-items: center;
  179. justify-content: center;
  180. .button {
  181. color: $uni-text-color-inverse;
  182. padding: 3rpx 18rpx;
  183. border-radius: $uni-card-border-radius;
  184. background-color: $uni-color-primary;
  185. font-size: $uni-font-size-4;
  186. }
  187. }
  188. }
  189. }
  190. }
  191. </style>