deming/pageE/mine/StoreCollection.vue

111 lines
2.3 KiB
Vue
Raw Normal View History

2020-06-08 15:23:23 +08:00
<template>
<view class="store">
2020-06-24 16:39:31 +08:00
<u-empty mode="list" v-if="!list.length" color="#000" img-width="200" font-size="30" margin-top="300"></u-empty>
2020-06-08 15:23:23 +08:00
<u-swipe-action
v-for="(item, index) in list" :key="index"
2020-08-03 20:59:24 +08:00
:index='item.favlog_id'
2020-06-08 15:23:23 +08:00
:show="item.show"
:options="options"
2020-07-01 17:32:36 +08:00
@click="removeFavorite"
2020-06-08 15:23:23 +08:00
@open="open"
>
<view class="item u-border-bottom">
2020-08-03 20:59:24 +08:00
<image :src="item.store_avatar"></image>
2020-06-08 15:23:23 +08:00
<!-- 此层wrap在此为必写的否则可能会出现标题定位错误 -->
<view class="title-wrap">
2020-08-03 20:59:24 +08:00
<view class="item-name u-line-1">{{ item.store_name }}</view>
2020-06-08 15:23:23 +08:00
<view class="item-date">
<image src="@/pageE/static/mine/26.png"></image>
2020-08-03 20:59:24 +08:00
<view>{{ item.fav_time | date }}</view>
2020-06-08 15:23:23 +08:00
</view>
</view>
</view>
</u-swipe-action>
</view>
</template>
<script>
export default {
data() {
return {
2020-06-24 16:39:31 +08:00
list: [],
2020-06-08 15:23:23 +08:00
show: false,
options: [
{
text: '删除',
style: {
backgroundColor: '#FF3131'
}
}
]
}
},
2020-06-24 16:39:31 +08:00
mounted() {
this.getStoreFavoritesList();
},
2020-06-08 15:23:23 +08:00
methods: {
2020-06-24 16:39:31 +08:00
getStoreFavoritesList() {
2020-07-01 17:32:36 +08:00
this.$u.api.getFavoritesList({
type: 2 // 店铺 type: 2
})
},
2020-08-03 20:59:24 +08:00
removeFavorite(id) {
console.log(id);
2020-07-01 17:32:36 +08:00
this.$u.api.removeFavorite({
id: id
2020-06-24 16:39:31 +08:00
}).then(res => {
2020-08-03 20:59:24 +08:00
this.$u.toast(res.message);
2020-06-24 16:39:31 +08:00
if(res.errCode == 0) {
2020-07-01 17:32:36 +08:00
this.getStoreFavoritesList();
2020-06-24 16:39:31 +08:00
}
})
},
2020-06-08 15:23:23 +08:00
open(index) {
// 先将正在被操作的swipeAction标记为打开状态否则由于props的特性限制
// 原本为'false',再次设置为'false'会无效
this.list[index].show = true;
this.list.map((val, idx) => {
if(index != idx) this.list[idx].show = false;
})
}
},
};
</script>
<style lang="scss" scoped>
.store {
2020-06-24 16:39:31 +08:00
min-height: calc(100vh - var(--window-top));
background-color: #ECECEC;
padding-top: 1rpx;
2020-06-08 15:23:23 +08:00
.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;
}
}
}
}
}
</style>