index.vue 11 KB

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