123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <template>
- <view class="container clearfix">
- <tui-skeleton
- v-if="skeletonShow"
- backgroundColor="#fafafa"
- borderRadius="10rpx"
- :isLoading="true"
- :loadingType="5"
- ></tui-skeleton>
- <view class="cm-member-main " v-else>
- <view class="cm-member-product clearfix">
- <view
- v-for="(pro, index) in productList"
- :key="index"
- :id="pro.productId"
- class="product-list"
- @click="productDetail(pro.productId)"
- >
- <view class="product-image"> <image :src="pro.mainImage" mode=""></image> </view>
- <view class="product-mains">
- <view class="product-name"> {{ pro.name }} </view>
- <view class="product-price" v-if="hasLogin">
- <!-- 价格 -->
- ¥{{ pro.price | NumFormat }}
- </view>
- <view v-else class="product-price-none">
- <uni-grader :grade="Number(pro.priceGrade)"></uni-grader>
- </view>
- </view>
- </view>
- </view>
- <!--加载loadding-->
- <tui-loadmore :visible="loadding" :index="3" type="black"></tui-loadmore>
- <tui-nomore :visible="!pullUpOn" :backgroundColor="'#F7F7F7'" :text="nomoreText"></tui-nomore>
- <!--加载loadding-->
- </view>
- <!-- 透明模态层 -->
- <modal-layer v-if="isModallayer"></modal-layer>
- </view>
- </template>
- <script>
- import { mapState, mapMutations } from 'vuex'
- import modalLayer from '@/components/modal-layer'
- import uniGrader from '@/components/uni-grade/uni-grade.vue'
- export default {
- components: {
- modalLayer,
- uniGrader
- },
- data() {
- return {
- skeletonShow:true,
- isModallayer: false,
- productList: [],
- nomoreText: '上拉显示更多',
- hasNextPage: false,
- loadding: false,
- pullUpOn: true,
- pullFlag: true,
- }
- },
- onLoad(option) {
- this.mallOrganizeProducts(option.id)
- },
- filters: {
- NumFormat: function(text) {
- //处理金额
- return Number(text).toFixed(2)
- }
- },
- computed: {
- ...mapState(['hasLogin'])
- },
- methods: {
- async mallOrganizeProducts(floorId){
- //初始化首页数据
- try{
- const res = await this.CommonService.mallOrganizeProducts({ floorId: floorId })
- this.productList = res.data
- this.skeletonShow = false
- }catch(error){
- //TODO handle the exception
- console.log('error',error)
- }
- },
- productDetail(productId) {
- // 跳转商品详情
- this.isModallayer = true
- this.$api.navigateTo(`/pages/goods/product?id=${productId}`)
- this.isModallayer = false
- },
- },
- onPullDownRefresh() {
- setTimeout(() => {
- this.getSvipProductPage()
- uni.stopPullDownRefresh()
- }, 200)
- },
- onReachBottom() {
- if (this.hasNextPage) {
- this.loadding = true
- this.pullUpOn = true
- this.getOnReachBottomData()
- }
- },
- onShareAppMessage(res) {
- //分享转发
- if (res.from === 'button') {
- // 来自页面内转发按钮
- }
- return {
- title: '采美超级会员,巨量优惠享不停',
- path: '/pages/user/member/member-product',
- imageUrl: 'https://static.caimei365.com/app/img/icon/icon-member-share@2x.png'
- }
- },
- onShow() {}
- }
- </script>
- <style lang="scss">
- page {
- background-color: #f7f7f7;
- }
- .container {
- width: 100%;
- height: auto;
- }
- .cm-member-main {
- width: 100%;
- box-sizing: border-box;
- padding: 0 24rpx 24rpx 24rpx;
- background-color: #f7f7f7;
- .cm-member-product {
- width: 100%;
- margin-top: 24rpx;
- .product-list {
- width: 339rpx;
- height: 516rpx;
- border-radius: 16rpx;
- float: left;
- margin-right: 24rpx;
- margin-bottom: 24rpx;
- background-color: #ffffff;
- &:nth-child(2n) {
- margin-right: 0;
- }
- .product-image {
- width: 339rpx;
- height: 339rpx;
- image {
- width: 339rpx;
- height: 339rpx;
- display: block;
- border-radius: 16rpx 16rpx 0 0;
- }
- }
- .product-mains {
- width: 100%;
- height: auto;
- box-sizing: border-box;
- padding: 0 24rpx;
- margin-top: 16rpx;
- .product-name {
- height: 80rpx;
- line-height: 40rpx;
- text-overflow: ellipsis;
- overflow: hidden;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- line-clamp: 2;
- -webkit-box-orient: vertical;
- font-size: $font-size-28;
- color: #333333;
- text-align: justify;
- }
- .product-price {
- width: 100%;
- line-height: 40rpx;
- font-size: $font-size-28;
- color: #F85050;
- margin-top: 16rpx;
- }
- .product-price-none {
- color: #f8c499;
- float: left;
- line-height: 54rpx;
- margin-top: 16rpx;
- .p-no {
- float: left;
- font-size: $font-size-24;
- color: $text-color;
- }
- }
- }
- }
- }
- }
- </style>
|