reportHome.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  1. <template>
  2. <view class="container">
  3. <view v-show="menuCurrent === 0">
  4. <view class="menus-box">
  5. <view class="menus-item-box" @click="toReportList('二手住宅市场')">
  6. <view class="icon-box">
  7. <view class="iconfont icon-hetong"></view>
  8. </view>
  9. <view class="text-box">
  10. 二手住宅市场
  11. </view>
  12. </view>
  13. <view class="menus-item-box" @click="toReportList('住宅租赁市场')">
  14. <view class="icon-box">
  15. <view class="iconfont icon-chengshi"></view>
  16. </view>
  17. <view class="text-box">
  18. 住宅租赁市场
  19. </view>
  20. </view>
  21. <view class="menus-item-box" @click="toReportList('房地产中介行业')">
  22. <view class="icon-box">
  23. <view class="iconfont icon-zhongjie"></view>
  24. </view>
  25. <view class="text-box">
  26. 房地产中介行业
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. <view v-show="menuCurrent === 1">
  32. <view class="header-box">
  33. <view class="search-box">
  34. <u-search
  35. v-model="searchForm.keyword"
  36. :clearabled="true"
  37. bg-color="#E5E5E5"
  38. :input-style="searchInputStyle"
  39. placeholder="搜索您想要的内容"
  40. ></u-search>
  41. </view>
  42. </view>
  43. <view class="list-box">
  44. <view class="list-item-box" v-for="item in list" :key="item.id" @click="onClickReport(item)">
  45. <view class="image-box">
  46. <image :src="item.image" mode="aspectFill"></image>
  47. </view>
  48. <view class="info-box">
  49. <view class="title">
  50. {{item.title}}
  51. </view>
  52. <view class="time">
  53. <span class="iconfont icon-time"></span>
  54. <span>{{item.time}}</span>
  55. </view>
  56. <view class="func">
  57. <view v-if="item.free > 0" class="button free">免费</view>
  58. <view v-else-if="item.memberFree > 0" class="button member-free">会员免费</view>
  59. <view v-else :class="['button', item.status > 0 ? 'free' : 'buy']">{{item.status > 0 ? '已购买' : '立即购买'}}</view>
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. </view>
  65. <view v-show="menuCurrent === 2">
  66. <view class="header-box">
  67. <view class="search-box">
  68. <u-search
  69. v-model="searchForm.keyword"
  70. :clearabled="true"
  71. bg-color="#E5E5E5"
  72. :input-style="searchInputStyle"
  73. placeholder="搜索您想要的内容"
  74. ></u-search>
  75. </view>
  76. </view>
  77. <view class="list-box">
  78. <view class="list-item-box" v-for="item in list2" :key="item.id" @click="onClickReport(item)">
  79. <view class="image-box">
  80. <image :src="item.image" mode="aspectFill"></image>
  81. </view>
  82. <view class="info-box">
  83. <view class="title">
  84. {{item.title}}
  85. </view>
  86. <view class="time">
  87. <span>购买时间:&nbsp;{{item.time}}</span>
  88. </view>
  89. <view class="func">
  90. <view class="price">实付款:{{item.price}}元</view>
  91. </view>
  92. </view>
  93. </view>
  94. </view>
  95. </view>
  96. <view class="bottom-block"></view>
  97. <view class="bottom-box">
  98. <view class="menu-box">
  99. <view class="menu-item-box" :class="{'is-active': menuCurrent === 0}" @click="onMenuClick(0)">
  100. <view class="iconfont icon-home"></view>
  101. <view class="text">首页</view>
  102. </view>
  103. <view class="menu-item-box" :class="{'is-active': menuCurrent === 1}" @click="onMenuClick(1)">
  104. <view class="iconfont icon-time"></view>
  105. <view class="text">我的浏览</view>
  106. </view>
  107. <view class="menu-item-box" :class="{'is-active': menuCurrent === 2}" @click="onMenuClick(2)">
  108. <view class="iconfont icon-baogao"></view>
  109. <view class="text">我的报告</view>
  110. </view>
  111. </view>
  112. </view>
  113. </view>
  114. </template>
  115. <script setup>
  116. import { ref, computed } from 'vue'
  117. import { onLoad } from '@dcloudio/uni-app'
  118. const customButtonStyle = {
  119. height: '40rpx',
  120. lineHeight: '40rpx',
  121. padding: '0 30rpx'
  122. }
  123. const searchInputStyle = {
  124. backgroundColor: '#E5E5E5'
  125. }
  126. const searchForm = ref({
  127. keyword: '',
  128. type: 0
  129. })
  130. const menuCurrent = ref(0)
  131. function onMenuClick(index) {
  132. menuCurrent.value = index
  133. }
  134. function toReportList(model) {
  135. uni.navigateTo({
  136. url: `/pages/researchReport/reportList/reportList?model=${model}`
  137. })
  138. }
  139. const list = [
  140. {
  141. id: '01',
  142. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  143. time: '2023年8月8日',
  144. image: 'https://img.shetu66.com/2023/10/21/1697901453723364.png',
  145. free: 0, // 是否免费
  146. memberFree: 0, // 是否会员免费
  147. status: 0, // 是否购买
  148. },
  149. {
  150. id: '02',
  151. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  152. time: '2023年8月8日',
  153. image: 'https://img.shetu66.com/2023/12/13/1702403646894275.png',
  154. free: 0, // 是否免费
  155. memberFree: 0, // 是否会员免费
  156. status: 1, // 是否购买
  157. },
  158. {
  159. id: '03',
  160. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  161. time: '2023年8月8日',
  162. image: 'https://img.shetu66.com/2023/10/16/1697397333933789.png',
  163. free: 1, // 是否免费
  164. memberFree: 0, // 是否会员免费
  165. status: 0, // 是否购买
  166. },
  167. {
  168. id: '04',
  169. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  170. time: '2023年8月8日',
  171. image: 'https://img.shetu66.com/2023/10/24/1698106006242859.png',
  172. free: 0, // 是否免费
  173. memberFree: 1, // 是否会员免费
  174. status: 0, // 是否购买
  175. },
  176. {
  177. id: '05',
  178. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  179. time: '2023年8月8日',
  180. image: 'https://static.fxbaogao.com/subject/cover/prod/361.jpg',
  181. free: 0, // 是否免费
  182. memberFree: 1, // 是否会员免费
  183. status: 0, // 是否购买
  184. },
  185. {
  186. id: '06',
  187. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  188. time: '2023年8月8日',
  189. image: 'https://img.shetu66.com/2023/10/16/1697387221220874.png',
  190. free: 0, // 是否免费
  191. memberFree: 1, // 是否会员免费
  192. status: 1, // 是否购买
  193. },
  194. {
  195. id: '07',
  196. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  197. time: '2023年8月8日',
  198. image: 'https://img.shetu66.com/2023/10/21/1697901453723364.png',
  199. free: 0, // 是否免费
  200. memberFree: 0, // 是否会员免费
  201. status: 0, // 是否购买
  202. },
  203. {
  204. id: '08',
  205. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  206. time: '2023年8月8日',
  207. image: 'https://img.shetu66.com/2023/12/13/1702403646894275.png',
  208. free: 0, // 是否免费
  209. memberFree: 0, // 是否会员免费
  210. status: 0, // 是否购买
  211. },
  212. ]
  213. const list2 = [
  214. {
  215. id: '01',
  216. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  217. time: '2023年8月8日',
  218. image: 'https://img.shetu66.com/2023/10/21/1697901453723364.png',
  219. price: '9.9'
  220. },
  221. {
  222. id: '02',
  223. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  224. time: '2023年8月8日',
  225. image: 'https://img.shetu66.com/2023/12/13/1702403646894275.png',
  226. price: '9.9'
  227. },
  228. {
  229. id: '03',
  230. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  231. time: '2023年8月8日',
  232. image: 'https://img.shetu66.com/2023/10/16/1697397333933789.png',
  233. price: '9.9'
  234. },
  235. {
  236. id: '04',
  237. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  238. time: '2023年8月8日',
  239. image: 'https://img.shetu66.com/2023/10/24/1698106006242859.png',
  240. price: '9.9'
  241. },
  242. {
  243. id: '05',
  244. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  245. time: '2023年8月8日',
  246. image: 'https://static.fxbaogao.com/subject/cover/prod/361.jpg',
  247. price: '9.9'
  248. },
  249. {
  250. id: '06',
  251. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  252. time: '2023年8月8日',
  253. image: 'https://img.shetu66.com/2023/10/16/1697387221220874.png',
  254. price: '9.9'
  255. },
  256. {
  257. id: '07',
  258. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  259. time: '2023年8月8日',
  260. image: 'https://img.shetu66.com/2023/10/21/1697901453723364.png',
  261. price: '9.9'
  262. },
  263. {
  264. id: '08',
  265. title: '2024年11月广州市中介促成二手住宅市场交易简报',
  266. time: '2023年8月8日',
  267. image: 'https://img.shetu66.com/2023/12/13/1702403646894275.png',
  268. price: '9.9'
  269. },
  270. ]
  271. function onClickReport(report) {
  272. uni.navigateTo({
  273. url: `/pages/reportDetail/reportDetail?id=${report.id}&title=${report.title}`
  274. })
  275. }
  276. onLoad((load) => {
  277. if (load.menuCurrent) {
  278. menuCurrent.value = Number(load.menuCurrent)
  279. }
  280. })
  281. </script>
  282. <style lang="scss" scoped>
  283. $image-width: 230rpx;
  284. .container {
  285. height: 100vh;
  286. width: 100vw;
  287. background-color: $uni-text-color-inverse;
  288. .header-box {
  289. padding: 0 20rpx;
  290. background-color: $uni-text-color-inverse;
  291. @include topMagnet();
  292. }
  293. .search-box {
  294. margin-bottom: 20rpx;
  295. ::v-deep(.u-search) {
  296. background-color: #e5e5e5;
  297. border-radius: 50rpx;
  298. .u-action {
  299. width: 18%;
  300. background-color: $uni-color-primary;
  301. border-radius: 50rpx;
  302. color: $uni-text-color-inverse;
  303. margin-right: 8rpx;
  304. font-size: 28rpx;
  305. line-height: 50rpx;
  306. letter-spacing: 3rpx;
  307. text-align: center;
  308. }
  309. }
  310. }
  311. .list-box {
  312. padding: 0 20rpx;
  313. .list-item-box {
  314. padding: 30rpx 20rpx;
  315. display: flex;
  316. gap: 20rpx;
  317. height: 210rpx;
  318. border-bottom: 5rpx solid #E6E6E6;
  319. &:active {
  320. background-color: $uni-bg-color-hover;
  321. }
  322. .image-box {
  323. width: $image-width;
  324. image {
  325. width: $image-width;
  326. flex: 0 0 $image-width;
  327. height: 100%;
  328. border-radius: $uni-card-border-radius;
  329. }
  330. }
  331. .info-box {
  332. .title {
  333. font-size: $uni-title-font-size-2;
  334. font-weight: bold;
  335. line-height: 40rpx;
  336. margin-bottom: 15rpx;
  337. @include text-line-overflow(2);
  338. }
  339. .time {
  340. font-size: $uni-font-size-2;
  341. color: $uni-text-color-grey;
  342. .iconfont {
  343. font-size: $uni-font-size-2;
  344. padding-right: 10rpx;
  345. }
  346. }
  347. .func {
  348. display: flex;
  349. justify-content: flex-end;
  350. font-size: $uni-font-size-2;
  351. font-weight: bold;
  352. .button {
  353. text-align: center;
  354. width: 130rpx;
  355. }
  356. .price {
  357. color: $uni-color-error;
  358. font-size: $uni-title-font-size-2;
  359. }
  360. .buy {
  361. padding: 6rpx 25rpx;
  362. background-color: $uni-color-error;
  363. border-radius: $uni-card-border-radius;
  364. color: $uni-text-color-inverse;
  365. }
  366. .free {
  367. padding: 6rpx 25rpx;
  368. background-color: $uni-color-primary;
  369. border-radius: $uni-card-border-radius;
  370. color: $uni-text-color-inverse;
  371. }
  372. .member-free {
  373. padding: 10rpx 20rpx;
  374. @include backgroundImg('@/static/images/bg-label.png');
  375. color: $uni-text-color;
  376. }
  377. }
  378. }
  379. }
  380. }
  381. .menus-box {
  382. padding: 0 20rpx;
  383. .menus-item-box {
  384. width: 100%;
  385. padding: 35rpx 50rpx;
  386. margin-bottom: 35rpx;
  387. display: flex;
  388. gap: 30rpx;
  389. align-items: center;
  390. background-color: #006AF4;
  391. border-radius: $uni-card-border-radius;
  392. &:active {
  393. background-color: #005AF4;
  394. }
  395. .icon-box {
  396. width: 40%;
  397. text-align: center;
  398. width: 100rpx;
  399. height: 100rpx;
  400. line-height: 100rpx;
  401. text-align: center;
  402. border-radius: 50%;
  403. border: 3rpx solid $uni-text-color-inverse;
  404. background-color: #004DC9;
  405. .iconfont {
  406. font-size: 60rpx;
  407. color: $uni-text-color-inverse;
  408. }
  409. }
  410. .text-box {
  411. font-size: 50rpx;
  412. font-weight: bold;
  413. color: $uni-text-color-inverse;
  414. }
  415. }
  416. }
  417. .bottom-block {
  418. height: 112rpx;
  419. }
  420. .bottom-box {
  421. padding: 5rpx 20rpx;
  422. background-color: $uni-bg-color-grey;
  423. border: 1rpx solid #E9E9E9;
  424. @include bottomMagnet();
  425. .menu-box {
  426. height: 100rpx;
  427. display: flex;
  428. align-items: center;
  429. .menu-item-box {
  430. width: calc(100% / 3);
  431. text-align: center;
  432. .iconfont {
  433. font-size: 55rpx;
  434. }
  435. .text {
  436. font-size: $uni-font-size-2;
  437. }
  438. }
  439. .is-active {
  440. color: $uni-color-primary;
  441. }
  442. }
  443. }
  444. }
  445. </style>