123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442 |
- <template>
- <view class="container">
- <u-navbar :is-back="false" title="" :background="{ background: '#f7f7f7' }" :border-bottom="false">
- <view class="slot-wrap">
- <image src="/static/images/login-icon.png" mode="aspectFit" style="width: 200rpx;"></image>
- </view>
- </u-navbar>
- <view class="page-content">
- <swiper class="swiper" circular indicator-dots style="border-radius: 20rpx;overflow: hidden;height: 200px">
- <swiper-item v-for="(data, index) in swiperList" style="width: 100%;height: 100%;" :key="index">
- <view class="swiper-item" style="width: 100%;height: 100%;">
- <image :src="data.tuPian" mode="aspectFill" style="width: 100%;height: 100%;"></image>
- </view>
- </swiper-item>
- </swiper>
- <u-grid :col="4" :border="false" style="margin: 10rpx 0 ;">
- <template v-for="(item,index) in navList" :key="index">
- <u-grid-item bg-color="none" @click="jumpToPage(item)">
- <image :src="`/static/index-icon/${item.image}.png`" style="height: 70rpx;width: 70rpx;">
- </image>
- <view class="grid-text">{{item.title}}</view>
- </u-grid-item>
- </template>
- </u-grid>
- <u-card padding="20" margin="0rpx 0rpx 30rpx" border-radius="20"
- box-shadow="0px 2px 5px rgba(0, 0, 0, 0.1)">
- <template v-slot:head>
- <u-section title="课程预告" sub-title="查看更多" sub-color="#000000"></u-section>
- </template>
- <template v-slot:body>
- <lg-swiper :sildeItems="courseList" @swiperClick="swiperClick" image="keChengTuPian" title="keChengMingCheng"></lg-swiper>
- </template>
- </u-card>
- <u-card padding="20" margin="0rpx 0rpx 30rpx" border-radius="20"
- box-shadow="0px 2px 5px rgba(0, 0, 0, 0.1)">
- <template v-slot:head>
- <u-section title="研究报告" sub-title="查看更多" sub-color="#000000"></u-section>
- </template>
- <template v-slot:body>
- <view>
- <view v-for="(data,index) in reportList" :key="index" class="u-body-item u-flex u-p-t-0 "
- style="align-items: inherit;">
- <image :src="data.tuPian" mode="aspectFill"></image>
- <view class="u-body-item-content">
- <view class="item-content">
- <text class="item-content-title text-ellipsis">{{data.biaoTi}}</text>
- <text class="item-content-type">{{data.leiXing}}</text>
- <text class="item-content-price" v-if="!data.huiYuanMianFei">¥{{data.jiaGe}}元</text>
- </view>
- <view class="item-button">
- <view v-if="!data.huiYuanMianFei && data.yiGouMai" class="item-button-yiGouMai">已购买
- </view>
- <view v-else-if="!data.huiYuanMianFei && !data.yiGouMai" class="item-button-goumai">
- 点击购买</view>
- <view v-else-if="data.huiYuanMianFei" class="item-button-huiyuan">
- 会员免费
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- </u-card>
- </view>
- <u-modal v-model="loginModal" mask-close-able class="modal" show-cancel-button
- :title-style="{fontWeight: 'bold'}" @confirm="confirmModal">
- <view class="modal-content">
- <text>请登录后使用该功能</text>
- </view>
- </u-modal>
- </view>
- </template>
- <script setup>
- import lgSwiper from '@/components/lgSwiper.vue'
- import {
- onMounted,
- ref
- } from 'vue'
- import {
- onReady,
- onLoad
- } from '@dcloudio/uni-app'
- import {
- useAuthStore
- } from '@/store/authStore'
- const authStore = useAuthStore()
- // 屏幕状态栏高度
- const statusBarHeight = ref(0)
- // 顶部导航栏高度
- const navBarHeight = ref(0)
- // 是否登录
- const isLogin = ref(true)
- const loginModal = ref(false)
- // 是否为会员,从缓存里拿取用户信息
- // const userInfo = uni.getStorageSync("userinfo") || {}
- // const isMember = userInfo?.isMember || false
- // 首页-轮播图
- const swiperList = ref([{
- tuPian: 'https://tse3-mm.cn.bing.net/th/id/OIP-C.YKoZzgmubNBxQ8j-mmoTKAHaEK?rs=1&pid=ImgDetMain',
- id: '01'
- },
- {
- tuPian: 'https://pic3.zhimg.com/v2-e52354ffdbd94a8e0a7649eacd34a788_r.jpg?source=1940ef5c',
- id: '02'
- },
- {
- tuPian: 'https://desk-fd.zol-img.com.cn/t_s960x600c5/g4/M03/00/0C/Cg-4zFS8bC-Ie9zBADCvovJAqiEAATJ8wDX__cAMK-6184.jpg',
- id: '03'
- },
- ])
- const courseList = ref([{
- keChengTuPian: 'https://tse3-mm.cn.bing.net/th/id/OIP-C.YKoZzgmubNBxQ8j-mmoTKAHaEK?rs=1&pid=ImgDetMain',
- id: '01',
- keChengMingCheng: '挑剔1111111111'
- },
- {
- keChengTuPian: 'https://pic3.zhimg.com/v2-e52354ffdbd94a8e0a7649eacd34a788_r.jpg?source=1940ef5c',
- id: '02',
- keChengMingCheng: '挑剔22231331231'
- },
- {
- keChengTuPian: 'https://desk-fd.zol-img.com.cn/t_s960x600c5/g4/M03/00/0C/Cg-4zFS8bC-Ie9zBADCvovJAqiEAATJ8wDX__cAMK-6184.jpg',
- id: '03',
- keChengMingCheng: '挑剔42341255243'
- },
- ])
- // 首页-导航栏
- const navList = ref([{
- id: 'notice',
- title: '通知公告',
- image: 'notice',
- url: '/pages/notice/notice/notice',
- toOtherApp: false,
- otherAppId: '其他小程序的appid'
- },
- {
- id: 'dynamic',
- title: '协会动态',
- image: 'dynamic',
- url: '/pages/dynamic/dynamic/dynamic',
- toOtherApp: false,
- otherAppId: '其他小程序的appid'
- },
- {
- id: 'guide',
- title: '办事指引',
- image: 'guide',
- url: '/pages/guide/guide/guide',
- toOtherApp: false,
- otherAppId: '其他小程序的appid'
- },
- {
- id: 'edu',
- title: '继续教育',
- image: 'edu',
- url: '/pages/goOnEdu/index',
- toOtherApp: false,
- otherAppId: '其他小程序的appid'
- },
- {
- id: 'level',
- title: '水平认证',
- image: 'level',
- url: '跳转页面的路径',
- toOtherApp: true,
- otherAppId: '其他小程序的appid'
- },
- {
- id: 'report',
- title: '研究报告',
- image: 'report',
- url: '/pages/researchReport/reportHome/reportHome',
- toOtherApp: false,
- otherAppId: '其他小程序的appid'
- },
- {
- id: 'index',
- title: '经理人指数',
- image: 'pay',
- url: '跳转页面的路径',
- toOtherApp: true,
- otherAppId: '其他小程序的appid'
- },
- {
- id: 'pay',
- title: '会费缴交',
- image: 'pay',
- url: '跳转页面的路径',
- toOtherApp: true,
- otherAppId: '其他小程序的appid'
- }
- ])
- const reportList = ref(
- [{
- "biaoTi": "2023年7月广州市中介促成二手住宅市场交易简报",
- "tuPian": "https://tse3-mm.cn.bing.net/th/id/OIP-C.YKoZzgmubNBxQ8j-mmoTKAHaEK?rs=1&pid=ImgDetMain",
- "leiXing": "月度成交简报",
- "jiaGe": 150.80,
- "yiGouMai": true,
- "huiYuanMianFei": false
- },
- {
- "biaoTi": "成交有望稳中微升————2023年8月中介协会经理人指数报告经理人指数报告经理人指数报告",
- "tuPian": "https://pic3.zhimg.com/v2-e52354ffdbd94a8e0a7649eacd34a788_r.jpg?source=1940ef5c",
- "leiXing": "经理人指数报告",
- "jiaGe": 200.88,
- "yiGouMai": false,
- "huiYuanMianFei": false
- },
- {
- "biaoTi": "2023年6月广州市住宅租金动态监测报告",
- "tuPian": "https://desk-fd.zol-img.com.cn/t_s960x600c5/g4/M03/00/0C/Cg-4zFS8bC-Ie9zBADCvovJAqiEAATJ8wDX__cAMK-6184.jpg",
- "leiXing": "月度租赁简报",
- "jiaGe": 300.00,
- "yiGouMai": true,
- "huiYuanMianFei": true
- }
- ])
- // 跳转页面
- const jumpToPage = (data) => {
- if (data.toOtherApp) {
- // 跳转其他小程序
- console.log("跳转至其他小程序", data.otherAppId)
- return
- }
- if (!authStore.isAuthenticated) {
- loginModal.value = true
- return
- }
- uni.navigateTo({
- url: data.url
- })
- }
- // 确认跳转至登录
- const confirmModal = () => {
- uni.navigateTo({
- url: "/pages/login/login"
- })
- }
- const toPage = () => {
- if (!authStore.isAuthenticated) {
- uni.navigateTo({
- url: "/pages/login/login"
- })
- return
- }
- }
- const swiperClick = (data) => {
- console.log(data, "课程预告数据")
- }
- onReady(() => {
- uni.getSystemInfo({
- success(e) {
- statusBarHeight.value = e.statusBarHeight;
- let custom = uni.getMenuButtonBoundingClientRect();
- navBarHeight.value = custom.height + (custom.top - e.statusBarHeight) * 2;
- }
- })
- })
- onLoad(() => {
- uni.setTabBarBadge({ //显示数字
- index: 1, //tabbar下标
- text: '999' //数字
- })
- })
- </script>
- <style lang="scss" scoped>
- .container {
- width: 100vw;
- background-color: $uni-bg-color;
- padding: 0 20rpx 5rpx;
- }
- .slot-wrap {
- padding-left: 20rpx;
- }
- .grid-text {
- font-size: 28rpx;
- margin-top: 4rpx;
- color: $uni-text-color;
- }
- .u-card-wrap {
- background-color: $u-bg-color;
- padding: 1px;
- }
- .u-body-item {
- font-size: 32rpx;
- color: #333;
- margin: 30rpx 0;
- height: 140rpx;
- .u-body-item-content {
- position: relative;
- flex: 1;
- /* 剩余空间占用 Flex 规则 */
- min-width: 0;
- // width: 100%;
- height: inherit;
- .item-content text {
- width: inherit;
- font-size: $uni-font-size-2;
- display: block;
- margin: 10rpx;
- color: $uni-text-color;
- }
- .item-content .item-content-price {
- color: $uni-color-error;
- // font-weight: bold;
- }
- .item-button {
- position: absolute;
- right: 0;
- bottom: 0;
- font-size: 22rpx;
- .item-button-huiyuan {
- padding: 15rpx 0 5rpx;
- text-align: center;
- width: 150rpx;
- background-image: url('~@/static/images/bg-label.png');
- background-size: cover;
- background-repeat: no-repeat;
- // background-position: center;
- }
- .item-button-goumai {
- padding: 5rpx 0;
- text-align: center;
- width: 150rpx;
- background-color: #fe0000;
- border-radius: 30rpx;
- color: #fff;
- }
- .item-button-yiGouMai {
- text-align: center;
- width: 150rpx;
- padding: 5rpx 0;
- background-color: #006af4;
- border-radius: 30rpx;
- color: #fff;
- }
- }
- }
- image {
- width: 200rpx;
- flex: 0 0 200rpx;
- height: 100%;
- border-radius: 20rpx;
- margin-right: 12rpx;
- }
- }
- .course-swiper {
- height: 200px;
- .swiper-item {
- width: 33.33%;
- height: 200px;
- /* 三个一排,宽度为三分之一 */
- transition: transform 0.3s ease;
- /* 加入过渡效果 */
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .swiper-item.active {
- transform: scale(1.1);
- /* 主项放大 */
- }
- image {
- width: 80%;
- /* 图片宽度 */
- height: auto;
- }
- text {
- margin-top: 10px;
- }
- }
- .text-ellipsis {
- overflow: hidden;
- /* 隐藏超出内容 */
- white-space: nowrap;
- /* 禁止换行 */
- text-overflow: ellipsis;
- }
- .swiper-container {
- perspective: 1000px;
- }
- .swiper-item {
- transition: transform 0.5s;
- transform-style: preserve-3d;
- /* 其他样式 */
- }
- .content {
- backface-visibility: hidden;
- /* 确保背面不可见 */
- display: flex;
- justify-content: center;
- align-items: center;
- height: 200px;
- /* 设置高度 */
- font-size: 24px;
- color: white;
- background: linear-gradient(45deg, #ff5858, #f09819);
- /* 示例背景 */
- }
- // 登录模拟态
- .modal {
- .modal-content {
- padding: 50rpx;
- .content-a {
- color: #2979ff;
- }
- }
- }
- </style>
|