86 lines
2.6 KiB
Vue
86 lines
2.6 KiB
Vue
<template>
|
|
<page-meta :page-style="themeColor"></page-meta>
|
|
<view>
|
|
<mescroll-uni ref="mescroll" @getData="getData" class="member-point" :size="8" @listenRefresh="listenRefresh" v-if="storeToken">
|
|
<view class="goods_list" slot="list">
|
|
<block v-if="collectionList.length > 0">
|
|
<view class="goods_li margin-top" v-for="(item, index) in collectionList" :key="index" @click.stop="toDetail(item)">
|
|
<view class="pic">
|
|
<image :src="$util.img(item.goods_image.split(',')[0], { size: 'mid' })" mode="aspectFill" @error="goodsImageError(index)"></image>
|
|
</view>
|
|
<view class="goods_info">
|
|
<view class="goods_name font-size-base">{{ item.sku_name }}</view>
|
|
<view class="goods_opection">
|
|
<view class="left lineheight-clear ">
|
|
<text class="symbol price-style small">¥</text>
|
|
<text class="price price-style large">{{ parseFloat(item.discount_price).toFixed(2).split('.')[0] }}</text>
|
|
<text class="symbol price-style small">.{{ parseFloat(item.discount_price).toFixed(2).split('.')[1] }}</text>
|
|
</view>
|
|
<view class="right">
|
|
<view class="cars" @click.stop="deleteItem(item.goods_id)">
|
|
<view class="icon iconfont icon-icon7"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
<!-- 第一个列表为空时 -->
|
|
<ns-empty v-if="collectionList.length == 0 && isShowEmpty" text="暂无关注的商品" :isIndex="false"></ns-empty>
|
|
<ns-goods-recommend ref="goodsRecommend"></ns-goods-recommend>
|
|
</view>
|
|
</mescroll-uni>
|
|
<ns-login ref="login"></ns-login>
|
|
<loading-cover ref="loadingCover"></loading-cover>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import nsGoodsRecommend from '@/components/ns-goods-recommend/ns-goods-recommend.vue';
|
|
import collection from './public/js/collection.js';
|
|
|
|
export default {
|
|
components: {
|
|
nsGoodsRecommend
|
|
},
|
|
mixins: [collection],
|
|
data() {
|
|
return {};
|
|
},
|
|
onShow() {
|
|
if (this.storeToken) {
|
|
if (this.$refs.mescroll) this.$refs.mescroll.refresh();
|
|
} else {
|
|
this.$nextTick(() => {
|
|
this.$refs.login.open('/pages_tool/member/collection');
|
|
});
|
|
}
|
|
},
|
|
watch: {
|
|
storeToken: function(nVal, oVal) {
|
|
if (nVal) {
|
|
this.$refs.mescroll.refresh();
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
/deep/ .fixed {
|
|
position: relative;
|
|
top: 0;
|
|
}
|
|
|
|
/deep/ .empty {
|
|
margin-top: 0 !important;
|
|
}
|
|
|
|
@import './public/css/collection.scss';
|
|
</style>
|
|
|
|
<style scoped>
|
|
/deep/ .sku-layer .uni-popup__wrapper.uni-custom .uni-popup__wrapper-box {
|
|
max-height: unset !important;
|
|
}
|
|
</style> |