mine concerns 8.15
This commit is contained in:
@@ -1,259 +1,121 @@
|
||||
<template>
|
||||
<view class="concerns">
|
||||
<view>
|
||||
<u-tabs-swiper ref="uTabs" :list="list" :current="current" @change="tabsChange" :is-scroll="false"
|
||||
swiperWidth="750" active-color="#FF780F"></u-tabs-swiper>
|
||||
<view class="tabs-top u-border-bottom">
|
||||
<u-tabs ref="uTabs" :show-bar="false" :list="list" font-size="32" :current="current" @change="tabsChange" :is-scroll="false"
|
||||
swiperWidth="750" active-color="#FF780F"></u-tabs>
|
||||
</view>
|
||||
<swiper :current="swiperCurrent" @transition="transition" @animationfinish="animationfinish" style="width:750rpx" :style="{'height':height}">
|
||||
<swiper-item class="swiper-item" >
|
||||
|
||||
<scroll-view scroll-y style="height: 100%;width: 100%;" class="store" @scrolltolower="shangjiaapi()">
|
||||
<view @touchmove.stop="">
|
||||
<u-swipe-action
|
||||
v-for="(item, index) in shangjia" :key="index"
|
||||
:index='item.friend_tomid'
|
||||
:options="options"
|
||||
:show="item.show"
|
||||
@click="removeFavorite"
|
||||
@open="open"
|
||||
>
|
||||
<view class="item u-border-bottom" @click="toDetailsPage(item.friend_store_id)">
|
||||
<image :src="item.friend_tomavatar"></image>
|
||||
<!-- 此层wrap在此为必写的,否则可能会出现标题定位错误 -->
|
||||
<view class="title-wrap">
|
||||
<view class="item-name u-line-1">{{ item.friend_tomname }}</view>
|
||||
<view class="item-date">
|
||||
<image src="@/pageE/static/mine/26.png"></image>
|
||||
<view>{{ item.friend_tomavatar | date }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</u-swipe-action>
|
||||
<view style="height:20rpx"></view>
|
||||
<u-loadmore :status="sstatus" bg-color="#ECECEC" v-if="shangjia.length" />
|
||||
|
||||
</view>
|
||||
|
||||
<u-empty mode="list" v-if="!shangjia.length" color="#000" img-width="200" font-size="30"></u-empty>
|
||||
</scroll-view>
|
||||
</swiper-item>
|
||||
<swiper-item class="swiper-item" >
|
||||
<scroll-view scroll-y style="height: 100%;width: 100%;" @scrolltolower="darenapi()">
|
||||
<view class="concerns-container">
|
||||
<view v-for="(info, index) in daren" :key="index">
|
||||
<view class="daren-item">
|
||||
<image class="head" :src="info.friend_tomavatar" @click="viewDetails({ id: info.friend_tomid, type: info.role })"></image>
|
||||
<text class="name" @click="viewDetails({ id: info.friend_tomid, type: info.role })">{{ info.friend_tomname || '' }}</text>
|
||||
<view class="guanzhu" @click="changeType(info.friend_tomid)" v-if="info.friend_followstate == 1">取消关注</view>
|
||||
</view>
|
||||
</view>
|
||||
<u-loadmore :status="dstatus" bg-color="#ECECEC" v-if="daren.length" />
|
||||
<scroll-view v-if="current==0" scroll-y style="height: 100%;width: 100%;" class="store" @scrolltolower="onreachBottom">
|
||||
<storeViwe ref="store"></storeViwe>
|
||||
</scroll-view>
|
||||
<scroll-view v-else scroll-y style="height: 100%;width: 100%;" @scrolltolower="onreachBottom">
|
||||
<view class="concerns-container">
|
||||
<view v-for="(info, index) in daren" :key="index">
|
||||
<view class="daren-item">
|
||||
<image class="head" :src="info.friend_tomavatar" @click="toDetailsPage({ id: info.friend_tomid })"></image>
|
||||
<text class="name" @click="toDetailsPage({ id: info.friend_tomid })">{{ info.friend_tomname || '' }}</text>
|
||||
<view class="guanzhu" @click="changeType(info.friend_tomid)" v-if="info.friend_followstate == 1">取消关注</view>
|
||||
</view>
|
||||
<u-empty mode="list" v-if="!daren.length" color="#000" img-width="200" font-size="30"></u-empty>
|
||||
</scroll-view>
|
||||
</swiper-item>
|
||||
</swiper>
|
||||
|
||||
</view>
|
||||
<u-loadmore :status="loadStatus" bg-color="#FFFFFF" v-if="daren.length > 9" @loadmore="loadmore" />
|
||||
</view>
|
||||
<u-empty mode="list" v-if="!daren.length" color="#000" img-width="200" font-size="30" margin-top="200"></u-empty>
|
||||
</scroll-view>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
import storeViwe from './storeConcerns'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
list: [{name:"商家"},{name:"达人"}],
|
||||
current: 0, // tabs组件的current值,表示当前活动的tab选项
|
||||
swiperCurrent: 0, // swiper组件的current值,表示当前那个swiper-item是活动的
|
||||
daren:[],
|
||||
list: [{ name: "商家" }, { name: "达人" }],
|
||||
daren: [],
|
||||
shangjia:[],
|
||||
height:0,
|
||||
height: 0,
|
||||
show: false,
|
||||
options: [
|
||||
{
|
||||
text: '删除',
|
||||
style: {
|
||||
backgroundColor: '#FF3131'
|
||||
}
|
||||
}
|
||||
],
|
||||
dpage:1,
|
||||
spage:1,
|
||||
dstatus: 'loadmore',
|
||||
sstatus: 'loadmore',
|
||||
current: 0,
|
||||
page: 1,
|
||||
loadStatus: 'loadmore',
|
||||
timer: true,
|
||||
}
|
||||
},
|
||||
components: {
|
||||
storeViwe,
|
||||
},
|
||||
onShow() {
|
||||
this.dstatus = "loadmore"
|
||||
this.sstatus = "loadmore"
|
||||
this.dpage = 1
|
||||
this.spage = 1
|
||||
this.shangjiaapi();
|
||||
this.darenapi();
|
||||
this.loadStatus = "loadmore"
|
||||
this.page = 1
|
||||
this.getPeopleList();
|
||||
},
|
||||
onLoad(){
|
||||
let that = this
|
||||
|
||||
uni.getSystemInfo({
|
||||
success(res){
|
||||
that.height = res.windowHeight - (res.windowWidth / 750 * 80) + 'px'
|
||||
}
|
||||
})
|
||||
this.setViewHeight();
|
||||
},
|
||||
// 下拉刷新
|
||||
|
||||
methods: {
|
||||
setViewHeight() {
|
||||
const res = uni.getSystemInfoSync();
|
||||
this.height = res.windowHeight - (res.windowWidth / 750 * 80) + 'px';
|
||||
},
|
||||
// tabs通知swiper切换
|
||||
tabsChange(index) {
|
||||
this.swiperCurrent = index;
|
||||
},
|
||||
// swiper-item左右移动,通知tabs的滑块跟随移动
|
||||
transition(e) {
|
||||
let dx = e.detail.dx;
|
||||
this.$refs.uTabs.setDx(dx);
|
||||
},
|
||||
// 由于swiper的内部机制问题,快速切换swiper不会触发dx的连续变化,需要在结束时重置状态
|
||||
// swiper滑动结束,分别设置tabs和swiper的状态
|
||||
animationfinish(e) {
|
||||
let current = e.detail.current;
|
||||
this.$refs.uTabs.setFinishCurrent(current);
|
||||
this.swiperCurrent = current;
|
||||
this.current = current;
|
||||
this.current = index;
|
||||
},
|
||||
// scroll-view到底部加载更多
|
||||
onreachBottom() {
|
||||
|
||||
if(this.current == 0) this.$refs.loadmore();
|
||||
else if(this.current == 1) this.loadmore();
|
||||
},
|
||||
shangjiaapi() {
|
||||
if(this.sstatus == "loading" || this.sstatus == 'nomore') return
|
||||
this.sstatus = "loading"
|
||||
this.$forceUpdate();
|
||||
this.$u.api.attentionMemberList({role:2,page:this.spage}).then(res => {
|
||||
console.log(res)
|
||||
if(res.errCode == 0) {
|
||||
this.spage > 1 ? this.shangjia.push(...res.data.data) : (this.shangjia = res.data.data);
|
||||
this.sstatus = "loadmore"
|
||||
|
||||
if(res.data.data.length == 0){
|
||||
this.sstatus = 'nomore'
|
||||
}
|
||||
this.spage++
|
||||
this.$forceUpdate();
|
||||
}
|
||||
loadmore() {
|
||||
if(!this.timer) return false;
|
||||
this.timer = false;
|
||||
this.loadStatus = "loading";
|
||||
this.page++;
|
||||
this.getPeopleList({ load: 'loadmore' }).then(length => {
|
||||
this.loadStatus = "nomore";
|
||||
if(length == 0) this.page--;
|
||||
}).catch(() => {
|
||||
this.loadStatus = "nomore";
|
||||
this.page--;
|
||||
})
|
||||
},
|
||||
darenapi() {
|
||||
this.$u.api.attentionMemberList({role:3,page:this.dpage}).then(res => {
|
||||
if(this.dstatus == "loading" || this.dstatus == 'nomore') return
|
||||
this.dstatus = "loading"
|
||||
this.$forceUpdate();
|
||||
|
||||
console.log(this.dstatus)
|
||||
console.log(res)
|
||||
if(res.errCode == 0) {
|
||||
this.dpage > 1 ? this.daren.push(...res.data.data) : (this.daren = res.data.data);
|
||||
this.dstatus = "loadmore"
|
||||
|
||||
if(res.data.data.length == 0){
|
||||
this.dstatus = 'nomore'
|
||||
}
|
||||
this.dpage++
|
||||
this.$forceUpdate();
|
||||
|
||||
}
|
||||
|
||||
async getPeopleList({ load = 'reload' } = {}) {
|
||||
const res = await this.$u.api.attentionMemberList({
|
||||
role: 3,
|
||||
page: this.page
|
||||
})
|
||||
this.timer = true;
|
||||
if(res.errCode == 0) {
|
||||
if(load == 'reload') this.daren = res.data.data;
|
||||
else if(load == 'loadmore') this.daren.push(...res.data.data);
|
||||
}
|
||||
return res.data.data.length;
|
||||
},
|
||||
viewDetails({ id, type }) {
|
||||
let src = type == 3 ? 'pageB/details/index' : 'pageC/merchant/index';
|
||||
this.$u.route(src, {
|
||||
id: id
|
||||
});
|
||||
},
|
||||
// 取消关注
|
||||
changeType(id) {
|
||||
console.log(id);
|
||||
// console.log(id);
|
||||
this.$u.api.attentionMember({
|
||||
member_id: id
|
||||
}).then(res => {
|
||||
this.$u.toast(res.message);
|
||||
this.attentionMemberList();
|
||||
})
|
||||
},
|
||||
removeFavorite(id) {
|
||||
console.log(id)
|
||||
this.$u.api.attentionMemberRemove({
|
||||
id: id,
|
||||
type: 'store'
|
||||
}).then(res => {
|
||||
console.log(res)
|
||||
this.$u.toast(res.message);
|
||||
if(res.errCode == 0) {
|
||||
this.sstatus = "loadmore"
|
||||
this.spage = 1
|
||||
this.shangjiaapi();
|
||||
}
|
||||
this.getPeopleList();
|
||||
})
|
||||
},
|
||||
toDetailsPage(id) {
|
||||
this.$u.route('pageC/merchant/index', {
|
||||
this.$u.route('pageB/details/index', {
|
||||
id: id
|
||||
});
|
||||
},
|
||||
open(index) {
|
||||
// 先将正在被操作的swipeAction标记为打开状态,否则由于props的特性限制,
|
||||
// 原本为'false',再次设置为'false'会无效
|
||||
this.shangjia[index].show = true;
|
||||
this.shangjia.map((val, idx) => {
|
||||
if(index != idx) this.list[idx].show = false;
|
||||
})
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.store {
|
||||
background-color: #ECECEC;
|
||||
.item {
|
||||
padding: 30rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
> image {
|
||||
width: 80rpx;
|
||||
height: 80rpx;
|
||||
border-radius: 50%;
|
||||
flex-shrink: 0;
|
||||
margin-right: 21rpx;
|
||||
}
|
||||
.title-wrap {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
.item-name {
|
||||
width: 260rpx;
|
||||
font-size: 30rpx;
|
||||
color: rgba(51,51,51,1);
|
||||
}
|
||||
.item-date {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
> image {
|
||||
margin-right: 25rpx;
|
||||
width: 24rpx;
|
||||
height: 24rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.concerns {
|
||||
background-color: #ECECEC;
|
||||
background-color: #FFFFFF;
|
||||
.store {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
.concerns-container {
|
||||
padding: 30rpx;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
// &:not(:nth-child(3n)) {
|
||||
// margin-right: 20rpx;
|
||||
// }
|
||||
margin-left: -20rpx;
|
||||
.daren-item{
|
||||
width: 215rpx;
|
||||
|
||||
176
pageE/mine/storeConcerns.vue
Normal file
176
pageE/mine/storeConcerns.vue
Normal file
@@ -0,0 +1,176 @@
|
||||
<template>
|
||||
<view class="collection-item">
|
||||
<u-swipe-action
|
||||
v-for="(item, index) in list" :key="index"
|
||||
:index='index'
|
||||
:show="item.show"
|
||||
:options="options"
|
||||
@click="removeFavorite"
|
||||
@open="open"
|
||||
>
|
||||
<view class="item u-border-bottom" @click="viewStoreDetails(item)">
|
||||
<image :src="item.friend_tomavatar"></image>
|
||||
<!-- 此层wrap在此为必写的,否则可能会出现标题定位错误 -->
|
||||
<view class="title-wrap">
|
||||
<view class="item-top u-line-1">{{ item.friend_tomname }}</view>
|
||||
<view class="item-bottom">
|
||||
<view class="item-date">
|
||||
<image src="@/pageE/static/mine/26.png"></image>
|
||||
<view>{{ item.friend_tomavatar | date }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</u-swipe-action>
|
||||
<u-empty mode="list" v-if="!list.length" color="#000" img-width="200" font-size="30" margin-top="200"></u-empty>
|
||||
<u-loadmore :status="loadStatus" bg-color="#FFFFFF" v-if="list.length > pageSize" @loadmore="loadmore" />
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
pageSize: 12,
|
||||
list: [],
|
||||
options: [
|
||||
{
|
||||
text: '删除',
|
||||
style: {
|
||||
backgroundColor: '#FF3131'
|
||||
}
|
||||
}
|
||||
],
|
||||
page: 1,
|
||||
timer: true,
|
||||
loadStatus: 'loadmore',
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.getStoreList();
|
||||
},
|
||||
methods: {
|
||||
viewStoreDetails(item) {
|
||||
if(this.closeAction()) return false;
|
||||
// console.log(this.list);
|
||||
const list = this.list.filter(item => {
|
||||
return item.show;
|
||||
})
|
||||
if(list.length) return false;
|
||||
this.$u.route({
|
||||
url: 'pageC/merchant/index',
|
||||
params: {
|
||||
id: item.friend_store_id,
|
||||
}
|
||||
})
|
||||
},
|
||||
async getStoreList({ load = 'reload' } = {}) {
|
||||
const res = await this.$u.api.attentionMemberList({
|
||||
role: 2,
|
||||
page: this.page
|
||||
})
|
||||
this.timer = true;
|
||||
if(res.errCode == 0) {
|
||||
if(load == 'reload') this.list = res.data.data;
|
||||
else if(load == 'loadmore') this.list.push(...res.data.data);
|
||||
}
|
||||
this.list.forEach(item => {
|
||||
Object.assign(item, { show: false });
|
||||
})
|
||||
// console.log(this.list);
|
||||
return res.data.data.length;
|
||||
},
|
||||
loadmore() {
|
||||
if(!this.timer) return false;
|
||||
this.timer = false;
|
||||
this.loadStatus = "loading";
|
||||
this.page++;
|
||||
let promise;
|
||||
promise = this.getStoreList({ load: 'loadmore' });
|
||||
promise.then(length => {
|
||||
this.loadStatus = "nomore";
|
||||
if(length == 0) this.page--;
|
||||
}).catch(() => {
|
||||
this.loadStatus = "nomore";
|
||||
this.page--;
|
||||
})
|
||||
},
|
||||
removeFavorite(index) {
|
||||
const id = this.list[index].friend_tomid;
|
||||
this.$u.api.attentionMemberRemove({
|
||||
id: id,
|
||||
type: 'store'
|
||||
}).then(res => {
|
||||
if(res.errCode == 0) {
|
||||
this.getStoreList();
|
||||
} else {
|
||||
this.$u.toast(res.message);
|
||||
}
|
||||
})
|
||||
},
|
||||
closeAction() {
|
||||
let status = false;
|
||||
this.list.map((val, idx) => {
|
||||
if(val.show) {
|
||||
status = true;
|
||||
this.$set(this.list[idx], 'show', false);
|
||||
};
|
||||
})
|
||||
this.$forceUpdate();
|
||||
return status;
|
||||
},
|
||||
open(index) {
|
||||
console.log(index);
|
||||
// 先将正在被操作的swipeAction标记为打开状态,否则由于props的特性限制,
|
||||
// 原本为'false',再次设置为'false'会无效
|
||||
this.list[index].show = true;
|
||||
this.list.map((val, idx) => {
|
||||
if(index != idx) this.list[idx].show = false;
|
||||
})
|
||||
this.$forceUpdate();
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.collection-item {
|
||||
background-color: #ffffff;
|
||||
.item {
|
||||
padding: 30rpx;
|
||||
display: flex;
|
||||
> image {
|
||||
width: 180rpx;
|
||||
height: 160rpx;
|
||||
border-radius: 10rpx;
|
||||
margin-right: 30rpx;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.title-wrap {
|
||||
flex: 1;
|
||||
.item-top {
|
||||
font-size: 30rpx;
|
||||
color: rgba(51,51,51,1);
|
||||
line-height: 44rpx;
|
||||
margin-bottom: 54rpx;
|
||||
}
|
||||
.item-bottom {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
.item-price {
|
||||
font-size: 30rpx;
|
||||
color: rgba(51,51,51,1);
|
||||
}
|
||||
.item-date {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
> image {
|
||||
margin-right: 25rpx;
|
||||
width: 24rpx;
|
||||
height: 24rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user