2020-06-10 16:06:01 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="merchant">
|
2020-08-05 17:38:11 +08:00
|
|
|
|
<!-- <view v-if="show" class="show-hide">
|
2020-06-10 16:06:01 +08:00
|
|
|
|
<view>
|
|
|
|
|
<image></image>
|
|
|
|
|
<view>消息</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view>
|
|
|
|
|
<image></image>
|
|
|
|
|
<view>首页</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view>
|
|
|
|
|
<image></image>
|
|
|
|
|
<view>我的</view>
|
|
|
|
|
</view>
|
2020-08-05 17:38:11 +08:00
|
|
|
|
</view> -->
|
2020-07-21 21:01:42 +08:00
|
|
|
|
<view class="top" :style="{'background-image':'url(' + info.store_banner + ')'}">
|
|
|
|
|
<image :src="info.store_avatar"></image>
|
2020-06-10 16:06:01 +08:00
|
|
|
|
<view class="info">
|
2020-07-21 21:01:42 +08:00
|
|
|
|
<view class="name u-line-1">{{info.store_name}}</view>
|
|
|
|
|
<view class="num">粉丝数:{{info.store_collect}}</view>
|
2020-06-10 16:06:01 +08:00
|
|
|
|
</view>
|
2020-08-05 17:38:11 +08:00
|
|
|
|
<view class="btn" @click="attentionMember">
|
|
|
|
|
<image src="/static/image/shop/8.png"></image>
|
|
|
|
|
<view>{{ info.is_attention == 0 ? "关注" : "已关注" }}</view>
|
2020-06-10 16:06:01 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2020-08-05 17:38:11 +08:00
|
|
|
|
<view class="follow" v-if="info.attention_member && info.attention_member.length">
|
2020-06-10 16:06:01 +08:00
|
|
|
|
<view class="title">关注</view>
|
|
|
|
|
<scroll-view scroll-x class="list">
|
|
|
|
|
<view class="list-items">
|
2020-08-05 17:38:11 +08:00
|
|
|
|
<view v-for="(item, index) in info.attention_member" :key="index" class="item">
|
|
|
|
|
<image :src="item.friend_frommavatar"></image>
|
|
|
|
|
<view class="nickname u-line-1">{{ item.friend_frommname }}</view>
|
2020-06-10 16:06:01 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</scroll-view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="main">
|
2020-08-06 17:52:25 +08:00
|
|
|
|
<scroll-view class="video-image" scroll-y v-if="cur==0 && indextop.length" :style="{ height: scrollHeiht }">
|
2020-07-06 09:10:34 +08:00
|
|
|
|
<view v-for="item in indextop" :key="item.id">
|
2020-08-06 17:52:25 +08:00
|
|
|
|
<videoTop :url="item.article_pic" v-if="item.type == 2"></videoTop>
|
|
|
|
|
<imageTop v-else :url="item.article_pic"></imageTop>
|
2020-07-06 09:10:34 +08:00
|
|
|
|
</view>
|
2020-08-05 17:38:11 +08:00
|
|
|
|
<view style="display: flex;flex-wrap: wrap;" v-if="indexlist.length">
|
2020-08-06 17:52:25 +08:00
|
|
|
|
<listitem :style="{'margin-left': index%2 == 1 ? '20rpx':'0'}" v-for="(item,index) in indexlist" :key="item.id" :type="item.type" :url="item.article_pic"></listitem>
|
2020-07-06 09:10:34 +08:00
|
|
|
|
</view>
|
2020-08-06 17:52:25 +08:00
|
|
|
|
</scroll-view>
|
2020-07-02 15:39:25 +08:00
|
|
|
|
<view class="item" v-if="cur==1">
|
2020-08-05 17:38:11 +08:00
|
|
|
|
<goods :sid="sid"></goods>
|
2020-06-10 16:06:01 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="tabbar">
|
2020-08-05 17:38:11 +08:00
|
|
|
|
<view @click="switchCurrent(0)">
|
|
|
|
|
<image src="/static/image/shop/9.png"></image>
|
2020-06-10 16:06:01 +08:00
|
|
|
|
<view>商品分类</view>
|
|
|
|
|
</view>
|
2020-08-05 17:38:11 +08:00
|
|
|
|
<view @click="switchCurrent(1)">
|
|
|
|
|
<image src="/static/image/shop/10.png" v-if="cur != 1"></image>
|
|
|
|
|
<image src="/static/image/shop/13.png" v-else></image>
|
|
|
|
|
<view :style="{ color: cur == 1 ? '#FF780F' : '#999999' }">商品列表</view>
|
2020-06-10 16:06:01 +08:00
|
|
|
|
</view>
|
2020-08-05 17:38:11 +08:00
|
|
|
|
<view @click="switchCurrent(2)">
|
|
|
|
|
<image src="/static/image/shop/11.png"></image>
|
2020-06-10 16:06:01 +08:00
|
|
|
|
<view>店铺信息</view>
|
|
|
|
|
</view>
|
2020-08-05 17:38:11 +08:00
|
|
|
|
<view @click="switchCurrent(3)">
|
|
|
|
|
<image src="/static/image/shop/12.png"></image>
|
2020-06-10 16:06:01 +08:00
|
|
|
|
<view>联系客服</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
2020-08-05 17:38:11 +08:00
|
|
|
|
// import item from "@/components/shop/list/item"
|
|
|
|
|
import goods from "./goods"
|
2020-07-06 09:10:34 +08:00
|
|
|
|
import videoTop from "../components/merchant/video-top"
|
|
|
|
|
import imageTop from "../components/merchant/image-top"
|
|
|
|
|
import listitem from "../components/merchant/list-item"
|
|
|
|
|
|
2020-06-10 16:06:01 +08:00
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2020-08-05 17:38:11 +08:00
|
|
|
|
sid: '',
|
2020-06-10 16:06:01 +08:00
|
|
|
|
show: false,
|
2020-07-02 15:39:25 +08:00
|
|
|
|
cur: 0,
|
2020-08-06 17:52:25 +08:00
|
|
|
|
list: [],
|
|
|
|
|
indexlist: [],
|
|
|
|
|
indextop: [],
|
|
|
|
|
info: {},
|
|
|
|
|
page: 0,
|
|
|
|
|
scrollHeiht: '',
|
2020-06-10 16:06:01 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2020-07-02 15:39:25 +08:00
|
|
|
|
components:{
|
2020-08-05 17:38:11 +08:00
|
|
|
|
goods,
|
2020-07-06 09:10:34 +08:00
|
|
|
|
videoTop,
|
|
|
|
|
imageTop,
|
|
|
|
|
listitem
|
2020-07-02 15:39:25 +08:00
|
|
|
|
},
|
2020-08-05 17:38:11 +08:00
|
|
|
|
onPullDownRefresh() {
|
|
|
|
|
this.getStoreInfo();
|
2020-08-06 17:52:25 +08:00
|
|
|
|
this.getArticlelist();
|
|
|
|
|
// this.getStoreImgVideoList();
|
2020-08-05 17:38:11 +08:00
|
|
|
|
},
|
|
|
|
|
onNavigationBarButtonTap(e) {
|
|
|
|
|
// console.log(e.index);
|
|
|
|
|
if(e.index == 1) this.$u.route('/pageC/cart/index');
|
|
|
|
|
// if(e.index == 0) this.show = true;
|
|
|
|
|
},
|
2020-06-10 16:06:01 +08:00
|
|
|
|
methods: {
|
2020-08-05 17:38:11 +08:00
|
|
|
|
switchCurrent(current) {
|
|
|
|
|
this.cur = current;
|
|
|
|
|
if(current == 0) {
|
|
|
|
|
this.$u.route('/pageC/merchant/storeClassify', { id: this.sid });
|
|
|
|
|
} else if(current == 2) {
|
2020-08-06 17:52:25 +08:00
|
|
|
|
this.$u.route('/pageC/merchant/details', { id: this.sid });
|
2020-08-05 17:38:11 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
getStoreInfo() {
|
|
|
|
|
this.$u.api.getStoreInfo({ id: this.sid }).then((res)=>{
|
|
|
|
|
this.info = res.data;
|
|
|
|
|
uni.stopPullDownRefresh();
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getStoreImgVideoList() {
|
|
|
|
|
this.$u.api.getStoreImgVideoList({ id: this.sid }).then((res)=>{
|
|
|
|
|
if(res.data.length) {
|
|
|
|
|
this.indextop = [res.data[0], res.data[1]];
|
|
|
|
|
this.indexlist = res.data.slice(2,);
|
|
|
|
|
}
|
|
|
|
|
uni.stopPullDownRefresh();
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
attentionMember() {
|
|
|
|
|
this.$u.api.attentionMember({ member_id: this.info.member_id }).then(res => {
|
|
|
|
|
if(res.errCode == 0) {
|
|
|
|
|
this.getStoreInfo();
|
|
|
|
|
}
|
|
|
|
|
this.$u.toast(res.message);
|
|
|
|
|
})
|
|
|
|
|
},
|
2020-08-06 17:52:25 +08:00
|
|
|
|
getArticlelist() {
|
|
|
|
|
this.$u.api.getArticlelist({
|
|
|
|
|
page: this.page,
|
|
|
|
|
is_video_img: 0,
|
|
|
|
|
store_id: this.sid,
|
|
|
|
|
}).then(res => {
|
|
|
|
|
uni.stopPullDownRefresh();
|
|
|
|
|
if (res.errCode == 0) {
|
|
|
|
|
// this.articleList = res.data.list;
|
|
|
|
|
if(res.data.list.length > 0) {
|
|
|
|
|
this.indextop = [res.data.list[0]]
|
|
|
|
|
this.indextop = [res.data.list[0], res.data.list[1]];
|
|
|
|
|
}
|
|
|
|
|
if(res.data.list.length > 1) {
|
|
|
|
|
this.indextop.push(res.data.list[1]);
|
|
|
|
|
this.indexlist.push(...res.data.list.slice(2,));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
setViewHeight() {
|
|
|
|
|
const res = uni.getSystemInfoSync();
|
|
|
|
|
this.scrollHeiht = res.windowHeight - (73 + 20 + 170) + 'px';
|
|
|
|
|
}
|
2020-06-10 16:06:01 +08:00
|
|
|
|
},
|
2020-08-05 17:38:11 +08:00
|
|
|
|
onLoad(option){
|
|
|
|
|
this.sid = option.id;
|
2020-08-06 17:52:25 +08:00
|
|
|
|
// console.log(this.sid);
|
2020-08-05 17:38:11 +08:00
|
|
|
|
this.getStoreInfo();
|
2020-08-06 17:52:25 +08:00
|
|
|
|
this.getArticlelist();
|
|
|
|
|
this.setViewHeight();
|
|
|
|
|
// this.getStoreImgVideoList();
|
2020-07-02 15:39:25 +08:00
|
|
|
|
}
|
2020-06-10 16:06:01 +08:00
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.merchant {
|
2020-08-05 17:38:11 +08:00
|
|
|
|
// min-height: 100vh;
|
2020-06-10 16:06:01 +08:00
|
|
|
|
background-color: #ECECEC;
|
|
|
|
|
padding-top: calc(350rpx - var(--window-top));
|
|
|
|
|
.top {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 9;
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 350rpx;
|
|
|
|
|
background-color: #999999;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 168rpx 60rpx 0 30rpx;
|
|
|
|
|
> image {
|
|
|
|
|
margin-right: 40rpx;
|
|
|
|
|
width: 140rpx;
|
|
|
|
|
height: 140rpx;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background-color: aqua;
|
|
|
|
|
}
|
|
|
|
|
.info {
|
|
|
|
|
width: 220rpx;
|
|
|
|
|
color: rgba(255,255,255,1);
|
|
|
|
|
.name {
|
|
|
|
|
margin-bottom: 30rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
.num {
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.btn {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
width: 162rpx;
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
border: 2rpx solid rgba(255,255,255,1);
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
> image {
|
|
|
|
|
width: 28rpx;
|
|
|
|
|
height: 28rpx;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
margin-right: 14rpx;
|
|
|
|
|
}
|
|
|
|
|
> view {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: rgba(255,255,255,1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.follow {
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-bottom: 20rpx;
|
2020-07-06 09:10:34 +08:00
|
|
|
|
// height: 140rpx;
|
2020-06-10 16:06:01 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 20rpx 30rpx;
|
|
|
|
|
.title {
|
|
|
|
|
position: relative;
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: rgba(51,51,51,1);
|
|
|
|
|
margin: 0 30rpx;
|
|
|
|
|
&::before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -14rpx;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: 6rpx;
|
|
|
|
|
height: 30rpx;
|
|
|
|
|
background: rgba(255,120,15,1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.list {
|
|
|
|
|
width: 570rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.list-items {
|
|
|
|
|
display: flex;
|
|
|
|
|
.item {
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
|
margin-right: 35rpx;
|
|
|
|
|
}
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 90rpx;
|
|
|
|
|
> image {
|
|
|
|
|
width: 60rpx;
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
background-color: aqua;
|
|
|
|
|
}
|
|
|
|
|
.nickname {
|
|
|
|
|
font-size: 22rpx;
|
|
|
|
|
color: rgba(51,51,51,1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-07-02 15:39:25 +08:00
|
|
|
|
.main{
|
2020-08-05 17:38:11 +08:00
|
|
|
|
.video-image {
|
|
|
|
|
padding-bottom: 98rpx;
|
|
|
|
|
}
|
|
|
|
|
> view {
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
}
|
2020-07-02 15:39:25 +08:00
|
|
|
|
}
|
2020-06-10 16:06:01 +08:00
|
|
|
|
.tabbar {
|
|
|
|
|
border-top: 1rpx #DBDADA solid;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 98rpx;
|
2020-08-05 17:38:11 +08:00
|
|
|
|
background: rgba(251,251,251,1);
|
2020-06-10 16:06:01 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
padding: 10rpx 55rpx;
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 9;
|
|
|
|
|
> view {
|
|
|
|
|
flex: 1;
|
|
|
|
|
text-align: center;
|
|
|
|
|
> image {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: 40rpx;
|
|
|
|
|
height: 40rpx;
|
|
|
|
|
margin-bottom: 15rpx;
|
|
|
|
|
}
|
|
|
|
|
> view {
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: rgba(153,153,153,1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|