reportList.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  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="true"
  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. :gutter="25"
  26. height="45"
  27. ></u-tabs>
  28. </view>
  29. </view>
  30. <view class="list-box">
  31. <view class="list-item-box" v-for="item in list" :key="item.id" @click="onClickReport(item)">
  32. <view class="image-box">
  33. <image :src="item.image" mode="aspectFill"></image>
  34. </view>
  35. <view class="info-box">
  36. <view class="title">
  37. {{item.title}}
  38. </view>
  39. <view class="type">
  40. <span>{{item.type}}</span>
  41. </view>
  42. <view class="func">
  43. <view class="" v-if="item.free > 0"></view>
  44. <view class="price" v-if="item.price">
  45. ¥{{item.price}}元
  46. </view>
  47. <view class="member-free" v-if="item.price == null && item.free < 1">
  48. {{item.memberFree > 0 ? '会员免费' : `会员:${item.memberPrice}元`}}
  49. </view>
  50. <view class="not-member-price" v-if="item.price == null && item.free < 1">
  51. 非会员:¥{{item.notMemberPrice}}元
  52. </view>
  53. <view v-if="item.free > 0" class="button free">免费</view>
  54. <view v-else-if="item.memberFree > 0" class="button member-free">会员免费</view>
  55. <view v-else :class="['button', item.status > 0 ? 'free' : 'buy']">{{item.status > 0 ? '已购买' : '立即购买'}}</view>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. </template>
  62. <script setup>
  63. import { ref, computed } from 'vue'
  64. import { onLoad } from '@dcloudio/uni-app'
  65. const customButtonStyle = {
  66. height: '40rpx',
  67. lineHeight: '40rpx',
  68. padding: '0 30rpx'
  69. }
  70. const searchInputStyle = {
  71. backgroundColor: '#E5E5E5'
  72. }
  73. const searchType = [
  74. {
  75. label: '全部',
  76. value: 0
  77. },
  78. {
  79. label: '每周成交简报',
  80. value: 1
  81. },
  82. {
  83. label: '月度成交简报',
  84. value: 2
  85. },
  86. {
  87. label: '经理人指数报告',
  88. value: 3
  89. },
  90. {
  91. label: '一周楼市资讯',
  92. value: 4
  93. },
  94. ]
  95. function onSearchTypeChange(val) {
  96. console.log('搜索表单', searchForm.value)
  97. }
  98. const searchForm = ref({
  99. keyword: '',
  100. type: 0
  101. })
  102. const modelName = ref()
  103. const list = [
  104. {
  105. id: '01',
  106. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  107. time: '2023年8月8日',
  108. image: 'https://img.shetu66.com/2023/10/21/1697901453723364.png',
  109. type: '月度成交简报',
  110. price: '9.9',
  111. memberPrice: '9.9',
  112. notMemberPrice: null,
  113. free: 0, // 是否免费
  114. memberFree: 0, // 是否会员免费
  115. status: 0, // 是否购买
  116. },
  117. {
  118. id: '02',
  119. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  120. time: '2023年8月8日',
  121. image: 'https://img.shetu66.com/2023/12/13/1702403646894275.png',
  122. type: '月度成交简报',
  123. price: '9.9',
  124. memberPrice: '9.9',
  125. notMemberPrice: null,
  126. free: 0, // 是否免费
  127. memberFree: 0, // 是否会员免费
  128. status: 1, // 是否购买
  129. },
  130. {
  131. id: '03',
  132. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  133. time: '2023年8月8日',
  134. image: 'https://img.shetu66.com/2023/10/16/1697397333933789.png',
  135. type: '月度成交简报',
  136. price: null,
  137. memberPrice: null,
  138. notMemberPrice: null,
  139. free: 1, // 是否免费
  140. memberFree: 0, // 是否会员免费
  141. status: 0, // 是否购买
  142. },
  143. {
  144. id: '04',
  145. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  146. time: '2023年8月8日',
  147. image: 'https://img.shetu66.com/2023/10/24/1698106006242859.png',
  148. type: '月度成交简报',
  149. price: '9.9',
  150. memberPrice: null,
  151. notMemberPrice: null,
  152. free: 0, // 是否免费
  153. memberFree: 1, // 是否会员免费
  154. status: 0, // 是否购买
  155. },
  156. {
  157. id: '05',
  158. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  159. time: '2023年8月8日',
  160. image: 'https://static.fxbaogao.com/subject/cover/prod/361.jpg',
  161. type: '月度成交简报',
  162. price: '9.9',
  163. memberPrice: null,
  164. notMemberPrice: null,
  165. free: 0, // 是否免费
  166. memberFree: 1, // 是否会员免费
  167. status: 0, // 是否购买
  168. },
  169. {
  170. id: '06',
  171. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  172. time: '2023年8月8日',
  173. image: 'https://img.shetu66.com/2023/10/16/1697387221220874.png',
  174. type: '月度成交简报',
  175. price: null,
  176. memberPrice: null,
  177. notMemberPrice: '9.9',
  178. free: 0, // 是否免费
  179. memberFree: 1, // 是否会员免费
  180. status: 1, // 是否购买
  181. },
  182. {
  183. id: '07',
  184. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  185. time: '2023年8月8日',
  186. image: 'https://img.shetu66.com/2023/10/21/1697901453723364.png',
  187. type: '月度成交简报',
  188. price: null,
  189. memberPrice: '9.9',
  190. notMemberPrice: '19.9',
  191. free: 0, // 是否免费
  192. memberFree: 0, // 是否会员免费
  193. status: 0, // 是否购买
  194. },
  195. {
  196. id: '08',
  197. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  198. time: '2023年8月8日',
  199. image: 'https://img.shetu66.com/2023/12/13/1702403646894275.png',
  200. type: '月度成交简报',
  201. price: null,
  202. memberPrice: '9.9',
  203. notMemberPrice: '19.9',
  204. free: 0, // 是否免费
  205. memberFree: 0, // 是否会员免费
  206. status: 1, // 是否购买
  207. },
  208. ]
  209. function onClickReport(report) {
  210. uni.navigateTo({
  211. url: `/pages/reportDetail/reportDetail?id=${report.id}&title=${report.title}`
  212. })
  213. }
  214. onLoad((load) => {
  215. if (load.model) {
  216. modelName.value = load.model
  217. uni.setNavigationBarTitle({
  218. title: modelName.value
  219. })
  220. }
  221. })
  222. </script>
  223. <style lang="scss">
  224. $image-width: 230rpx;
  225. .container {
  226. height: 100vh;
  227. width: 100vw;
  228. background-color: $uni-text-color-inverse;
  229. .header-box {
  230. padding: 0 20rpx;
  231. background-color: $uni-text-color-inverse;
  232. @include topMagnet();
  233. }
  234. .search-box {
  235. margin-bottom: 20rpx;
  236. ::v-deep(.u-search) {
  237. background-color: #e5e5e5;
  238. border-radius: 50rpx;
  239. .u-action {
  240. width: 18%;
  241. background-color: $uni-color-primary;
  242. border-radius: 50rpx;
  243. color: $uni-text-color-inverse;
  244. margin-right: 8rpx;
  245. font-size: 28rpx;
  246. line-height: 50rpx;
  247. letter-spacing: 3rpx;
  248. text-align: center;
  249. }
  250. }
  251. }
  252. .list-box {
  253. padding: 0 20rpx;
  254. .list-item-box {
  255. padding: 30rpx 20rpx;
  256. display: flex;
  257. gap: 20rpx;
  258. height: 210rpx;
  259. border-bottom: 5rpx solid #E6E6E6;
  260. &:active {
  261. background-color: $uni-bg-color-hover;
  262. }
  263. .image-box {
  264. width: $image-width;
  265. image {
  266. width: $image-width;
  267. flex: 0 0 $image-width;
  268. height: 100%;
  269. border-radius: $uni-card-border-radius;
  270. }
  271. }
  272. .info-box {
  273. .title {
  274. font-size: $uni-title-font-size-2;
  275. font-weight: bold;
  276. line-height: 40rpx;
  277. margin-bottom: 15rpx;
  278. @include text-line-overflow(2);
  279. }
  280. .type {
  281. font-size: $uni-font-size-2;
  282. .iconfont {
  283. font-size: $uni-font-size-2;
  284. padding-right: 10rpx;
  285. }
  286. }
  287. .func {
  288. display: flex;
  289. justify-content: space-between;
  290. align-items: flex-end;
  291. font-size: $uni-font-size-2;
  292. font-weight: bold;
  293. .button {
  294. text-align: center;
  295. width: 130rpx;
  296. }
  297. .price {
  298. color: $uni-color-error;
  299. font-size: $uni-title-font-size-3;
  300. }
  301. .not-member-price {
  302. font-size: $uni-font-size-4;
  303. color: $uni-text-color-grey;
  304. text-align: end;
  305. }
  306. .buy {
  307. padding: 6rpx 25rpx;
  308. background-color: $uni-color-error;
  309. border-radius: $uni-card-border-radius;
  310. color: $uni-text-color-inverse;
  311. }
  312. .free {
  313. padding: 6rpx 25rpx;
  314. background-color: $uni-color-primary;
  315. border-radius: $uni-card-border-radius;
  316. color: $uni-text-color-inverse;
  317. }
  318. .member-free {
  319. padding: 10rpx 20rpx;
  320. @include backgroundImg('@/static/images/bg-label.png');
  321. color: $uni-text-color;
  322. }
  323. }
  324. }
  325. }
  326. }
  327. }
  328. </style>