|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<view class="content">
|
|
|
<view class="top hflex acenter">
|
|
|
- <u-navbar :placeholder="true">
|
|
|
+ <u-navbar :placeholder="true" height="44">
|
|
|
<view class="u-nav-slot" slot="left">
|
|
|
<image src="/static/images/common/logo.png" class="logo"></image>
|
|
|
</view>
|
|
@@ -10,72 +10,80 @@
|
|
|
</view>
|
|
|
</u-navbar>
|
|
|
</view>
|
|
|
- <view class="tabs">
|
|
|
- <u-tabs :list="tabs" @click="clickTab" lineWidth="0" :activeStyle="{color:'#222222',fontSize: '30rpx'}" :inactiveStyle="{color: '#888888'}">
|
|
|
- </u-tabs>
|
|
|
- </view>
|
|
|
- <view class="menuList hflex acenter jbetween">
|
|
|
- <scroll-view scroll-y="true" class="menu_left">
|
|
|
- <view class="vflex">
|
|
|
- <block v-for="(item,index) in cateList" :key="index">
|
|
|
- <view class="left_item text_hide hflex acenter" :class="index == left_active? 'left_active':''" @click="clickTab1(index)">
|
|
|
- <text class="text_hide" style="width:100%; text-align: center;">{{item.name}}</text>
|
|
|
- </view>
|
|
|
- </block>
|
|
|
- </view>
|
|
|
- </scroll-view>
|
|
|
- <scroll-view scroll-y="true" class="menu_right">
|
|
|
- <!-- <u-tabs :list="cateList[left_active].sub" @click="clickTab2" lineWidth="0" :activeStyle="{
|
|
|
- background: '#E7EBFF',borderRadius: '24rpx',border: '1rpx solid #5471FF',color: '#5B77FF',padding: '0 24rpx'
|
|
|
- }" :inactiveStyle="{
|
|
|
- color: '#393939',background: '#F3F3F7',borderRadius: '24rpx',padding: '0 24rpx'}" :current="right_active">
|
|
|
- <view slot="right" style="padding-left: 4rpx;" @tap="open">
|
|
|
- <view class="tabs_text hflex acenter jcenter">全部</view>
|
|
|
- </view>
|
|
|
- </u-tabs> -->
|
|
|
- <scroll-view scroll-x="true" style="white-space: nowrap;position: relative;margin-bottom: 20rpx;width: 470rpx; height: 48rpx;">
|
|
|
- <view class="hflex acenter" v-if="cateList[left_active] && !cate_show">
|
|
|
- <view v-for="(item,index) in cateList[left_active].sub" :key="index" class="right_tab" :class="index == right_active? 'right_tab_active' : ''" @click="clickTab2(index)">{{item.name}}</view>
|
|
|
+
|
|
|
+ <scroll-view scroll-y="true" refresher-enabled="true" :refresher-triggered="triggered"
|
|
|
+ :refresher-threshold="100" refresher-background="white"
|
|
|
+ @refresherrefresh="onRefresh" @refresherrestore="onRestore" @refresherabort="onAbort" >
|
|
|
+ <view class="tabs">
|
|
|
+ <u-tabs :list="tabs" scrollable @click="clickTab" lineWidth="0" :activeStyle="{color:'#222222',fontSize: '30rpx'}" :inactiveStyle="{color: '#888888'}">
|
|
|
+ </u-tabs>
|
|
|
+ </view>
|
|
|
+ <view class="menuList hflex acenter jbetween">
|
|
|
+ <scroll-view scroll-y="true" class="menu_left">
|
|
|
+ <view class="vflex">
|
|
|
+ <block v-for="(item,index) in cateList" :key="index">
|
|
|
+ <view class="left_item text_hide hflex acenter" :class="index == left_active? 'left_active':''" @click="clickTab1(index)">
|
|
|
+ <text class="text_hide" style="width:100%; text-align: center;">{{item.name}}</text>
|
|
|
+ </view>
|
|
|
+ </block>
|
|
|
</view>
|
|
|
</scroll-view>
|
|
|
- <view class="tabs_text hflex jcenter" @tap="open" v-if="!cate_show && left_active != -1">全部</view>
|
|
|
- <view class="cate_bg" v-if="cate_show" @click="open">
|
|
|
- <view class="cate_top" @click.stop="">
|
|
|
- <view class="hflex acenter jbetween">
|
|
|
- <view class="top_left">选择分类</view>
|
|
|
- <view class="top_text" @click="open">收起</view>
|
|
|
+ <scroll-view scroll-y="true" class="menu_right">
|
|
|
+ <!-- <u-tabs :list="cateList[left_active].sub" @click="clickTab2" lineWidth="0" :activeStyle="{
|
|
|
+ background: '#E7EBFF',borderRadius: '24rpx',border: '1rpx solid #5471FF',color: '#5B77FF',padding: '0 24rpx'
|
|
|
+ }" :inactiveStyle="{
|
|
|
+ color: '#393939',background: '#F3F3F7',borderRadius: '24rpx',padding: '0 24rpx'}" :current="right_active">
|
|
|
+ <view slot="right" style="padding-left: 4rpx;" @tap="open">
|
|
|
+ <view class="tabs_text hflex acenter jcenter">全部</view>
|
|
|
</view>
|
|
|
- <view class="hflex acenter fwrap" v-if="cateList[left_active]">
|
|
|
- <block v-for="(item2,index2) in cateList[left_active].sub" :key="index2">
|
|
|
- <view class="cate hflex acenter jcenter" :class="right_active == index2?'cate_active':''" @click="clickcate(index2)">{{item2.name}}</view>
|
|
|
- </block>
|
|
|
+ </u-tabs> -->
|
|
|
+ <scroll-view scroll-x="true" style="white-space: nowrap;position: relative;margin-bottom: 20rpx;width: 470rpx; height: 48rpx;">
|
|
|
+ <view class="hflex acenter" v-if="cateList[left_active] && !cate_show">
|
|
|
+ <view v-for="(item,index) in cateList[left_active].sub" :key="index" class="right_tab" :class="index == right_active? 'right_tab_active' : ''" @click="clickTab2(index)">{{item.name}}</view>
|
|
|
+ </view>
|
|
|
+ </scroll-view>
|
|
|
+ <view class="tabs_text hflex jcenter" @tap="open" v-if="!cate_show && left_active != -1">全部</view>
|
|
|
+ <view class="cate_bg" v-if="cate_show" @click="open">
|
|
|
+ <view class="cate_top" @click.stop="">
|
|
|
+ <view class="hflex acenter jbetween">
|
|
|
+ <view class="top_left">选择分类</view>
|
|
|
+ <view class="top_text" @click="open">收起</view>
|
|
|
+ </view>
|
|
|
+ <view class="hflex acenter fwrap" v-if="cateList[left_active]">
|
|
|
+ <block v-for="(item2,index2) in cateList[left_active].sub" :key="index2">
|
|
|
+ <view class="cate hflex acenter jcenter" :class="right_active == index2?'cate_active':''" @click="clickcate(index2)">{{item2.name}}</view>
|
|
|
+ </block>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- </view>
|
|
|
- <view class="vflex">
|
|
|
- <block v-for="(item,index) in pageList" :key="index">
|
|
|
- <view class="right_item">
|
|
|
- <view class="hflex acenter">
|
|
|
- <view class="item_left">
|
|
|
- <image :src="item.cover" class="item_cover"></image>
|
|
|
- <image src="/static/images/common/img_bq1.png" v-if="item.status == 1" class="bq1"></image>
|
|
|
- <image src="/static/images/common/img_bq2.png" v-if="item.status == 0" class="bq1"></image>
|
|
|
+ <view class="vflex">
|
|
|
+ <block v-for="(item,index) in pageList" :key="index">
|
|
|
+ <view class="right_item">
|
|
|
+ <view class="hflex acenter">
|
|
|
+ <view class="item_left">
|
|
|
+ <image :src="item.cover" class="item_cover"></image>
|
|
|
+ <image src="/static/images/common/img_bq1.png" v-if="item.status == 1 && item.examine == 1" class="bq1"></image>
|
|
|
+ <image src="/static/images/common/img_bq2.png" v-if="item.status == 0 && item.examine == 1" class="bq1"></image>
|
|
|
+ </view>
|
|
|
+ <view class="vflex" style="width: calc(100% - 168rpx);">
|
|
|
+ <view class="hflex acenter jbetween" style="width: 100%;">
|
|
|
+ <view class="item_title text_hide2">{{item.name}}</view>
|
|
|
+ <view class="item_price text_red" v-if="item.examine!=1">{{item.examine == 0?'审核中':'审核失败'}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="item_price">¥{{item.price_selling}}</view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
- <view class="vflex">
|
|
|
- <view class="item_title">{{item.name}}</view>
|
|
|
- <view class="item_price">¥{{item.price_selling}}</view>
|
|
|
+ <view class="item_bottom hflex acenter jend">
|
|
|
+ <view class="btn1 hflex acenter jcenter" @click="toEdit(item.id)">编辑</view>
|
|
|
+ <view class="btn1 btn2 hflex acenter jcenter" v-if="item.status == 1 && item.examine == 1" @click="lower(item.id)">下架</view>
|
|
|
+ <view class="btn1 btn2 hflex acenter jcenter" v-if="item.status == 0 && item.examine == 1" @click="shelves(item.id)">上架</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="item_bottom hflex acenter jend">
|
|
|
- <view class="btn1 hflex acenter jcenter" @click="toEdit(item.id)">编辑</view>
|
|
|
- <view class="btn1 btn2 hflex acenter jcenter" v-if="item.status == 1" @click="lower(item.id)">下架</view>
|
|
|
- <view class="btn1 btn2 hflex acenter jcenter" v-if="item.status == 0" @click="shelves(item.id)">上架</view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- </block>
|
|
|
- </view>
|
|
|
- </scroll-view>
|
|
|
- </view>
|
|
|
+ </block>
|
|
|
+ </view>
|
|
|
+ </scroll-view>
|
|
|
+ </view>
|
|
|
+ </scroll-view>
|
|
|
<view class="hover hflex acenter jbetween">
|
|
|
<view class="hflex acenter" @click="toManager">
|
|
|
<image src="/static/images/common/sort_icon.png" class="hover_icon"></image>
|
|
@@ -110,6 +118,17 @@
|
|
|
},
|
|
|
{
|
|
|
index: 1,
|
|
|
+ status: '',
|
|
|
+ examine: '0,2',
|
|
|
+ name: '审核中',
|
|
|
+ badge: {
|
|
|
+ value: 0,
|
|
|
+ bgColor: '#EDEDED',
|
|
|
+ color: '#888888'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ index: 2,
|
|
|
status: '1',
|
|
|
name: '售卖中',
|
|
|
badge: {
|
|
@@ -119,7 +138,7 @@
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- index: 2,
|
|
|
+ index: 3,
|
|
|
status: '0',
|
|
|
name: '已下架',
|
|
|
badge: {
|
|
@@ -129,7 +148,7 @@
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- index: 3,
|
|
|
+ index: 4,
|
|
|
status: '2',
|
|
|
name: '已售罄',
|
|
|
badge: {
|
|
@@ -156,25 +175,55 @@
|
|
|
onLoad() {
|
|
|
that = this
|
|
|
that.isLogin()
|
|
|
+ this._freshing = false;
|
|
|
+ /* setTimeout(() => {
|
|
|
+ this.triggered = true;
|
|
|
+ }, 1000) */
|
|
|
// uni.startPullDownRefresh();
|
|
|
},
|
|
|
onShow() {
|
|
|
that.getCate()
|
|
|
+ if(uni.getStorageSync('spectitle')) {
|
|
|
+ uni.removeStorageSync('spectitle')
|
|
|
+ }
|
|
|
+ if(uni.getStorageSync('specData')) {
|
|
|
+ uni.removeStorageSync('specData')
|
|
|
+ }
|
|
|
},
|
|
|
- onPullDownRefresh() {
|
|
|
+ /* onPullDownRefresh() {
|
|
|
that.getCate()
|
|
|
- },
|
|
|
+ }, */
|
|
|
methods: {
|
|
|
+ onPulling(e) {
|
|
|
+ // console.log("onpulling", e);
|
|
|
+ },
|
|
|
+ onRefresh() {
|
|
|
+ that.getCate()
|
|
|
+ if (this._freshing) return;
|
|
|
+ this._freshing = true;
|
|
|
+ setTimeout(() => {
|
|
|
+ this.triggered = false;
|
|
|
+ this._freshing = false;
|
|
|
+ }, 1000)
|
|
|
+ },
|
|
|
+ onRestore() {
|
|
|
+ this.triggered = 'restore'; // 需要重置
|
|
|
+ // console.log("onRestore");
|
|
|
+ },
|
|
|
+ onAbort() {
|
|
|
+ // console.log("onAbort");
|
|
|
+ },
|
|
|
isLogin() {
|
|
|
var token = uni.getStorageSync('token')
|
|
|
if(!token) {
|
|
|
- $api.jump('/pages/login/codeLogin/codeLogin')
|
|
|
+ $api.jump('/pages/login/login/login')
|
|
|
}
|
|
|
},
|
|
|
getCate() {
|
|
|
$api.req({
|
|
|
url: '/data/api.business.Goods/getCate'
|
|
|
}, function(res) {
|
|
|
+ // uni.stopPullDownRefresh();
|
|
|
if(res.code == 1) {
|
|
|
that.cateList = res.data
|
|
|
that.getList()
|
|
@@ -195,18 +244,24 @@
|
|
|
data: {
|
|
|
name: that.search,
|
|
|
status: that.tabs[that.tab_active].status,
|
|
|
+ examine: that.tab_active == '1' ? '0,2' : '',
|
|
|
cateids: cateids,
|
|
|
page: that.page
|
|
|
}
|
|
|
}, function(res) {
|
|
|
+ that.onRestore()
|
|
|
if(res.code == 1) {
|
|
|
+ console.log('商品列表:',res);
|
|
|
for(var i=0;i<res.data.list.list.length;i++) {
|
|
|
var temp = res.data.list.list[i].cover.split('|')
|
|
|
res.data.list.list[i].cover = temp[0]
|
|
|
}
|
|
|
- for (var i=0;i<that.tabs.length;i++) {
|
|
|
- that.$set(that.tabs[i].badge,'value',res.data.count[i])
|
|
|
- }
|
|
|
+ that.$set(that.tabs[0].badge,'value',res.data.count[0])
|
|
|
+ that.$set(that.tabs[1].badge,'value',res.data.count[4])
|
|
|
+ that.$set(that.tabs[2].badge,'value',res.data.count[1])
|
|
|
+ that.$set(that.tabs[3].badge,'value',res.data.count[2])
|
|
|
+ that.$set(that.tabs[4].badge,'value',res.data.count[3])
|
|
|
+ console.log('--------',that.tabs);
|
|
|
if(that.page == 1) {
|
|
|
that.pageList = res.data.list.list
|
|
|
} else {
|
|
@@ -215,7 +270,6 @@
|
|
|
that.total = res.data.list.page.total
|
|
|
that.limit = res.data.list.page.limit
|
|
|
}
|
|
|
- uni.stopPullDownRefresh();
|
|
|
})
|
|
|
|
|
|
},
|
|
@@ -252,7 +306,7 @@
|
|
|
},
|
|
|
clickcate(index) {
|
|
|
that.right_active = index
|
|
|
- console.log(that.right_active);
|
|
|
+ // console.log(that.right_active);
|
|
|
that.page = 1
|
|
|
that.pageList = []
|
|
|
that.getList()
|
|
@@ -332,11 +386,15 @@
|
|
|
}
|
|
|
}
|
|
|
.tabs {
|
|
|
-
|
|
|
+ position: fixed;
|
|
|
+ top: 166rpx;
|
|
|
+ background: #FFF;
|
|
|
+ z-index: 99;
|
|
|
}
|
|
|
.menuList {
|
|
|
width: 100%;
|
|
|
- margin-bottom: 328rpx;
|
|
|
+ padding: 10rpx 0 0;
|
|
|
+ margin: 88rpx 0 328rpx;
|
|
|
.menu_left {
|
|
|
width: 200rpx;
|
|
|
height: 1078rpx;
|
|
@@ -470,12 +528,16 @@
|
|
|
line-clamp: 2;
|
|
|
-webkit-line-clamp: 2;
|
|
|
}
|
|
|
+ .text_red {
|
|
|
+ color: #FF2626;
|
|
|
+ }
|
|
|
.item_price {
|
|
|
margin-top: 22rpx;
|
|
|
font-size: 28rpx;
|
|
|
font-weight: bold;
|
|
|
color: #FF2626;
|
|
|
line-height: 32rpx;
|
|
|
+ white-space: nowrap;
|
|
|
}
|
|
|
.item_bottom {
|
|
|
width: 100%;
|