index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. <template>
  2. <view class="container">
  3. <u-navbar :is-back="false" title="" :background="{ background: '#f7f7f7' }" :border-bottom="false">
  4. <view class="slot-wrap">
  5. <image src="https://sylwt.top/api/visitor/resources/image?name=/ydl/menber-center/login-icon.png" mode="aspectFit" style="width: 300rpx;"></image>
  6. </view>
  7. </u-navbar>
  8. <view class="page-content">
  9. <swiper class="swiper" circular indicator-dots style="border-radius: 20rpx;overflow: hidden;height: 200px">
  10. <swiper-item v-for="(data, index) in swiperList" style="width: 100%;height: 100%;" :key="index">
  11. <view class="swiper-item" style="width: 100%;height: 100%;">
  12. <image :src="data.tuPian" mode="aspectFill" style="width: 100%;height: 100%;"></image>
  13. </view>
  14. </swiper-item>
  15. </swiper>
  16. <u-grid :col="4" :border="false" style="margin: 10rpx 0 ;">
  17. <template v-for="(item,index) in navList" :key="index">
  18. <u-grid-item bg-color="none" @click="jumpToPage(item)">
  19. <image :src="`https://sylwt.top/api/visitor/resources/image?name=/ydl/menber-center/index-icon/${item.image}.png`" style="height: 70rpx;width: 70rpx;">
  20. </image>
  21. <view class="grid-text">{{item.title}}</view>
  22. </u-grid-item>
  23. </template>
  24. </u-grid>
  25. <u-card padding="20" margin="0rpx 0rpx 30rpx" border-radius="20"
  26. box-shadow="0px 2px 5px rgba(0, 0, 0, 0.1)">
  27. <template v-slot:head>
  28. <u-section title="课程预告" sub-title="查看更多" sub-color="#000000"></u-section>
  29. </template>
  30. <template v-slot:body>
  31. <lg-swiper :sildeItems="courseList" @swiperClick="swiperClick" image="keChengTuPian" title="keChengMingCheng"></lg-swiper>
  32. </template>
  33. </u-card>
  34. <u-card padding="30" margin="0rpx 0rpx 30rpx" border-radius="20"
  35. box-shadow="0px 2px 5px rgba(0, 0, 0, 0.1)">
  36. <template v-slot:head>
  37. <u-section title="研究报告" sub-title="查看更多" sub-color="#000000"></u-section>
  38. </template>
  39. <template v-slot:body>
  40. <view>
  41. <view v-for="(data,index) in reportList" :key="index" class="u-body-item u-flex u-p-t-0 "
  42. style="align-items: inherit;">
  43. <image :src="data.tuPian" mode="aspectFill"></image>
  44. <view class="u-body-item-content">
  45. <view class="item-content">
  46. <text class="item-content-title text-ellipsis">{{data.biaoTi}}</text>
  47. <text class="item-content-type">{{data.leiXing}}</text>
  48. <text class="item-content-price" v-if="!data.huiYuanMianFei">¥{{data.jiaGe}}元</text>
  49. </view>
  50. <view class="item-button">
  51. <view v-if="!data.huiYuanMianFei && data.yiGouMai" class="item-button-yiGouMai">已购买
  52. </view>
  53. <view v-else-if="!data.huiYuanMianFei && !data.yiGouMai" class="item-button-goumai">
  54. 点击购买</view>
  55. <view v-else-if="data.huiYuanMianFei" class="item-button-huiyuan">
  56. 会员免费
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. </template>
  63. </u-card>
  64. </view>
  65. <u-modal v-model="loginModal" mask-close-able class="modal" show-cancel-button
  66. :title-style="{fontWeight: 'bold'}" @confirm="confirmModal">
  67. <view class="modal-content">
  68. <text>请登录后使用该功能</text>
  69. </view>
  70. </u-modal>
  71. </view>
  72. </template>
  73. <script setup>
  74. import lgSwiper from '@/components/lgSwiper.vue'
  75. import {
  76. onMounted,
  77. ref
  78. } from 'vue'
  79. import {
  80. onReady,
  81. onLoad
  82. } from '@dcloudio/uni-app'
  83. import {
  84. useAuthStore
  85. } from '@/store/authStore'
  86. const authStore = useAuthStore()
  87. // 屏幕状态栏高度
  88. const statusBarHeight = ref(0)
  89. // 顶部导航栏高度
  90. const navBarHeight = ref(0)
  91. // 是否登录
  92. const isLogin = ref(true)
  93. const loginModal = ref(false)
  94. // 是否为会员,从缓存里拿取用户信息
  95. // const userInfo = uni.getStorageSync("userinfo") || {}
  96. // const isMember = userInfo?.isMember || false
  97. // 首页-轮播图
  98. const swiperList = ref([{
  99. tuPian: 'https://tse3-mm.cn.bing.net/th/id/OIP-C.YKoZzgmubNBxQ8j-mmoTKAHaEK?rs=1&pid=ImgDetMain',
  100. id: '01'
  101. },
  102. {
  103. tuPian: 'https://pic3.zhimg.com/v2-e52354ffdbd94a8e0a7649eacd34a788_r.jpg?source=1940ef5c',
  104. id: '02'
  105. },
  106. {
  107. tuPian: 'https://desk-fd.zol-img.com.cn/t_s960x600c5/g4/M03/00/0C/Cg-4zFS8bC-Ie9zBADCvovJAqiEAATJ8wDX__cAMK-6184.jpg',
  108. id: '03'
  109. },
  110. ])
  111. const courseList = ref([{
  112. keChengTuPian: 'https://tse3-mm.cn.bing.net/th/id/OIP-C.YKoZzgmubNBxQ8j-mmoTKAHaEK?rs=1&pid=ImgDetMain',
  113. id: '01',
  114. keChengMingCheng: '【8月8日】房地产经纪进阶培训班'
  115. },
  116. {
  117. keChengTuPian: 'https://pic3.zhimg.com/v2-e52354ffdbd94a8e0a7649eacd34a788_r.jpg?source=1940ef5c',
  118. id: '02',
  119. keChengMingCheng: '【8月9日】《房地产中介服务规范》培训'
  120. },
  121. {
  122. keChengTuPian: 'https://desk-fd.zol-img.com.cn/t_s960x600c5/g4/M03/00/0C/Cg-4zFS8bC-Ie9zBADCvovJAqiEAATJ8wDX__cAMK-6184.jpg',
  123. id: '03',
  124. keChengMingCheng: '【已结束】《广州市房屋租赁管理规定》'
  125. },
  126. ])
  127. // 首页-导航栏
  128. const navList = ref([{
  129. id: 'notice',
  130. title: '通知公告',
  131. image: 'notice',
  132. url: '/pages/notice/notice/notice',
  133. toOtherApp: false,
  134. otherAppId: '其他小程序的appid'
  135. },
  136. {
  137. id: 'dynamic',
  138. title: '协会动态',
  139. image: 'dynamic',
  140. url: '/pages/dynamic/dynamic/dynamic',
  141. toOtherApp: false,
  142. otherAppId: '其他小程序的appid'
  143. },
  144. {
  145. id: 'guide',
  146. title: '办事指引',
  147. image: 'guide',
  148. url: '/pages/guide/guide/guide',
  149. toOtherApp: false,
  150. otherAppId: '其他小程序的appid'
  151. },
  152. {
  153. id: 'edu',
  154. title: '继续教育',
  155. image: 'edu',
  156. url: '/pages/goOnEdu/index',
  157. toOtherApp: false,
  158. otherAppId: '其他小程序的appid'
  159. },
  160. {
  161. id: 'level',
  162. title: '水平认证',
  163. image: 'level',
  164. url: '跳转页面的路径',
  165. toOtherApp: true,
  166. otherAppId: '其他小程序的appid'
  167. },
  168. {
  169. id: 'report',
  170. title: '研究报告',
  171. image: 'report',
  172. url: '/pages/researchReport/reportHome/reportHome',
  173. toOtherApp: false,
  174. otherAppId: '其他小程序的appid'
  175. },
  176. {
  177. id: 'index',
  178. title: '经理人指数',
  179. image: 'index',
  180. url: '跳转页面的路径',
  181. toOtherApp: true,
  182. otherAppId: '其他小程序的appid'
  183. },
  184. {
  185. id: 'pay',
  186. title: '会费缴交',
  187. image: 'pay',
  188. url: '跳转页面的路径',
  189. toOtherApp: true,
  190. otherAppId: '其他小程序的appid'
  191. }
  192. ])
  193. const reportList = ref(
  194. [{
  195. "biaoTi": "2023年7月广州市中介促成二手住宅市场交易简报",
  196. "tuPian": "https://tse3-mm.cn.bing.net/th/id/OIP-C.YKoZzgmubNBxQ8j-mmoTKAHaEK?rs=1&pid=ImgDetMain",
  197. "leiXing": "月度成交简报",
  198. "jiaGe": 150.80,
  199. "yiGouMai": true,
  200. "huiYuanMianFei": false
  201. },
  202. {
  203. "biaoTi": "成交有望稳中微升——2023年8月中介协会经理人指数报告经理人指数报告经理人指数报告",
  204. "tuPian": "https://pic3.zhimg.com/v2-e52354ffdbd94a8e0a7649eacd34a788_r.jpg?source=1940ef5c",
  205. "leiXing": "经理人指数报告",
  206. "jiaGe": 200.88,
  207. "yiGouMai": false,
  208. "huiYuanMianFei": false
  209. },
  210. {
  211. "biaoTi": "2023年6月广州市住宅租金动态监测报告",
  212. "tuPian": "https://desk-fd.zol-img.com.cn/t_s960x600c5/g4/M03/00/0C/Cg-4zFS8bC-Ie9zBADCvovJAqiEAATJ8wDX__cAMK-6184.jpg",
  213. "leiXing": "月度租赁简报",
  214. "jiaGe": 300.00,
  215. "yiGouMai": true,
  216. "huiYuanMianFei": true
  217. }
  218. ])
  219. // 跳转页面
  220. const jumpToPage = (data) => {
  221. if (data.toOtherApp) {
  222. // 跳转其他小程序
  223. console.log("跳转至其他小程序", data.otherAppId)
  224. return
  225. }
  226. if (!authStore.isAuthenticated) {
  227. loginModal.value = true
  228. return
  229. }
  230. uni.navigateTo({
  231. url: data.url
  232. })
  233. }
  234. // 确认跳转至登录
  235. const confirmModal = () => {
  236. uni.navigateTo({
  237. url: "/pages/login/login"
  238. })
  239. }
  240. const toPage = () => {
  241. if (!authStore.isAuthenticated) {
  242. uni.navigateTo({
  243. url: "/pages/login/login"
  244. })
  245. return
  246. }
  247. }
  248. const swiperClick = (data) => {
  249. console.log(data, "课程预告数据")
  250. }
  251. onReady(() => {
  252. uni.getSystemInfo({
  253. success(e) {
  254. statusBarHeight.value = e.statusBarHeight;
  255. let custom = uni.getMenuButtonBoundingClientRect();
  256. navBarHeight.value = custom.height + (custom.top - e.statusBarHeight) * 2;
  257. }
  258. })
  259. })
  260. onLoad(() => {
  261. uni.setTabBarBadge({ //显示数字
  262. index: 1, //tabbar下标
  263. text: '999' //数字
  264. })
  265. })
  266. </script>
  267. <style lang="scss" scoped>
  268. .container {
  269. width: 100vw;
  270. background-color: $uni-bg-color;
  271. padding: 0 20rpx 5rpx;
  272. }
  273. .slot-wrap {
  274. padding-left: 20rpx;
  275. }
  276. .grid-text {
  277. font-size: 28rpx;
  278. margin-top: 4rpx;
  279. color: $uni-text-color;
  280. }
  281. .u-card-wrap {
  282. background-color: $u-bg-color;
  283. padding: 1px;
  284. }
  285. .u-body-item {
  286. font-size: 32rpx;
  287. color: #333;
  288. margin-bottom: 30rpx;
  289. height: 140rpx;
  290. &:last-of-type {
  291. margin-bottom: 0;
  292. }
  293. .u-body-item-content {
  294. position: relative;
  295. flex: 1;
  296. /* 剩余空间占用 Flex 规则 */
  297. min-width: 0;
  298. // width: 100%;
  299. height: inherit;
  300. .item-content text {
  301. width: inherit;
  302. font-size: $uni-font-size-2;
  303. display: block;
  304. margin: 10rpx;
  305. color: $uni-text-color;
  306. }
  307. .item-content .item-content-title{
  308. font-size: $uni-title-font-size-2;
  309. }
  310. .item-content .item-content-price {
  311. color: $uni-color-error;
  312. // font-weight: bold;
  313. }
  314. .item-button {
  315. position: absolute;
  316. right: 0;
  317. bottom: 0;
  318. font-size: 22rpx;
  319. .item-button-huiyuan {
  320. padding: 15rpx 0 5rpx;
  321. text-align: center;
  322. width: 150rpx;
  323. background-image: url('https://sylwt.top/api/visitor/resources/image?name=/ydl/menber-center/bg-label.png');
  324. background-size: cover;
  325. background-repeat: no-repeat;
  326. // background-position: center;
  327. }
  328. .item-button-goumai {
  329. padding: 5rpx 0;
  330. text-align: center;
  331. width: 150rpx;
  332. background-color: #fe0000;
  333. border-radius: 30rpx;
  334. color: #fff;
  335. }
  336. .item-button-yiGouMai {
  337. text-align: center;
  338. width: 150rpx;
  339. padding: 5rpx 0;
  340. background-color: #006af4;
  341. border-radius: 30rpx;
  342. color: #fff;
  343. }
  344. }
  345. }
  346. image {
  347. width: 200rpx;
  348. flex: 0 0 200rpx;
  349. height: 100%;
  350. border-radius: 20rpx;
  351. margin-right: 12rpx;
  352. }
  353. }
  354. .course-swiper {
  355. height: 200px;
  356. .swiper-item {
  357. width: 33.33%;
  358. height: 200px;
  359. /* 三个一排,宽度为三分之一 */
  360. transition: transform 0.3s ease;
  361. /* 加入过渡效果 */
  362. display: flex;
  363. flex-direction: column;
  364. align-items: center;
  365. justify-content: center;
  366. }
  367. .swiper-item.active {
  368. transform: scale(2);
  369. /* 主项放大 */
  370. }
  371. image {
  372. width: 80%;
  373. /* 图片宽度 */
  374. height: auto;
  375. }
  376. text {
  377. margin-top: 10px;
  378. }
  379. }
  380. .text-ellipsis {
  381. overflow: hidden;
  382. /* 隐藏超出内容 */
  383. white-space: nowrap;
  384. /* 禁止换行 */
  385. text-overflow: ellipsis;
  386. }
  387. .swiper-container {
  388. perspective: 1000px;
  389. }
  390. .swiper-item {
  391. transition: transform 0.5s;
  392. transform-style: preserve-3d;
  393. /* 其他样式 */
  394. }
  395. .content {
  396. backface-visibility: hidden;
  397. /* 确保背面不可见 */
  398. display: flex;
  399. justify-content: center;
  400. align-items: center;
  401. height: 200px;
  402. /* 设置高度 */
  403. font-size: 24px;
  404. color: white;
  405. background: linear-gradient(45deg, #ff5858, #f09819);
  406. /* 示例背景 */
  407. }
  408. // 登录模拟态
  409. .modal {
  410. .modal-content {
  411. padding: 50rpx;
  412. .content-a {
  413. color: #2979ff;
  414. }
  415. }
  416. }
  417. </style>