index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  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="/static/images/login-icon.png" mode="aspectFit" style="width: 200rpx;"></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="`/static/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="20" 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: '挑剔1111111111'
  115. },
  116. {
  117. keChengTuPian: 'https://pic3.zhimg.com/v2-e52354ffdbd94a8e0a7649eacd34a788_r.jpg?source=1940ef5c',
  118. id: '02',
  119. keChengMingCheng: '挑剔22231331231'
  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: '挑剔42341255243'
  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: 'pay',
  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: 30rpx 0;
  289. height: 140rpx;
  290. .u-body-item-content {
  291. position: relative;
  292. flex: 1;
  293. /* 剩余空间占用 Flex 规则 */
  294. min-width: 0;
  295. // width: 100%;
  296. height: inherit;
  297. .item-content text {
  298. width: inherit;
  299. font-size: $uni-font-size-2;
  300. display: block;
  301. margin: 10rpx;
  302. color: $uni-text-color;
  303. }
  304. .item-content .item-content-price {
  305. color: $uni-color-error;
  306. // font-weight: bold;
  307. }
  308. .item-button {
  309. position: absolute;
  310. right: 0;
  311. bottom: 0;
  312. font-size: 22rpx;
  313. .item-button-huiyuan {
  314. padding: 15rpx 0 5rpx;
  315. text-align: center;
  316. width: 150rpx;
  317. background-image: url('~@/static/images/bg-label.png');
  318. background-size: cover;
  319. background-repeat: no-repeat;
  320. // background-position: center;
  321. }
  322. .item-button-goumai {
  323. padding: 5rpx 0;
  324. text-align: center;
  325. width: 150rpx;
  326. background-color: #fe0000;
  327. border-radius: 30rpx;
  328. color: #fff;
  329. }
  330. .item-button-yiGouMai {
  331. text-align: center;
  332. width: 150rpx;
  333. padding: 5rpx 0;
  334. background-color: #006af4;
  335. border-radius: 30rpx;
  336. color: #fff;
  337. }
  338. }
  339. }
  340. image {
  341. width: 200rpx;
  342. flex: 0 0 200rpx;
  343. height: 100%;
  344. border-radius: 20rpx;
  345. margin-right: 12rpx;
  346. }
  347. }
  348. .course-swiper {
  349. height: 200px;
  350. .swiper-item {
  351. width: 33.33%;
  352. height: 200px;
  353. /* 三个一排,宽度为三分之一 */
  354. transition: transform 0.3s ease;
  355. /* 加入过渡效果 */
  356. display: flex;
  357. flex-direction: column;
  358. align-items: center;
  359. justify-content: center;
  360. }
  361. .swiper-item.active {
  362. transform: scale(1.1);
  363. /* 主项放大 */
  364. }
  365. image {
  366. width: 80%;
  367. /* 图片宽度 */
  368. height: auto;
  369. }
  370. text {
  371. margin-top: 10px;
  372. }
  373. }
  374. .text-ellipsis {
  375. overflow: hidden;
  376. /* 隐藏超出内容 */
  377. white-space: nowrap;
  378. /* 禁止换行 */
  379. text-overflow: ellipsis;
  380. }
  381. .swiper-container {
  382. perspective: 1000px;
  383. }
  384. .swiper-item {
  385. transition: transform 0.5s;
  386. transform-style: preserve-3d;
  387. /* 其他样式 */
  388. }
  389. .content {
  390. backface-visibility: hidden;
  391. /* 确保背面不可见 */
  392. display: flex;
  393. justify-content: center;
  394. align-items: center;
  395. height: 200px;
  396. /* 设置高度 */
  397. font-size: 24px;
  398. color: white;
  399. background: linear-gradient(45deg, #ff5858, #f09819);
  400. /* 示例背景 */
  401. }
  402. // 登录模拟态
  403. .modal {
  404. .modal-content {
  405. padding: 50rpx;
  406. .content-a {
  407. color: #2979ff;
  408. }
  409. }
  410. }
  411. </style>