| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <template>
- <view class="user_store_attention">
- <view class="item" v-for="(item,index) in storeList" :key="index" @click="goStore(item)">
- <image :src="item.merchant.mer_avatar" mode=""></image>
- <view class="info">
- <view class="name line1">{{item.merchant.mer_name}}<text v-if="item.merchant.is_trader" class="font-bg-red ml8">自营</text></view>
- <view class="des">{{item.merchant.care_count || 0}}人关注</view>
- <view class="btn" @click.stop="bindDetele(item,index)">取消关注</view>
- </view>
- </view>
- <view class="empty-txt" v-if="storeList.length == 0">暂无数据</view>
- </view>
- </template>
- <script>
- let app = getApp();
- import { getMerchantLst,collectDel } from '@/api/store.js'
- export default{
- data(){
- return {
- storeList:[],
- isScroll:true,
- page:1,
- limit:20,
- hide_mer_status: app.globalData.hide_mer_status
- }
- },
- onLoad() {
- this.getList()
- },
- onReady(){
- uni.$on('update',(data)=>{
- this.hide_mer_status = data.hide_mer_status
- })
- },
- mounted: function() {
- const app = getApp();
- this.$nextTick(() => {
- this.hide_mer_status = app.globalData.hide_mer_status
- });
- },
- methods:{
- goStore(item){
- if(this.hide_mer_status != 1){
- uni.navigateTo({
- url:`/pages/store/home/index?id=${item.merchant.mer_id}`
- })
- }
- },
- getList(){
- if(!this.isScroll) return
- getMerchantLst({
- page:this.page,
- limit:this.limit
- }).then(res=>{
- this.isScroll = res.data.list.length>=this.limit
- this.storeList = this.storeList.concat(res.data.list)
- this.page+=1
- })
- },
- // 删除收藏
- bindDetele(item,index){
- collectDel({
- type:10,
- type_id:item.type_id
- }).then(res=>{
- uni.showToast({
- title:'已取消',
- icon:'none'
- })
- this.storeList.splice(index,1)
- })
- }
- },
- onReachBottom() {
- this.getList()
- }
- }
- </script>
- <style lang="scss">
- .user_store_attention{
- .item{
- position: relative;
- display: flex;
- padding: 30rpx 20rpx;
- background-color: #fff;
- &::after{
- content: ' ';
- position: absolute;
- bottom: 0;
- left: 30rpx;
- right: 0;
- height: 1px;
- background: #f0f0f0;
- }
- image{
- width: 88rpx;
- height: 88rpx;
- border-radius: 50%;
- }
- .info{
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- margin-left: 20rpx;
- position: relative;
- .name{
- width: 410rpx;
- font-weight: bold;
- }
- .des{
- color: #666666;
- font-size: 22rpx;
- }
- .btn{
- display: flex;
- align-items: center;
- justify-content: center;
- position: absolute;
- right: 0;
- top: 50%;
- width:150rpx;
- height:50rpx;
- transform: translateY(-50%);
- border:1px solid #BBBBBB;
- border-radius:25rpx;
- font-size: 26rpx;
- }
- }
- }
- }
- </style>
|