123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403 |
- <template>
- <view class="content">
- <view class="navbar">
- <view class="nav-item" :class="{ current: filterIndex === 0 }" @click="tabClick(0)">综合排序</view>
- <view class="nav-item" :class="{ current: filterIndex === 1 }" @click="tabClick(1)">
- <text>销量优先</text>
- <view class="p-box">
- <text :class="{ active: numberOrder === 1 && filterIndex === 1 }" class="iconfont iconfold"></text>
- <text :class="{ active: numberOrder === 2 && filterIndex === 1 }" class="iconfont iconfold xia"></text>
- </view>
- </view>
- <view class="nav-item" :class="{ current: filterIndex === 2 }" @click="tabClick(2)">
- <text>价格</text>
- <view class="p-box">
- <text :class="{ active: priceOrder === 1 && filterIndex === 2 }" class="iconfont iconfold"></text>
- <text :class="{ active: priceOrder === 2 && filterIndex === 2 }" class="iconfont iconfold xia"></text>
- </view>
- </view>
- <!-- <text class="cate-item iconfont iconapps" @click="toggleCateMask('show')"></text> -->
- </view>
- <view class="goods-list">
- <view v-for="(item, index) in goodsList" :key="index" class="goods-item" @click="navToDetailPage(item)">
- <view class="image-wrapper"><image :src="item.image" mode="aspectFill"></image></view>
- <text class="title clamp">{{ item.store_name }}</text>
- <view class="price-box">
- <text class="price">{{ item.price }}</text>
- <text>已售 {{ item.sales }}</text>
- </view>
- </view>
- </view>
- <uni-load-more :status="loadingType"></uni-load-more>
- <view class="cate-mask" :class="cateMaskState === 0 ? 'none' : cateMaskState === 1 ? 'show' : ''" @click="toggleCateMask">
- <view class="cate-content" @click.stop.prevent="stopPrevent" @touchmove.stop.prevent="stopPrevent">
- <scroll-view scroll-y class="cate-list">
- <view v-for="item in cateList" :key="item.id">
- <view class="cate-item b-b two">{{ item.cate_name }}</view>
- <view v-for="tItem in item.children" :key="tItem.id" class="cate-item b-b" :class="{ active: tItem.id == cateId }" @click="changeCate(tItem)">
- {{ tItem.cate_name }}
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue';
- import { getProducts } from '@/api/product.js';
- import { getList } from '@/api/category.js';
- export default {
- components: {
- uniLoadMore
- },
- data() {
- return {
- cateMaskState: 0, //分类面板展开状态
- loadingType: 'more', //加载更多状态
- filterIndex: 0, //查询类型
- numberOrder: 0, //1 销量从低到高 2销量从高到低
- limit: 10, //每次加载数据条数
- page: 1, //当前页数
- cateId: 0, //已选三级分类id
- priceOrder: 0, //1 价格从低到高 2价格从高到低
- cateList: [], //分类列表
- goodsList: [], //商品列表
- keyword: '', //搜索关键词
- mer_id: '', //商家id
- iszy: '' //是否是自营
- };
- },
- //下拉刷新
- onPullDownRefresh() {
- console.log('下拉刷新');
- this.loadData('refresh');
- },
- //加载更多
- onReachBottom() {
- this.loadData();
- },
- methods: {
- //加载分类
- async loadCateList(fid, sid) {
- let obj = this;
- getList({}).then(function(e) {
- console.log(e);
- e.data.forEach(function(e) {
- if (e.id == fid) {
- obj.cateList = e.children;
- return;
- }
- });
- console.log(obj.cateList);
- });
- },
- //加载商品 ,带下拉刷新和上滑加载
- async loadData(type = 'add', loading) {
- let obj = this;
- let data = {};
- console.log(obj.iszy, '123456');
- if (obj.iszy == 0) {
- data = {
- page: obj.page,
- limit: obj.limit,
- sid: obj.cateId, //分类id
- keyword: obj.keyword
- };
- } else {
- data = {
- page: obj.page,
- limit: obj.limit,
- sid: obj.cateId, //分类id
- keyword: obj.keyword,
- store_id: obj.mer_id
- };
- }
- //没有更多直接返回
- if (type === 'add') {
- if (obj.loadingType === 'nomore') {
- return;
- }
- obj.loadingType = 'loading';
- } else {
- obj.loadingType = 'more';
- }
- if (this.filterIndex == 1) {
- console.log(obj.salesOrder);
- data.salesOrder = obj.numberOrder == 1 ? 'asc' : 'desc';
- }
- if (this.filterIndex == 2) {
- console.log(obj.priceOrder);
- data.priceOrder = obj.priceOrder == 1 ? 'asc' : 'desc';
- }
- getProducts(data).then(function(e) {
- if (type === 'refresh') {
- console.log('jinru');
- // 清空数组
- obj.goodsList = [];
- }
- console.log(e.data);
- obj.goodsList = obj.goodsList.concat(e.data);
- //判断是否还有下一页,有是more 没有是nomore
- if (obj.limit == e.data.length) {
- obj.page++;
- obj.loadingType = 'more';
- } else {
- obj.loadingType = 'nomore';
- }
- if (type === 'refresh') {
- if (loading == 1) {
- uni.hideLoading();
- } else {
- uni.stopPullDownRefresh();
- }
- }
- });
- },
- //筛选点击
- tabClick(index) {
- // 防止重复点击综合排序
- if (this.filterIndex === 0 && this.filterIndex === index) {
- return;
- }
- this.filterIndex = index;
- // 判断是否为销量优先
- if (index === 1) {
- this.numberOrder = this.numberOrder === 1 ? 2 : 1;
- }
- // 判断是否为价格优先
- if (index === 2) {
- this.priceOrder = this.priceOrder === 1 ? 2 : 1;
- }
- // 初始化页数
- this.page = 1;
- // 初始化数组
- uni.pageScrollTo({
- duration: 300,
- scrollTop: 0
- });
- this.loadData('refresh', 1);
- uni.showLoading({
- title: '正在加载'
- });
- },
- //显示分类面板
- toggleCateMask(type) {
- let timer = type === 'show' ? 10 : 300;
- let state = type === 'show' ? 1 : 0;
- this.cateMaskState = 2;
- setTimeout(() => {
- this.cateMaskState = state;
- }, timer);
- },
- //分类点击
- changeCate(item) {
- this.cateId = item.id;
- this.toggleCateMask();
- uni.pageScrollTo({
- duration: 300,
- scrollTop: 0
- });
- this.loadData('refresh', 1);
- uni.showLoading({
- title: '正在加载'
- });
- },
- //详情
- navToDetailPage(item) {
- let id = item.id;
- uni.navigateTo({
- url: `/pages/product/product?id=${id}`
- });
- },
- stopPrevent() {}
- }
- };
- </script>
- <style lang="scss">
- page,
- .content {
- background: $page-color-base;
- }
- .navbar {
- // position: fixed;
- // left: 0;
- // top: var(--window-top);
- display: flex;
- width: 100%;
- height: 80rpx;
- background: #fff;
- box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.06);
- z-index: 10;
- .nav-item {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- font-size: 30rpx;
- color: $font-color-dark;
- position: relative;
- &.current {
- color: $base-color;
- &:after {
- content: '';
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- width: 120rpx;
- height: 0;
- border-bottom: 4rpx solid $base-color;
- }
- }
- }
- .p-box {
- display: flex;
- flex-direction: column;
- .iconfont {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 30rpx;
- height: 14rpx;
- line-height: 1;
- margin-left: 4rpx;
- font-size: 26rpx;
- color: #888;
- &.active {
- color: $base-color;
- }
- }
- .xia {
- transform: scaleY(-1);
- }
- }
- .cate-item {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- width: 80rpx;
- position: relative;
- font-size: 44rpx;
- &:after {
- content: '';
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- border-left: 1px solid #ddd;
- width: 0;
- height: 36rpx;
- }
- }
- }
- /* 分类 */
- .cate-mask {
- position: fixed;
- left: 0;
- top: var(--window-top);
- bottom: 0;
- width: 100%;
- background: rgba(0, 0, 0, 0);
- z-index: 9999;
- transition: 0.3s;
- .cate-content {
- width: 630rpx;
- height: 100%;
- background: #fff;
- float: right;
- transform: translateX(100%);
- transition: 0.3s;
- }
- &.none {
- display: none;
- }
- &.show {
- background: rgba(0, 0, 0, 0.4);
- .cate-content {
- transform: translateX(0);
- }
- }
- }
- .cate-list {
- display: flex;
- flex-direction: column;
- height: 100%;
- .cate-item {
- display: flex;
- align-items: center;
- height: 90rpx;
- padding-left: 30rpx;
- font-size: 28rpx;
- color: #555;
- position: relative;
- }
- .two {
- height: 64rpx;
- color: #303133;
- font-size: 30rpx;
- background: #f8f8f8;
- }
- .active {
- color: $base-color;
- }
- }
- /* 商品列表 */
- .goods-list {
- display: flex;
- flex-wrap: wrap;
- padding: 0 30rpx;
- padding-top: 20rpx;
- background: #fff;
- .goods-item {
- display: flex;
- flex-direction: column;
- width: 48%;
- padding-bottom: 40rpx;
- &:nth-child(2n + 1) {
- margin-right: 4%;
- }
- }
- .image-wrapper {
- width: 100%;
- height: 330rpx;
- border-radius: 3px;
- overflow: hidden;
- image {
- width: 100%;
- height: 100%;
- opacity: 1;
- }
- }
- .title {
- font-size: $font-lg;
- color: $font-color-dark;
- line-height: 80rpx;
- }
- .price-box {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-right: 10rpx;
- font-size: 24rpx;
- color: $font-color-light;
- }
- .price {
- font-size: $font-lg;
- color: $uni-color-primary;
- line-height: 1;
- &:before {
- content: '¥';
- font-size: 26rpx;
- }
- }
- }
- </style>
|