gdpaoup
This commit is contained in:
		
						commit
						6ed05ecf31
					
				@ -93,7 +93,8 @@ export default {
 | 
			
		||||
		},
 | 
			
		||||
		setSwiperHeight() {
 | 
			
		||||
			// height: 230px, margin-bottom: 13
 | 
			
		||||
			this.swiperHeight = Math.ceil(this.goodsList.length / 2) * (230 + 13) + 'px';
 | 
			
		||||
			const height = Math.ceil(this.goodsList.length / 2) * (510 + 26);
 | 
			
		||||
			this.swiperHeight = height == 0 ? '230rpx' : height + 'rpx';
 | 
			
		||||
		},
 | 
			
		||||
		// tabs通知swiper切换
 | 
			
		||||
		tabsChange(index) {
 | 
			
		||||
 | 
			
		||||
@ -2,8 +2,8 @@
 | 
			
		||||
    <view class="item" @click="toDetailsPage">
 | 
			
		||||
        <image :src="info.goods_image" mode="aspectFill" class="img"></image>
 | 
			
		||||
        <view class="info">
 | 
			
		||||
            <text class="title u-line-1">{{ info.goods_name }}</text>
 | 
			
		||||
            <text class="jianjie u-line-2">{{ info.goods_advword }}</text>
 | 
			
		||||
            <text class="title u-line-2">{{ info.goods_name }}</text>
 | 
			
		||||
            <text class="jianjie u-line-1">{{ info.goods_advword }}</text>
 | 
			
		||||
            <text class="price">¥{{ info.goods_price }}</text>
 | 
			
		||||
        </view>
 | 
			
		||||
    </view>
 | 
			
		||||
@ -44,7 +44,7 @@ export default {
 | 
			
		||||
<style lang="scss" scoped>
 | 
			
		||||
.item{
 | 
			
		||||
    width: 330rpx;
 | 
			
		||||
    height: 500rpx;
 | 
			
		||||
		height: 510rpx;
 | 
			
		||||
    margin-bottom: 26rpx;
 | 
			
		||||
    background-color: #f8f8f8;
 | 
			
		||||
    border-radius: 10rpx 10rpx 0rpx 0rpx;
 | 
			
		||||
@ -62,6 +62,7 @@ export default {
 | 
			
		||||
        flex-direction: column;
 | 
			
		||||
        justify-content: space-around;
 | 
			
		||||
        .title{
 | 
			
		||||
			line-height: 34rpx;
 | 
			
		||||
            font-size: 30rpx;
 | 
			
		||||
            color: #333;
 | 
			
		||||
			margin-bottom: 13rpx;
 | 
			
		||||
 | 
			
		||||
@ -241,7 +241,7 @@ export default {
 | 
			
		||||
			let img = [];
 | 
			
		||||
			list.forEach(item => {
 | 
			
		||||
				let temp = {
 | 
			
		||||
					image: item
 | 
			
		||||
					image: item[1]
 | 
			
		||||
				}
 | 
			
		||||
				img.push(temp);
 | 
			
		||||
			})
 | 
			
		||||
@ -311,7 +311,7 @@ export default {
 | 
			
		||||
				if (res.errCode == 0) {
 | 
			
		||||
					this.evaluate = res.data.goods_evaluate_info;
 | 
			
		||||
					this.goodsInfo = res.data.goods;
 | 
			
		||||
					this.setSwiperList(res.data.goods_image[0]);
 | 
			
		||||
					this.setSwiperList(res.data.goods_image);
 | 
			
		||||
					this.glist = res.data.spec_list;
 | 
			
		||||
					// console.log(this.goodsInfo.mobile_body);
 | 
			
		||||
				}
 | 
			
		||||
@ -325,7 +325,7 @@ export default {
 | 
			
		||||
				if(res.errCode == 0) {
 | 
			
		||||
					this.evaluate = res.data.data.goods_evaluate_info;
 | 
			
		||||
					this.goodsInfo = res.data.data.goods;
 | 
			
		||||
					this.setSwiperList(res.data.data.goods_image[0]);
 | 
			
		||||
					this.setSwiperList(res.data.data.goods_image);
 | 
			
		||||
					this.glist = res.data.data.spec_list;
 | 
			
		||||
					this.user_suc = res.data.data.user_suc;
 | 
			
		||||
					this.groupUser =res.data.data.user;
 | 
			
		||||
@ -341,7 +341,7 @@ export default {
 | 
			
		||||
					this.groupbuyInfo = res.data.groupbuyInfo;
 | 
			
		||||
					this.evaluate = res.data.goodsInfo.goods_evaluate_info;
 | 
			
		||||
					this.goodsInfo = res.data.goodsInfo.goods;
 | 
			
		||||
					this.setSwiperList(res.data.goodsInfo.goods_image[0]);
 | 
			
		||||
					this.setSwiperList(res.data.goodsInfo.goods_image);
 | 
			
		||||
					this.setSpikeTime(res.data.groupbuyInfo.groupbuy_endtime);
 | 
			
		||||
				}
 | 
			
		||||
			})
 | 
			
		||||
 | 
			
		||||
@ -12,7 +12,7 @@
 | 
			
		||||
			<view class="evaluation" :class="{ 'current' : current == 2 }" @click="switchCurrent(2)">好评</view>
 | 
			
		||||
		</view>
 | 
			
		||||
		<scroll-view scroll-y class="goods-container" :style="{ height: scrollHeight }" @scrolltolower="loadMore">
 | 
			
		||||
			<view v-for="goods in goodsList" :key="goods.goods_id" class="goods-item">
 | 
			
		||||
			<view v-for="goods in goodsList" :key="goods.goods_id" class="goods-item" @click="toDetailsPage(goods.goods_id)">
 | 
			
		||||
				<image :src="goods.goods_image"></image>
 | 
			
		||||
				<view class="right">
 | 
			
		||||
					<view class="name u-line-1">{{ goods.goods_name }}</view>
 | 
			
		||||
@ -112,6 +112,12 @@ export default {
 | 
			
		||||
			uni.setNavigationBarTitle({
 | 
			
		||||
				title: title
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		toDetailsPage(id) {
 | 
			
		||||
			this.$u.route('/pageB/sdetails/index', {
 | 
			
		||||
				id: id,
 | 
			
		||||
				type: 1 // 商品详情 商品类型 1普通 2拼团 3秒杀 4优惠券
 | 
			
		||||
			});
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@ -49,6 +49,12 @@
 | 
			
		||||
		onReady() {
 | 
			
		||||
			this.getMenuItemTop()
 | 
			
		||||
		},
 | 
			
		||||
		onNavigationBarButtonTap(e) {
 | 
			
		||||
			if(e.index == 0) this.$u.route('/pageB/search/index');
 | 
			
		||||
		},
 | 
			
		||||
		onNavigationBarSearchInputClicked() {
 | 
			
		||||
			this.$u.route('/pageB/search/index');
 | 
			
		||||
		},
 | 
			
		||||
		methods: {
 | 
			
		||||
			toSearchPage() {
 | 
			
		||||
				this.$u.route({
 | 
			
		||||
 | 
			
		||||
@ -1,20 +1,23 @@
 | 
			
		||||
<template>
 | 
			
		||||
	<view class="collection">
 | 
			
		||||
		<view class="item-box" v-for="(item, index) in articleList" :key="index">
 | 
			
		||||
		<view class="container">
 | 
			
		||||
			<view class="item-box" v-for="(item, index) in articleList" :key="index" @click="toDetailsPage(item.article_id)">
 | 
			
		||||
				<view class="video-item" v-if="item">
 | 
			
		||||
					<image class="head" :src="item.article_pic" v-if="item.type == 1"></image>
 | 
			
		||||
					<view class="header_fist" v-else>
 | 
			
		||||
						<view class="backes"></view>
 | 
			
		||||
					<image class="head" :src="item.article_pic" @click="toDetailsPage(item.article_id)"></image>
 | 
			
		||||
						<image class="head" :src="item.article_pic"></image>
 | 
			
		||||
					</view>
 | 
			
		||||
				<view class="title">{{ item.article_title }}</view>
 | 
			
		||||
				<view class="jianjie">{{ item.article_content }}</view>
 | 
			
		||||
					<view class="title u-line-1">{{ item.article_title }}</view>
 | 
			
		||||
					<view class="jianjie u-line-1">{{ item.article_content }}</view>
 | 
			
		||||
					<view class="user">
 | 
			
		||||
						<view class="info">
 | 
			
		||||
							<image :src="item.member_avatar"></image>
 | 
			
		||||
							<text>{{ item.member_nickname }}</text>
 | 
			
		||||
						</view>
 | 
			
		||||
				 	<u-icon name="trash" color="#333" size="36" @click="delArticle(item.article_id)"></u-icon>
 | 
			
		||||
						<view @click.stop="delArticle(item.article_id)">
 | 
			
		||||
							<u-icon name="trash" color="#333" size="36"></u-icon>
 | 
			
		||||
						</view>
 | 
			
		||||
						<!-- <image src="/static/image/common/4.png" @click.stop="showAction(item)"></image> -->
 | 
			
		||||
						<!-- <view class="action" v-if="show == item.article_id">
 | 
			
		||||
							<view class="bubble">
 | 
			
		||||
@ -28,7 +31,8 @@
 | 
			
		||||
					</view>
 | 
			
		||||
				</view>
 | 
			
		||||
			</view>
 | 
			
		||||
		<u-empty mode="list" v-if="!articleList.length" color="#000" img-width="200" font-size="30" style="margin: 20vh auto 0;"></u-empty>
 | 
			
		||||
		</view>
 | 
			
		||||
		<u-empty mode="list" v-if="!articleList.length" color="#000" img-width="200" font-size="30" margin-top="120"></u-empty>
 | 
			
		||||
	</view>
 | 
			
		||||
</template>
 | 
			
		||||
<script>
 | 
			
		||||
@ -79,6 +83,7 @@ export default {
 | 
			
		||||
</script>
 | 
			
		||||
<style lang="scss" scoped>
 | 
			
		||||
.collection {
 | 
			
		||||
	.container {
 | 
			
		||||
		border-top: 1rpx solid #ECECEC;
 | 
			
		||||
		padding: 21rpx 30rpx 0;
 | 
			
		||||
		display: flex;
 | 
			
		||||
@ -107,14 +112,9 @@ export default {
 | 
			
		||||
					font-weight: 500;
 | 
			
		||||
					line-height: 30rpx;
 | 
			
		||||
					width: 300rpx;
 | 
			
		||||
				overflow:hidden; 
 | 
			
		||||
				text-overflow:ellipsis;
 | 
			
		||||
				display:-webkit-box; 
 | 
			
		||||
				-webkit-box-orient:vertical;
 | 
			
		||||
				-webkit-line-clamp:2; 
 | 
			
		||||
				}
 | 
			
		||||
				.jianjie{
 | 
			
		||||
				height: 60rpx;
 | 
			
		||||
					// height: 60rpx;
 | 
			
		||||
					margin:0 auto;
 | 
			
		||||
					margin-top: 20rpx;
 | 
			
		||||
					font-size: 22rpx;
 | 
			
		||||
@ -122,11 +122,6 @@ export default {
 | 
			
		||||
					line-height: 30rpx;
 | 
			
		||||
					width: 300rpx;
 | 
			
		||||
					margin-left: 18rpx;
 | 
			
		||||
				overflow:hidden; 
 | 
			
		||||
				text-overflow:ellipsis;
 | 
			
		||||
				display:-webkit-box; 
 | 
			
		||||
				-webkit-box-orient:vertical;
 | 
			
		||||
				-webkit-line-clamp:2; 
 | 
			
		||||
				}
 | 
			
		||||
				.user{
 | 
			
		||||
					display: flex;
 | 
			
		||||
@ -234,5 +229,6 @@ export default {
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@ -2,16 +2,14 @@
 | 
			
		||||
	<view class="concerns">
 | 
			
		||||
		<view class="concerns-container">
 | 
			
		||||
			<view v-for="(info, index) in list" :key="index">
 | 
			
		||||
				<view class="daren-item" @click="toDetailsPage">
 | 
			
		||||
				<view class="daren-item">
 | 
			
		||||
					<image class="head" :src="info.friend_tomavatar"></image>
 | 
			
		||||
					<text class="name">{{ info.friend_tomname }}</text>
 | 
			
		||||
					<!-- <text class="zhuangtai">状态: {{ info.live_status == 1 ? '正在直播' : '未开播' }}</text> -->
 | 
			
		||||
					<view class="guanzhu" @click="changeType(info.friend_frommid)" v-if="info.friend_followstate == 1">关注</view>
 | 
			
		||||
					<view class="guanzhu action" @click="changeType(info.friend_frommid)" v-else>未关注</view>
 | 
			
		||||
					<text class="name">{{ info.friend_tomname || '' }}</text>
 | 
			
		||||
					<view class="guanzhu" @click="changeType(info.friend_tomid)" v-if="info.friend_followstate == 1">取消关注</view>
 | 
			
		||||
				</view>
 | 
			
		||||
			</view>
 | 
			
		||||
			<u-empty mode="list" v-if="!list.length" color="#000" img-width="200" font-size="30" style="margin: 20vh auto 0;"></u-empty>
 | 
			
		||||
		</view>
 | 
			
		||||
		<u-empty mode="list" v-if="!list.length" color="#000" img-width="200" font-size="30" margin-top="120"></u-empty>
 | 
			
		||||
	</view>
 | 
			
		||||
</template>
 | 
			
		||||
<script>
 | 
			
		||||
@ -23,17 +21,31 @@ export default {
 | 
			
		||||
	},
 | 
			
		||||
	onShow() {
 | 
			
		||||
		this.attentionMemberList();
 | 
			
		||||
	},
 | 
			
		||||
	// 下拉刷新
 | 
			
		||||
	onPullDownRefresh() {
 | 
			
		||||
        this.attentionMemberList();
 | 
			
		||||
    },
 | 
			
		||||
	methods: {
 | 
			
		||||
		attentionMemberList() {
 | 
			
		||||
			this.$u.api.attentionMemberList().then(res => {
 | 
			
		||||
				uni.stopPullDownRefresh();
 | 
			
		||||
				if(res.errCode == 0) {
 | 
			
		||||
					this.list = res.data;
 | 
			
		||||
				} else {
 | 
			
		||||
					this.list = [];
 | 
			
		||||
				}
 | 
			
		||||
			})
 | 
			
		||||
		}
 | 
			
		||||
		},
 | 
			
		||||
		changeType(id) {
 | 
			
		||||
				console.log(id);
 | 
			
		||||
				this.$u.api.attentionMember({
 | 
			
		||||
					member_id: id
 | 
			
		||||
				}).then(res => {
 | 
			
		||||
					this.$u.toast(res.message);
 | 
			
		||||
					this.attentionMemberList();
 | 
			
		||||
				})
 | 
			
		||||
			},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
@ -76,7 +88,7 @@ export default {
 | 
			
		||||
			.guanzhu{
 | 
			
		||||
				width: 130rpx;
 | 
			
		||||
				height: 50rpx;
 | 
			
		||||
				background-color: #FF780F;
 | 
			
		||||
				background-color: #EDEDED;
 | 
			
		||||
				font-size: 26rpx;
 | 
			
		||||
				line-height: 50rpx;
 | 
			
		||||
				color: #fff;
 | 
			
		||||
 | 
			
		||||
@ -3,7 +3,7 @@
 | 
			
		||||
		<view class="status" v-if="orderstate">
 | 
			
		||||
			<view class="text">
 | 
			
		||||
				<view class="status-text">{{ s_object[orderstate].text }}</view>
 | 
			
		||||
				<view class="time" v-if="orderInfo.view_type == 1">距离结束:{{ countdown }}</view>
 | 
			
		||||
				<view class="time" v-if="orderInfo.view_type == 1 || orderInfo.view_type == 9">距离结束:{{ countdown }}</view>
 | 
			
		||||
			</view>
 | 
			
		||||
			<image :src="s_object[orderstate].image"></image>
 | 
			
		||||
		</view>
 | 
			
		||||
@ -175,7 +175,7 @@ export default {
 | 
			
		||||
				// console.log(spikeTime);
 | 
			
		||||
				if(spikeTime <= 0) {
 | 
			
		||||
					this.isSpike = true;
 | 
			
		||||
					this.spikeTime = '00:00:00'
 | 
			
		||||
					this.countdown = '00:00:00'
 | 
			
		||||
					clearInterval(this.timer);
 | 
			
		||||
					return false;
 | 
			
		||||
				};
 | 
			
		||||
@ -204,9 +204,10 @@ export default {
 | 
			
		||||
			}).then(res => {
 | 
			
		||||
				if(res.errCode == 0) {
 | 
			
		||||
					this.orderInfo = res.data;
 | 
			
		||||
					this.setSpikeTime(res.data.end_time);
 | 
			
		||||
					this.viewState(this.orderInfo.view_type);
 | 
			
		||||
					this.setTitle(this.orderInfo.view_type);
 | 
			
		||||
					if(res.data.view_type == 1) this.setSpikeTime(res.data.end_time);
 | 
			
		||||
					else if(res.data.view_type == 9) this.setSpikeTime(res.data.pintuangroup_endtime);
 | 
			
		||||
				}
 | 
			
		||||
				uni.stopPullDownRefresh(); // 结束刷新
 | 
			
		||||
			})
 | 
			
		||||
 | 
			
		||||
@ -570,7 +570,7 @@
 | 
			
		||||
								"buttons": [
 | 
			
		||||
									{  
 | 
			
		||||
										"type":"none",
 | 
			
		||||
										"text":"写意见",
 | 
			
		||||
										"text":"投诉",
 | 
			
		||||
										"float":"right",
 | 
			
		||||
										"fontSize":"14"
 | 
			
		||||
									}
 | 
			
		||||
 | 
			
		||||
@ -19,14 +19,14 @@
 | 
			
		||||
				<view class="member-service" @click="toOtherPage('/mine/MemberServe')">会员服务</view>
 | 
			
		||||
			</view>
 | 
			
		||||
			<view class="bottom">
 | 
			
		||||
				<view @click="toOtherPage('/mine/GoodsCollection')">
 | 
			
		||||
				<!-- <view @click="toOtherPage('/mine/GoodsCollection')">
 | 
			
		||||
					<view>{{ userInfo.member_fav_goods_num || 0 }}</view>
 | 
			
		||||
					<view>商品收藏</view>
 | 
			
		||||
				</view>
 | 
			
		||||
				<view @click="toOtherPage('/mine/StoreCollection')">
 | 
			
		||||
					<view>{{ userInfo.member_fav_store_num || 0 }}</view>
 | 
			
		||||
					<view>店铺收藏</view>
 | 
			
		||||
				</view>
 | 
			
		||||
				</view> -->
 | 
			
		||||
				<view @click="toOtherPage('/mine/ImageTextCollection')">
 | 
			
		||||
					<view>{{ userInfo.member_fav_article_num || 0 }}</view>
 | 
			
		||||
					<view>图文收藏</view>
 | 
			
		||||
@ -248,8 +248,10 @@ export default {
 | 
			
		||||
			box-sizing: border-box;
 | 
			
		||||
			padding: 0 30rpx;
 | 
			
		||||
			display: flex;
 | 
			
		||||
			justify-content: space-between;
 | 
			
		||||
			// justify-content: space-between;
 | 
			
		||||
			justify-content: flex-start;
 | 
			
		||||
			> view {
 | 
			
		||||
				margin-right: 80rpx;
 | 
			
		||||
				text-align: center;
 | 
			
		||||
				font-size: 24rpx;
 | 
			
		||||
				color:rgba(51,51,51,1);
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user