123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407 |
- <template>
- <view :style="colorStyle">
- <view class='collectionGoods' v-if="collectProductList.length">
- <view class="title-admin">
- <view>{{$t(`当前共`)}} <text class="text"> {{count}} </text> {{$t(`件商品`)}}</view>
- <view class="admin" @click="showRadio">{{checkbox_show?$t(`取消`):$t(`管理`)}}</view>
- </view>
- <checkbox-group @change="checkboxChange">
- <view class='item acea-row' v-for="(item,index) in collectProductList" :key="index">
- <view class="left">
- <checkbox v-show="checkbox_show" :value="item.pid.toString()" :checked="item.checked" />
- <view class='pictrue'>
- <image :src="item.image"></image>
- </view>
- </view>
- <view class='text acea-row row-column-between' @click="jump(item)">
- <view class='name line2'>{{item.store_name}}</view>
- <view class='acea-row row-between-wrapper'>
- <view class='money font-color'>{{$t(`¥`)}}{{item.price}}</view>
- <!-- <view class='delete' @click.stop='delCollection(item.pid,index)'>删除</view> -->
- </view>
- </view>
- </view>
- <view class='loadingicon acea-row row-center-wrapper'>
- <text class='loading iconfont icon-jiazai' :hidden='loading==false'></text>{{loadTitle}}
- </view>
- </checkbox-group>
- </view>
- <view class='noCommodity' v-else-if="!collectProductList.length && page > 1">
- <view class='pictrue'>
- <image :src="imgHost + '/statics/images/noCollection.png'"></image>
- </view>
- <recommend :hostProduct="hostProduct"></recommend>
- </view>
- <view class='footer acea-row row-between-wrapper' v-if="checkbox_show && collectProductList.length">
- <view>
- <checkbox-group @change="checkboxAllChange">
- <checkbox value="all" :checked="!!isAllSelect" />
- <text class='checkAll'>{{$t(`全选`)}}({{ids.length}})</text>
- </checkbox-group>
- </view>
- <view class='button acea-row row-middle'>
- <button class='bnt' formType="submit" @click="subDel">{{$t(`取关`)}}</button>
- </view>
- </view>
- <!-- #ifdef MP -->
- <!-- <authorize @onLoadFun="onLoadFun" :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize> -->
- <!-- #endif -->
- <!-- #ifndef MP -->
- <home></home>
- <!-- #endif -->
- </view>
- </template>
- <script>
- import {
- getCollectUserList,
- getProductHot,
- collectDel
- } from '@/api/store.js';
- import {
- mapGetters
- } from "vuex";
- import {
- toLogin
- } from '@/libs/login.js';
- import recommend from '@/components/recommend';
- // #ifdef MP
- import authorize from '@/components/Authorize';
- // #endif
- import home from '@/components/home';
- import colors from '@/mixins/color.js';
- import {HTTP_REQUEST_URL} from '@/config/app';
- export default {
- components: {
- recommend,
- // #ifdef MP
- authorize,
- // #endif
- home
- },
- mixins: [colors],
- data() {
- return {
- imgHost:HTTP_REQUEST_URL,
- ids: [],
- hostProduct: [],
- checkbox_show: false,
- loadTitle: this.$t(`加载更多`),
- loading: false,
- loadend: false,
- collectProductList: [],
- count: 0,
- limit: 8,
- page: 1,
- isAuto: false, //没有授权的不会自动授权
- isShowAuth: false, //是否隐藏授权
- hotScroll: false,
- hotPage: 1,
- hotLimit: 10,
- isAllSelect: false, //全选
- };
- },
- computed: mapGetters(['isLogin']),
- onLoad() {
- if (this.isLogin) {
- this.loadend = false;
- this.page = 1;
- this.collectProductList = [];
- this.getUserCollectProduct();
- } else {
- toLogin();
- }
- },
- onShow() {
- this.loadend = false;
- this.page = 1;
- this.$set(this, 'collectProductList', []);
- this.getUserCollectProduct();
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function() {
- this.getUserCollectProduct();
- },
- methods: {
- showRadio() {
- this.checkbox_show = !this.checkbox_show
- },
- checkboxChange(e) {
- console.log(this.ids.length,'ids')
- console.log(e.detail.value)
- if (e.detail.value.length < this.ids.length) {
- this.$set(this, 'isAllSelect', false);
- } else if (e.detail.value.length === this.collectProductList.length) {
- this.$set(this, 'isAllSelect', true);
- }
- console.log(this.isAllSelect)
- this.$set(this, 'ids', e.detail.value);
- },
- subDel() {
- let that = this
- if (this.ids.length) {
- collectDel(that.ids).then(res => {
- that.loadend = false;
- that.$util.Tips({
- title: res.msg
- });
- that.page = 1;
- that.collectProductList = [];
- this.getUserCollectProduct();
- this.ids.length = '';
- });
- } else {
- return that.$util.Tips({
- title: that.$t(`请选择商品`)
- });
- }
- },
- checkboxAllChange(event) {
- console.log(event.detail.value)
- let value = event.detail.value;
- if (value.length > 0) {
- this.setAllSelectValue(1)
- } else {
- this.setAllSelectValue(0)
- }
- },
- setAllSelectValue(status) {
- let that = this;
- let selectValue = [];
- let valid = that.collectProductList;
- if (valid.length > 0) {
- let newValid = valid.map(item => {
- if (status) {
- item.checked = true;
- selectValue.push(item.pid);
- that.isAllSelect = true;
- } else {
- item.checked = false;
- that.isAllSelect = false;
- }
- return item;
- });
- that.$set(that, 'collectProductList', newValid);
- console.log(selectValue)
- that.$set(that, 'ids', selectValue);
- }
- },
- jump(item) {
- uni.navigateTo({
- url: "/pages/goods_details/index?id=" + item.pid
- })
- },
- /**
- * 授权回调
- */
- onLoadFun: function() {
- this.loadend = false;
- this.page = 1;
- this.$set(this, 'collectProductList', []);
- this.getUserCollectProduct();
- // this.get_host_product();
- },
- // 授权关闭
- authColse(e) {
- this.isShowAuth = e
- },
- /**
- * 获取收藏产品
- */
- getUserCollectProduct() {
- let that = this;
- if (this.loading) return;
- if (this.loadend) return;
- that.loading = true;
- that.loadTitle = "";
- getCollectUserList({
- page: that.page,
- limit: that.limit
- }).then(res => {
- this.count = res.data.count;
- let collectProductList = res.data.list;
- collectProductList.map(e => {
- e.checked = false
- })
- let loadend = collectProductList.length < that.limit;
- that.collectProductList = that.$util.SplitArray(collectProductList, that
- .collectProductList);
- that.$set(that, 'collectProductList', that.collectProductList);
- that.loadend = loadend;
- that.loadTitle = loadend ? that.$t(`我也是有底线的`) : that.$t(`加载更多`);
- if (!that.collectProductList.length && that.page == 1) this.get_host_product();
- that.page = that.page + 1;
- that.loading = false;
- }).catch(err => {
- that.loading = false;
- that.loadTitle = that.$t(`加载更多`);
- });
- },
- /**
- * 获取我的推荐
- */
- get_host_product() {
- let that = this;
- if (that.hotScroll) return
- getProductHot(
- that.hotPage,
- that.hotLimit,
- ).then(res => {
- that.hotPage++
- that.hotScroll = res.data.length < that.hotLimit
- that.hostProduct = that.hostProduct.concat(res.data)
- });
- }
- },
- onReachBottom() {
- this.getUserCollectProduct();
- }
- }
- </script>
- <style scoped lang="scss">
- .collectionGoods {
- background-color: #fff;
- border-top: 1rpx solid #eee;
- }
- .collectionGoods .item {
- margin-left: 30rpx;
- border-bottom: 1rpx solid #eee;
- height: 180rpx;
- display: flex;
- align-items: center;
- flex-wrap: nowrap;
- }
- .left {
- display: flex;
- align-items: center;
- margin-right: 20rpx;
- }
- .collectionGoods .item .pictrue {
- width: 130rpx;
- height: 130rpx;
- margin-left: 20rpx;
- }
- .collectionGoods .item .pictrue image {
- width: 100%;
- height: 100%;
- border-radius: 6rpx;
- }
- .collectionGoods .item .text {
- height: 130rpx;
- font-size: 28rpx;
- color: #282828;
- }
- .collectionGoods .item .text .name {
- width: max-contnet;
- }
- .collectionGoods .item .text .money {
- font-size: 26rpx;
- }
- .collectionGoods .item .text .delete {
- font-size: 26rpx;
- color: #282828;
- width: 144rpx;
- height: 46rpx;
- border: 1px solid #bbb;
- border-radius: 4rpx;
- text-align: center;
- line-height: 46rpx;
- }
- .noCommodity {
- background-color: #fff;
- padding-top: 1rpx;
- border-top: 0;
- }
- .title-admin {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20rpx;
- border-bottom: 1px solid #f2f2f2;
- .text {
- color: var(--view-theme);
- }
- .admin {
- color: var(--view-theme);
- }
- }
- .footer {
- z-index: 999;
- width: 100%;
- height: 96rpx;
- background-color: #fafafa;
- position: fixed;
- padding: 0 30rpx;
- box-sizing: border-box;
- border-top: 1rpx solid #eee;
- bottom: 0;
- }
- .footer.on {
- // #ifndef H5
- bottom: 0rpx;
- // #endif
- // #ifdef MP || APP-PLUS
- bottom: 100rpx;
- bottom: calc(100rpx + constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
- bottom: calc(100rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
- // #endif
- }
- .footer .checkAll {
- font-size: 28rpx;
- color: #282828;
- margin-left: 16rpx;
- }
- // .shoppingCart .footer checkbox .wx-checkbox-input{background-color:#fafafa;}
- .footer .money {
- font-size: 30rpx;
- }
- .footer .placeOrder {
- color: #fff;
- font-size: 30rpx;
- width: 226rpx;
- height: 70rpx;
- border-radius: 50rpx;
- text-align: center;
- line-height: 70rpx;
- margin-left: 22rpx;
- }
- .footer .button .bnt {
- font-size: 28rpx;
- color: #999;
- border-radius: 50rpx;
- border: 1px solid #999;
- width: 160rpx;
- height: 60rpx;
- text-align: center;
- line-height: 60rpx;
- }
- .footer .button form~form {
- margin-left: 17rpx;
- }
- </style>
|