123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- <template>
- <view class="home">
- <tui-skeleton v-if="isRequest" loadingType="2"></tui-skeleton>
- <template v-else>
- <!-- 首页自定义导航栏 -->
- <view class="search-input" :class="{ fixed: isSticky }">
- <view class="search-content" @click="this.$api.navigateTo(clickPath)">
- <text class="iconfont icon-sousuo"></text> <view class="search-text">搜索商品</view>
- </view>
- </view>
- <!-- 主页内容 -->
- <view class="swiper-content" :class="{ top: isSticky }">
- <!-- 轮播 -->
- <banner :list="bannerImageList"></banner>
- </view>
- <!-- 商品列表 -->
- <view class="container-section">
- <view v-for="(floor, i) in productFloor" :key="i">
- <!-- 楼层标题区域 -->
- <view class="floor-title">
- <view class="title">
- <view class="name">{{ floor.title }}</view>
- <view class="desc">{{ floor.description }}</view>
- </view>
- <view class="more" @click="navToDetailPage(floor)">
- <template v-if="floor.productList.length >= 6">
- <text>更多</text> <text class="iconfont tui-icon-arrowright"></text>
- </template>
- </view>
- </view>
- <!-- 商品列表区域 -->
- <view class="product-list">
- <template v-for="(product, index) in floor.productList">
- <cm-product class="product" :key="index" :data="product"></cm-product>
- </template>
- </view>
- </view>
- </view>
- <!-- 侧边 -->
- <scroll-top :isScrollTop="isScrollTop" :bottom="160"></scroll-top>
- <!-- 活动弹窗 -->
- <cm-active-popup
- :visible="activePopupVisible"
- :image="couponActivityIcon"
- @click="activeClick"
- @closed="activeClosed"
- ></cm-active-popup>
- <!-- 领取优惠券提醒 -->
- <cm-selector-coupons
- :visible="otherCouponFlag"
- title="呵呵商城"
- subTitle="您已获得优惠券奖励,赶紧去领取吧!"
- :image="StaticUrl + 'logo.png'"
- @click="handleSelectorClick"
- ></cm-selector-coupons>
- </template>
- </view>
- </template>
- <script>
- import banner from '@/components/cm-module/homeIndex/banner.vue'
- import CmProduct from '@/components/cm-module/cm-product/cm-product.vue'
- import CmActivePopup from '@/components/cm-module/cm-active-popup/cm-active-popup.vue'
- import CmSelectorCoupons from '@/components/cm-module/cm-selector-coupons/cm-selector-coupons.vue'
- import shareEntry from '@/mixins/shareEntry.js'
- import { mapGetters, mapMutations, mapActions } from 'vuex'
- export default {
- components: {
- banner,
- CmActivePopup,
- CmSelectorCoupons,
- CmProduct
- },
- mixins: [shareEntry],
- data() {
- return {
- StaticUrl: this.$Static,
- isSticky: false,
- clickPath: '/pages/goods/search',
- productFloor: [], //商品列表
- bannerImageList: [], //轮播
- pageNum: 1,
- pageSize: 20,
- hasNextPage: false,
- isScrollTop: false,
- isRequest: true,
- activePopupVisible: false, // 活动弹窗
- tipVisible: true //优惠券领取提示
- }
- },
- onLoad(option) {
- // 处理分享链接
- this.shareHandle(option)
- setTimeout(() => {
- this.init()
- }, 1000)
- },
- computed: {
- ...mapGetters(['hasLogin', 'activePopupType', 'userId', 'otherCouponFlag', 'showCouponPopup']),
- couponActivityIcon() {
- let icon = 'news'
- switch (this.activePopupType) {
- case 1:
- icon = 'get'
- break
- case 2:
- icon = 'news'
- break
- }
- return `${this.StaticUrl}icon-coupons-${icon}.png`
- }
- },
- watch: {
- activePopupType(val) {
- if (val === 0 || !this.showCouponPopup) return
- // 定时开启弹窗
- setTimeout(() => {
- this.activePopupVisible = true
- }, 1000)
- }
- },
- methods: {
- ...mapMutations('coupon', ['updatePopupType']),
- ...mapMutations('user', ['setInviteUserId']),
- ...mapActions('cart', ['getCartNumber']),
- ...mapActions('coupon', ['getCouponActivity']),
- // 首页初始化
- async init() {
- try {
- await this.GetHomeBanner() // 轮播图
- await this.GetHomeProductList() // 楼层
- this.isRequest = false
- } catch (e) {
- this.$util.msg(e.msg, 2000)
- }
- },
- //初始化首页数据
- GetHomeBanner() {
- return this.CommonService.GetProductCarousel().then(response => {
- let data = response.data
- this.bannerImageList = data
- })
- },
- //初始化首页商品数据
- GetHomeProductList() {
- return this.ProductService.QueryProductFloor({ userId: this.userId }).then(response => {
- this.productFloor = response.data
- })
- },
- handleSelectorClick() {
- this.$api.navigateTo('/pages/user/activity/coupon-find-list')
- },
- //跳转楼层
- navToDetailPage(floor) {
- this.$api.navigateTo(`/pages/goods/goods-floorMore?floorId=${floor.floorId}&title=${floor.title}`)
- },
- // 点击了活动弹窗
- activeClick() {
- this.activePopupVisible = false
- this.updatePopupType(0)
- uni.setStorageSync('couponPopupType', new Date().getDay())
- this.$api.navigateTo('/pages/user/activity/coupon-find-list')
- },
- // 活动弹窗关闭
- activeClosed() {
- this.activePopupVisible = false
- console.log(this.activePopupType)
- this.updatePopupType(this.activePopupType - 1)
- uni.setStorageSync('couponPopupType', new Date().getDay())
- }
- },
- onPageScroll(e) {
- this.isSticky = e.scrollTop > 0
- this.isScrollTop = e.scrollTop > 400
- },
- //下拉刷新
- onPullDownRefresh() {
- this.GetHomeBanner()
- this.GetHomeProductList()
- setTimeout(() => {
- uni.stopPullDownRefresh()
- }, 2000)
- },
- onShareAppMessage(res) {
- // 加密参数
- const shareData = {
- type: 0,
- inviteUserId: this.userId
- }
- // 加密
- const state_str = encodeURIComponent(this.$crypto.encrypt(shareData))
- return {
- title: '国内外知名美容院线护肤品线上商城~',
- path: `pages/tabBar/index/index?state_str=${state_str}`,
- imageUrl: 'https://static.caimei365.com/app/mini-hehe/icon/icon-index-share.jpg'
- }
- },
- onShow() {
- if (this.hasLogin) {
- this.getCartNumber()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .home {
- background: url(https://static.caimei365.com/app/mini-hehe/icon/icon-index-bg.png) no-repeat top center;
- background-size: 750rpx auto;
- background-position-y: -50rpx;
- }
- .swiper-content {
- &.top {
- padding-top: 120rpx;
- }
- }
- .container-section {
- width: 100%;
- padding: 12rpx 24rpx;
- background-color: #f7f7f7;
- box-sizing: border-box;
- .product-list {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- .product {
- margin: 12rpx 0;
- }
- }
- .floor-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 12rpx 0;
- .title {
- .name {
- font-size: 34rpx;
- font-weight: bold;
- text-align: left;
- line-height: 49rpx;
- color: #333;
- }
- .desc {
- color: #999999;
- font-size: $font-size-26;
- }
- }
- .more {
- text {
- font-size: $font-size-26;
- text-align: right;
- line-height: 49rpx;
- color: #999999;
- }
- .iconfont {
- font-size: $font-size-30;
- color: #999999;
- }
- }
- }
- }
- .search-input {
- width: 100%;
- padding: 24rpx;
- box-sizing: border-box;
- background: linear-gradient(180deg, #fa55bf 0%, #f8458b 100%);
- &.fixed {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 99;
- }
- .search-content {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- width: 702rpx;
- height: 66rpx;
- border-radius: 33rpx;
- color: #8a8a8a;
- background: #fff;
- box-sizing: border-box;
- padding: 0 24rpx;
- .iconfont {
- font-size: $font-size-34;
- margin-right: 12rpx;
- }
- .search-text {
- font-size: $font-size-24;
- }
- }
- }
- </style>
|