所有商品瀑布流及分类列表的改动

version/0412
fanfan 1 year ago
parent 50092595a3
commit a38d72c987
  1. 35
      pages/activity/newPeople.vue
  2. 77
      pages/cart/index.vue
  3. 124
      pages/category/index.vue
  4. 59
      pages/goods/list.vue
  5. 43
      pages/index/index.vue
  6. 59
      pages/user/vip/goods.vue

@ -28,8 +28,10 @@
:is-scroll="true" font-size="30" v-model="current" @change="onChosed"></u-tabs>
</view>
<view scroll-x class="b">
<view class="">
<view class="item" v-for="(item, index) in LeftList" :key="index" @click="goDetail(item.goods_id)">
<u-waterfall v-model="goodList" ref="uWaterfall1">
<template v-slot:left="{leftList}">
<view class="item" v-for="(item, index) in leftList" :key="index"
@click="goDetail(item.goods_id)">
<image :src="item.goods_image" mode="widthFix"></image>
<view class="title">
<text>自营</text>{{item.goods_name}}
@ -41,9 +43,10 @@
<view class="o">{{item.line_price_min?Number(item.line_price_min):'0.00'}}</view>
</view>
</view>
</view>
<view class="">
<view class="item" v-for="(item, index) in RightList" :key="index" @click="goDetail(item.goods_id)">
</template>
<template v-slot:right="{rightList}">
<view class="item" v-for="(item, index) in rightList" :key="index"
@click="goDetail(item.goods_id)">
<image :src="item.goods_image" mode="widthFix"></image>
<view class="title">
<text>自营</text>{{item.goods_name}}
@ -55,7 +58,9 @@
<view class="o">{{item.line_price_min?Number(item.line_price_min):'0.00'}}</view>
</view>
</view>
</view>
</template>
</u-waterfall>
<u-empty text="暂无数据显示哦~" v-if="goodList.length==0" mode="list"></u-empty>
</view>
</view>
<view class="newpeople-fd" @click="openPage()">
@ -78,8 +83,6 @@
},
goodList: [],
LeftList: [],
RightList: [],
menuList: [],
couList: []
}
@ -133,13 +136,8 @@
for (let i = 0; i < result.data.data.length; i++) {
result.data.data[i].goods_price_min = Number(result.data.data[i].goods_price_min);
result.data.data[i].line_price_min = Number(result.data.data[i].line_price_min)
if (i % 2 === 0) {
this.LeftList.push(result.data.data[i])
} else {
this.RightList.push(result.data.data[i])
}
}
app.goodList = result.data.data;
app.goodList = result.data.data || [];
}
})
.finally(() => app.isLoading = false)
@ -189,6 +187,9 @@
</script>
<style lang="scss" scoped>
::v-deep .u-empty {
padding: 100rpx 0;
}
.newpeople {
background: url(https://www.royaum.com.cn/static/news/newPeople-bg.png) center top no-repeat;
background-size: 100% auto;
@ -317,9 +318,6 @@
.b {
overflow: hidden;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
.item {
width: 346rpx;
@ -329,7 +327,6 @@
border: 1px solid #ECECEC;
padding: 10rpx 15rpx 25rpx 15rpx;
box-sizing: border-box;
margin-bottom: 20rpx;
&:nth-child(2n+1) {
@ -338,7 +335,7 @@
image {
width: 275rpx;
height: 275rpx;
height: 275rpx !important;
display: block;
margin: 0 auto;
}

@ -40,10 +40,12 @@
<view class="item-foot">
<view class="goods-price">
<text class="unit"></text>
<text class="value">{{ item.goods.skuInfo.goods_price?Number(item.goods.skuInfo.goods_price):item.goods.skuInfo.goods_price }}</text>
<text
class="value">{{ item.goods.skuInfo.goods_price?Number(item.goods.skuInfo.goods_price):item.goods.skuInfo.goods_price }}</text>
</view>
<view class="stepper">
<u-number-box :min="1" class='countNumber' :modelValue="item.goods_num" :step="1" @change="onChangeStepper($event, item)" />
<u-number-box :min="1" class='countNumber' :modelValue="item.goods_num" :step="1"
@change="onChangeStepper($event, item)" />
</view>
</view>
@ -62,10 +64,14 @@
<!-- 商品推荐 -->
<view class="goodsRecommend-title">
<image :src="$picUrl+'/static/user/left.png'"></image>为您推荐<image :src="$picUrl+'/static/user/right.png'"></image>
<image :src="$picUrl+'/static/user/left.png'"></image>为您推荐<image :src="$picUrl+'/static/user/right.png'">
</image>
</view>
<view class="goodsRecommend">
<view class="goodsItem" v-for="(item,index) in goodsRecommend" @click="onTargetGoods(item.goods_id)" :key="index">
<u-waterfall v-model="goodsRecommend" ref="uWaterfall1">
<template v-slot:left="{leftList}">
<view class="goodsItem" v-for="(item,index) in leftList" @click="onTargetGoods(item.goods_id)"
:key="index">
<view class="pic">
<image :src="item.goods_image" mode=""></image>
</view>
@ -81,14 +87,38 @@
<text style="font-size: 20rpx;"></text>
<text style="font-weight: bold;font-size: 36rpx;">{{item.goods_price_min}}</text>
<text style="font-size: 20rpx;margin-left:10rpx;">到手价</text>
<text style="color: #949494;font-size: 22rpx;text-decoration: line-through;">{{item.line_price_min}}</text>
<text
style="color: #949494;font-size: 22rpx;text-decoration: line-through;">{{item.line_price_min}}</text>
</view>
<!-- <view class="comment">
<text>{{item.goods_sales}}条评论</text>
<text style="margin-left:20rpx;">{{item.remaizhishu}}%好评率</text>
</view> -->
</view>
</view>
</template>
<template v-slot:right="{rightList}">
<view class="goodsItem" v-for="(item,index) in rightList" @click="onTargetGoods(item.goods_id)"
:key="index">
<view class="pic">
<image :src="item.goods_image" mode=""></image>
</view>
<view class="goodsInfo">
<view class="title">
<text v-if="item.selling_point" class="ziying">{{item.selling_point}}</text>
<text class="name">{{item.goods_name}}</text>
</view>
<view class="isExpress">
<text>包邮</text>
</view>
<view class="price">
<text style="font-size: 20rpx;"></text>
<text style="font-weight: bold;font-size: 36rpx;">{{item.goods_price_min}}</text>
<text style="font-size: 20rpx;margin-left:10rpx;">到手价</text>
<text
style="color: #949494;font-size: 22rpx;text-decoration: line-through;">{{item.line_price_min}}</text>
</view>
</view>
</view>
</template>
</u-waterfall>
<u-empty text="暂无数据显示哦~" v-if="goodsRecommend.length==0" mode="list"></u-empty>
</view>
<!-- 底部操作栏 -->
@ -372,9 +402,13 @@
}
</style>
<style lang="scss" scoped>
::v-deep .u-empty {
padding: 100rpx 0;
}
.container {
padding-bottom: 120rpx;
}
.goodsRecommend-title {
padding: 20rpx 25rpx;
display: flex;
@ -383,29 +417,31 @@
font-weight: 600;
color: #3B3B3B;
justify-content: center;
image {
width: 30rpx;
height: 30rpx;
margin: 0 10rpx;
}
}
.goodsRecommend {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
overflow: hidden;
padding: 10rpx 25rpx 25rpx;
.goodsItem {
width: 340rpx;
width: 338rpx;
border-radius: 8rpx;
overflow: hidden;
background-color: #ffffff;
margin-bottom: 24rpx;
padding: 20rpx;
box-sizing: border-box;
.pic {
width: 100%;
text-align: center;
image {
// width:100%;
width: 256rpx;
@ -413,11 +449,13 @@
}
}
.goodsInfo {
.title {
display: flex;
align-items: center;
margin-top: 14rpx;
.ziying {
padding: 4rpx 10rpx;
background: #FF4438;
@ -428,23 +466,22 @@
color: #FFFFFF;
}
.name {
margin-left: 6rpx;
font-size: 24rpx;
font-weight: 400;
color: #1E1E1E;
flex: 1;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
.isExpress {
height: 30rpx;
display: flex;
align-items: center;
margin: 10rpx 0;
text {
display: inline-block;
width: 44rpx;
@ -461,11 +498,13 @@
}
}
.price {
color: #F21A1C;
display: flex;
align-items: baseline;
}
.comment {
margin-top: 6rpx;
font-size: 22rpx;
@ -476,6 +515,7 @@
}
}
}
//
.head-info {
display: flex;
@ -580,6 +620,7 @@
vertical-align: bottom;
color: $main-bg;
flex: 1;
.unit {
font-size: 24rpx;
}

@ -7,18 +7,16 @@
</view>
</view>
<view class="u-menu-wrap">
<scroll-view scroll-y scroll-with-animation class="u-tab-view menu-scroll-view" :scroll-top="scrollTop"
:scroll-into-view="itemId">
<scroll-view scroll-y scroll-with-animation class="u-tab-view menu-scroll-view">
<view v-for="(item,index) in tabbar" :key="index" class="u-tab-item"
:class="[current == index ? 'u-tab-item-active' : '']" @tap.stop="swichMenu(index)">
<text class="u-line-1">{{item.name}}</text>
</view>
</scroll-view>
<scroll-view :scroll-top="scrollRightTop" scroll-y scroll-with-animation class="right-box"
@scroll="rightScroll">
<scroll-view :scroll-top="scrollRightTop" scroll-y scroll-with-animation class="right-box">
<view class="page-view">
<view class="class-item" :id="'item' + index" v-for="(item , index) in tabbar" :key="index">
<view class="item-box" v-for="(item1, index1) in item.children" :key="index1">
<view class="class-item">
<view class="item-box" v-for="(item1, index1) in tabbarList.children" :key="index1">
<view class="item-title">
<text>{{item1.name}}</text>
</view>
@ -43,18 +41,10 @@
export default {
data() {
return {
scrollTop: 0, //tab
oldScrollTop: 0,
current: 0, //
menuHeight: 0, //
menuItemHeight: 0, // item
itemId: '', // scroll-viewid
tabbar: [],
menuItemPos: [],
arr: [],
scrollRightTop: 0, // scroll-view
timer: null, //
tabbarList: [],
scrollRightTop: 0,
}
},
onLoad() {
@ -78,17 +68,10 @@
},
//
async swichMenu(index) {
console.log(index)
if (this.arr.length == 0) {
await this.getMenuItemTop();
}
if (index == this.current) return;
this.scrollRightTop = this.oldScrollTop;
this.$nextTick(function() {
this.tabbarList = []
this.current = index;
this.scrollRightTop = this.arr[index];
this.leftMenuStatus(index);
})
this.tabbarList = this.tabbar[index];
this.getMenuItemTop()
},
getGoodsTypeList() {
const that = this;
@ -97,105 +80,25 @@
// is_hot: 0
})
.then(res => {
//
console.log(res, '分类数据')
that.tabbar = res.data.list;
that.tabbarList = res.data.list[0]
})
.catch(reject)
})
},
//
getElRect(elClass, dataVal) {
new Promise((resolve, reject) => {
const query = uni.createSelectorQuery().in(this);
query.select('.' + elClass).fields({
size: true
}, res => {
// resnull
if (!res) {
setTimeout(() => {
this.getElRect(elClass);
}, 10);
return;
}
this[dataVal] = res.height;
resolve();
}).exec();
})
},
//
async observer() {
this.tabbar.map((val, index) => {
let observer = uni.createIntersectionObserver(this);
// scroll-viewiditemxxright-box
// .right-box
observer.relativeTo('.right-box', {
top: 0
}).observe('#item' + index, res => {
if (res.intersectionRatio > 0) {
let id = res.id.substring(4);
this.leftMenuStatus(id);
}
})
})
},
//
async leftMenuStatus(index) {
// 0
if (this.menuHeight == 0 || this.menuItemHeight == 0) {
await this.getElRect('menu-scroll-view', 'menuHeight');
await this.getElRect('u-tab-item', 'menuItemHeight');
}
// item
this.scrollTop = index * this.menuItemHeight + this.menuItemHeight / 2 - this.menuHeight / 2;
this.current = index-1;
},
// item
getMenuItemTop() {
new Promise(resolve => {
let selectorQuery = uni.createSelectorQuery();
selectorQuery.selectAll('.class-item').boundingClientRect((rects) => {
// rects[](selectAll)
if (!rects.length) {
setTimeout(() => {
this.getMenuItemTop();
}, 10);
return;
}
rects.forEach((rect) => {
// rects[0].top()
this.arr.push(rect.top - rects[0].top);
console.log(rects[0].top)
this.scrollRightTop = rects[0].top
resolve();
})
}).exec()
})
},
//
async rightScroll(e) {
this.oldScrollTop = e.detail.scrollTop;
if (this.arr.length == 0) {
await this.getMenuItemTop();
}
if (this.timer) return;
if (!this.menuHeight) {
await this.getElRect('menu-scroll-view', 'menuHeight');
}
setTimeout(() => { //
this.timer = null;
// scrollHeight
let scrollHeight = e.detail.scrollTop;
for (let i = 0; i < this.arr.length; i++) {
let height1 = this.arr[i];
let height2 = this.arr[i + 1];
// height2
if (!height2 || scrollHeight >= height1 && scrollHeight < height2) {
this.leftMenuStatus(i+1);
return;
}
}
}, 10)
}
}
}
</script>
@ -276,12 +179,11 @@
}
.page-view {
padding: 0 16rpx 16rpx;
overflow: hidden;
}
.class-item {
margin-bottom: 12rpx;
margin-bottom: 30rpx;
background-color: #fff;
padding: 20rpx;
border-radius: 8rpx;

@ -57,6 +57,7 @@
<!-- 商品列表 -->
<view class="goods-list clearfix" :class="['column-' + (showView ? '1' : '2')]">
<view v-if="showView">
<view class="goods-item" v-for="(item, index) in list.data" :key="index"
@click="onTargetDetail(item.goods_id)">
<!-- 单列显示 -->
@ -89,8 +90,15 @@
</view>
</view>
</view>
</view>
</view>
<view v-else>
<u-waterfall v-model="list.data" ref="uWaterfall1">
<template v-slot:left="{leftList}">
<view class="goods-item" v-for="(item, index) in leftList" :key="index"
@click="onTargetDetail(item.goods_id)">
<!-- 多列显示 -->
<view v-else class="">
<view class="">
<!-- 商品图片 -->
<view class="goods-image">
<image class="image" mode="aspectFill" :src="item.goods_image"></image>
@ -98,7 +106,7 @@
<view class="detail">
<!-- 商品名称 -->
<view class="goods-name">
<text class="twoline-hide">{{ item.goods_name }}</text>
<text>{{ item.goods_name }}</text>
</view>
<view class="shipping">
包邮
@ -122,12 +130,52 @@
<text v-if="item.line_price_min > 0"
class="line-price col-9 f-24">{{ item.line_price_min>0?Number(item.line_price_min):'' }}</text>
</view>
<!-- <view class="evaluate">
200+条评论 99%好评率
</view>
</view>
</view>
</template>
<template v-slot:right="{rightList}">
<view class="goods-item" v-for="(item, index) in rightList" :key="index"
@click="onTargetDetail(item.goods_id)">
<!-- 多列显示 -->
<view class="">
<!-- 商品图片 -->
<view class="goods-image">
<image class="image" mode="aspectFill" :src="item.goods_image"></image>
</view>
<view class="detail">
<!-- 商品名称 -->
<view class="goods-name">
<text>{{ item.goods_name }}</text>
</view>
<view class="shipping">
包邮
</view>
<!-- <view class="goodsInfo">
<view class="oneTip tip">
85英寸
</view>
<view class="twoTip tip">
量子电视
</view>
<view class="threeTip tip">
4K电视
</view>
</view> -->
<!-- 商品价格 -->
<view class="detail-price oneline-hide">
<text
class="goods-price f-30 col-m">{{ item.goods_price_min>0?Number(item.goods_price_min):'' }}
<text class="delPrice">到手价</text></text>
<text v-if="item.line_price_min > 0"
class="line-price col-9 f-24">{{ item.line_price_min>0?Number(item.line_price_min):'' }}</text>
</view>
</view>
</view>
</view>
</template>
</u-waterfall>
</view>
<u-empty text="暂无数据显示哦~" v-if="list.data.length==0" mode="list"></u-empty>
</view>
</mescroll-body>
@ -538,7 +586,7 @@
//
.goods-list.column-2 {
.goods-item {
width: 50%;
// width: 50%;
}
}
@ -577,7 +625,6 @@
background: #fff;
.goods-name {
min-height: 68rpx;
line-height: 1.3;
white-space: normal;
color: #484848;

@ -55,7 +55,8 @@
<text>{{item.text}}</text>
</view>
</view>
<view class="gridRows secondRows" :style="{'height': isToggle == false?catagoryList.length >0?'160rpx':'auto':'auto'}">
<view class="gridRows secondRows"
:style="{'height': isToggle == false?catagoryList.length >0?'160rpx':'auto':'auto'}">
<view class="gridItem" v-for="(item,index) in catagoryList" :key="index"
@click="goJump('/pages/goods/list?categoryId=' + item.category_id)">
<view class="imageC">
@ -85,7 +86,8 @@
</view>
<view class="left">
<text class="flag">¥</text>
<text class="num">{{couList.reduce_price?Number(couList.reduce_price):couList.reduce_price}}</text>
<text
class="num">{{couList.reduce_price?Number(couList.reduce_price):couList.reduce_price}}</text>
<view class="couponName">
<view>{{couList.name}}</view>
<view style="font-size: 20rpx;">领取后{{couList.expire_day}}天内有效</view>
@ -233,8 +235,10 @@
</view>
</view>
<view class="goodsRecommend">
<view class="">
<view class="goodsItem" v-for="(item,index) in LeftList" @click="goDetails(item)" :key="index">
<u-waterfall v-model="goodsRecommend" ref="uWaterfall1">
<template v-slot:left="{leftList}">
<view class="goodsItem" v-for="(item,index) in leftList" @click="goDetails(item)"
:key="index">
<view class="pic">
<image :src="item.goods_image" mode="widthFix"></image>
</view>
@ -248,16 +252,18 @@
</view>
<view class="price">
<text style="font-size: 20rpx;"></text>
<text style="font-weight: bold;font-size: 36rpx;">{{item.goods_price_min}}</text>
<text
style="font-weight: bold;font-size: 36rpx;">{{item.goods_price_min}}</text>
<text style="font-size: 20rpx;margin-left:10rpx;">到手价</text>
<text
style="color: #949494;font-size: 22rpx;text-decoration: line-through;">{{item.line_price_min}}</text>
</view>
</view>
</view>
</view>
<view class="">
<view class="goodsItem" v-for="(item,index) in RightList" @click="goDetails(item)" :key="index">
</template>
<template v-slot:right="{rightList}">
<view class="goodsItem" v-for="(item,index) in rightList" @click="goDetails(item)"
:key="index">
<view class="pic">
<image :src="item.goods_image" mode="widthFix"></image>
</view>
@ -271,15 +277,17 @@
</view>
<view class="price">
<text style="font-size: 20rpx;"></text>
<text style="font-weight: bold;font-size: 36rpx;">{{item.goods_price_min}}</text>
<text
style="font-weight: bold;font-size: 36rpx;">{{item.goods_price_min}}</text>
<text style="font-size: 20rpx;margin-left:10rpx;">到手价</text>
<text
style="color: #949494;font-size: 22rpx;text-decoration: line-through;">{{item.line_price_min}}</text>
</view>
</view>
</view>
</view>
</template>
</u-waterfall>
<u-empty text="暂无数据显示哦~" v-if="goodsRecommend.length==0" mode="list"></u-empty>
</view>
</view>
</view>
@ -545,8 +553,6 @@
seckillList: [],
xinpinList: [],
goodsRecommend: [],
LeftList: [],
RightList: [],
isToggle: false,
//
count: 4,
@ -761,11 +767,6 @@
arr[i].goods_price_max = Number(arr[i].goods_price_max)
arr[i].line_price_min = Number(arr[i].line_price_min);
arr[i].line_price_max = Number(arr[i].line_price_max)
if (i % 2 === 0) {
this.LeftList.push(arr[i])
} else {
this.RightList.push(arr[i])
}
}
}
this.goodsRecommend = arr
@ -1065,6 +1066,7 @@
width: 100%;
overflow-x: auto;
overflow-y: hidden;
.tabItem {
margin-right: 30rpx;
position: relative;
@ -1073,6 +1075,7 @@
font-weight: 400;
padding: 0 20rpx;
color: #282828;
.flag {
position: absolute;
bottom: -13px;
@ -1677,9 +1680,7 @@
}
.goodsRecommend {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
overflow: hidden;
margin-top: 20rpx;
.goodsItem {

@ -29,21 +29,39 @@
<view class="item" @click="tabFilter(3,7)" :class="filterIndex==3?'item-on':''">综合</view>
</view>
<scroll-view scroll-y class="l" @scrolltolower="lowerthreshold">
<view class="item" v-for="(item,index) in list" v-if="list.length>0" :key="index"
<u-waterfall v-model="list" ref="uWaterfall1">
<template v-slot:left="{leftList}">
<view class="item" v-for="(item,index) in leftList" :key="index"
@click="goodsDetail(item.goods_id)" :isLoading="isLoading">
<image :src="item.goods_image"></image>
<view class="title">
<text>自营</text>{{item.goods_name}}
</view>
<view class="price">
<view class="n"><text>{{item.goods_price_min?Number(item.goods_price_min):''}}</text>到手价</view>
<view class="n">
<text>{{item.goods_price_min?Number(item.goods_price_min):''}}</text>到手价
</view>
<view class="o">{{item.line_price_min?Number(item.line_price_min):''}}</view>
</view>
<!-- <view class="desc">
{{item.goods_sales}}+条评论 {{item.remaizhishu}}%好评率
</view> -->
</view>
<u-empty text="暂无数据显示哦~" v-else mode="list"></u-empty>
</template>
<template v-slot:right="{rightList}">
<view class="item" v-for="(item,index) in rightList" :key="index"
@click="goodsDetail(item.goods_id)" :isLoading="isLoading">
<image :src="item.goods_image"></image>
<view class="title">
<text>自营</text>{{item.goods_name}}
</view>
<view class="price">
<view class="n">
<text>{{item.goods_price_min?Number(item.goods_price_min):''}}</text>到手价
</view>
<view class="o">{{item.line_price_min?Number(item.line_price_min):''}}</view>
</view>
</view>
</template>
</u-waterfall>
<u-empty text="暂无数据显示哦~" v-if="list.length==0" mode="list"></u-empty>
<u-divider v-if="list.length == total && total>=1">没有更多了</u-divider>
</scroll-view>
</view>
@ -109,7 +127,9 @@
//
getCategoryList() {
const app = this;
Api.category({is_in_store:this.type==1?1:''})
Api.category({
is_in_store: this.type == 1 ? 1 : ''
})
.then(result => {
app.categoryList = result.data.list;
if (result.data.list && result.data.list.length > 0) {
@ -136,7 +156,7 @@
}
Api.brandList(pamars)
.then(result => {
let arr = result.data.data;
let arr = result.data.data ||[];
app.list = app.arrayUnique([...app.list, ...arr], 'goods_id')
app.total = result.data.total
})
@ -144,13 +164,13 @@
},
//
arrayUnique(arr, name) {
    var hash = {};
    return arr.reduce(function (item, next) {
        hash[next[name]]
            ? ""
            : (hash[next[name]] = true && item.push(next));
        return item;
    }, []);
var hash = {};
return arr.reduce(function(item, next) {
hash[next[name]] ?
"" :
(hash[next[name]] = true && item.push(next));
return item;
}, []);
},
tabItem(index, item) {
this.tabIndex = index;
@ -204,6 +224,10 @@
</script>
<style lang="scss" scoped>
::v-deep .u-empty {
padding: 100rpx 0;
}
.goods {
.slot-wrap {
width: 400rpx;
@ -319,7 +343,7 @@
.item {
width: 270rpx;
height: 389rpx;
// height: 389rpx;
background: #FFFFFF;
border-radius: 7rpx;
opacity: 1;
@ -344,9 +368,6 @@
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #1E1E1E;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
text {
background-color: #F34A40;

Loading…
Cancel
Save