| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370 | <template>	<!-- TODO @科举:参考 groupon/list.vue 和 seckill/list.vue 界面,调整下头部,就是从 5 到 11 行的  -->	<s-layout navbar="inner" title='砍价列表'>		<view style='background-color: red;height:100vh;'>			<view class='bargain-list'>				<!-- #ifdef H5 -->				<view class='iconfont icon-xiangzuo' @tap='goBack' :style="'top:'+ (state.navH/2) +'rpx'"					v-if="state.returnShow">				</view>				<!-- #endif -->				<!-- 砍价记录的概要 -->				<view class='header'>					<view class="pic">						<view class='swipers'>							<swiper indicator-dots="true" autoplay="true" interval="2500" duration="500" vertical="true"								circular="true">								<block v-for="(item,index) in state.bargainSuccessList" :key='index'>									<swiper-item>										<view class="acea-row row-middle" style='display:flex'>											<image :src="item.avatar" class="mr9"></image>											<view class='mr9 nickName'>{{ item.nickname }}</view>											<text class='mr9'>拿了</text>											<view class='line1'>{{ item.activityName }}</view>										</view>									</swiper-item>								</block>							</swiper>						</view>					</view>					<view class="tit">已有{{ state.bargainTotal }}人砍成功</view>				</view>				<!-- 砍价活动列表 -->				<view class='list'>					<block v-for="(item,index) in state.bargainList" :key="index">						<view style='display:flex' class='item acea-row row-between-wrapper'							@tap="openSubscribe('/pages/activity/bargain/detail?id='+ item.id)">							<view class='pictrue'>								<image :src='item.picUrl'></image>							</view>							<view class='text acea-row row-column-around'>								<view class='name line2'>{{ item.name }}</view>								<view class="acea-row" style="margin-bottom: 14rpx;display:flex">									<s-count-down :tipText="' '" :bgColor="state.bgColor" :dayText="':'" :hourText="':'"										:minuteText="':'" :secondText="' '" :datatime="item.endTime / 1000"										:isDay="true" />									<text class="txt">后结束</text>								</view>								<view v-if="item.stock === 0">									<view style="font-size: 22rpx;"										@tap="openSubscribe('/pages/activity/goods_bargain_details/index?id='+ item.id +'&startBargainUid='+ uid)">										已售罄</view>								</view>								<view class='money font-color'>最低: ¥<text										class='price'>{{ fen2yuan(item.bargainMinPrice) }}</text></view>							</view>							<view v-if="item.stock > 0" class='cutBnt bg-color'>参与砍价</view>							<view v-if="item.stock === 0" class='cutBnt bg-color-hui'>已售罄</view>						</view>					</block>					<view class='loadingicon acea-row row-center-wrapper' v-if='state.bargainList.length > 0'						style='text-align: center;'>						<text class='loading iconfont icon-jiazai' :hidden='!loading'></text>{{state.loadTitle}}					</view>				</view>			</view>		</view>	</s-layout></template><script setup>	import {		reactive	} from 'vue';	import sheep from '@/sheep';	import _ from 'lodash';	import {		onLoad,		onReachBottom	} from '@dcloudio/uni-app';	import {		fen2yuan	} from '@/sheep/hooks/useGoods';	import BargainApi from '@/sheep/api/activity'	const state = reactive({		navH: '',		returnShow: true,		// ========== 砍价记录概要的相关变量 ==========		bargainTotal: 0,		bargainSuccessList: [],		// ========== 砍价活动的相关变量 ==========		bargainList: [],		page: 1,		limit: 10,		loading: false,		loadend: false,		bgColor: {			'bgColor': '#E93323',			'Color': '#fff',			'width': '44rpx',			'timeTxtwidth': '16rpx',			'isDay': true		},		loadTitle: '加载更多',	});	async function getBargainHeader() {		let {			code,			data		} = await BargainApi.getBargainRecordSummary()		if (code == 0) {			state.bargainTotal = data.successUserCount;			state.bargainSuccessList = data.successList;		} else {			state.$util.Tips({				title: data			});		}	}	async function getBargainList() {		// TODO @科举:loading 和 loadTitle 改成现在这个项目的风格,包括组件使用 uni-load-more		if (state.loadend || state.loading) {			return;		}		state.loading = true;		state.loadTitle = '';		let {			data,			code		} = await BargainApi.getBargainActivityPage({			pageNo: state.page,			pageSize: state.limit		})		if (code == 0) {			const list = data.list;			const bargainList = _.concat(state.bargainList, list);			const loadend = list.length < state.limit;			state.loadend = loadend;			state.loading = false;			state.loadTitle = loadend ? '已全部加载' : '加载更多';			// this.$set(this, 'bargainList', bargainList);			state.bargainList = data.list			// this.$set(this, 'page', this.page + 1);			state.page = state.page + 1;		} else {			state.loading = false;			state.loadTitle = '加载更多';		}	}	function openSubscribe(e) {		console.log('跳转')		console.log(e)		// TODO @科举:参考 pages/pay/result.vue 页面的 subscribeMessage 方法,写订阅逻辑。		sheep.$router.go(e)		return;		let page = e;		// #ifndef MP		uni.navigateTo({			url: page		});		// #endif		// #ifdef MP		uni.showLoading({			title: '正在加载',		})		openBargainSubscribe().then(res => {			uni.hideLoading();		}).catch((err) => {			uni.hideLoading();		});		// #endif	}	onLoad(function() {		getBargainHeader();		getBargainList();	})	onReachBottom(() => {		getBargainList();	});</script><style lang='scss' scoped>	page,	.page-app {		background-color: #e93323 !important;	}	.font-color {		color: red;	}	.mr9 {		margin-right: 9rpx;	}	.swipers {		height: 100%;		width: 76%;		margin: auto;		overflow: hidden;		font-size: 22rpx;		color: #fff;		image {			width: 24rpx;			height: 24rpx;			border-radius: 50%;			overflow: hidden;		}		swiper {			height: 100%;			width: 100%;			overflow: hidden;		}		.line1 {			width: 195rpx;		}	}	.bargain-list .icon-xiangzuo {		font-size: 40rpx;		color: #fff;		position: fixed;		left: 30rpx;		z-index: 99;		transform: translateY(-20%);		height: 100%	}	.bargain-list .header {		/* TODO 芋艿:此处原来采用base64 但是过长编辑到小程序卡死 目前采用网络地址 需解决 */		background-image: url('https://huizhizao-1314830814.cos.ap-shanghai.myqcloud.com/huizhizao-1314830814/bdc8a9210710b83bcd88a14703f440fc7091792706b5cb71b54361488a547298.png');		babackground-repeat: no-repeat;		background-size: 100% 100%;		width: 750rpx;		height: 420rpx;		.acea-row {			height: 50rpx;			line-height: 50rpx;			left: 50rpx;			.nickName {				width: 65rpx;				overflow: hidden;				white-space: nowrap;			}		}		.pic {			width: 478rpx;			height: 50rpx;			margin: 0 auto;			/* TODO 芋艿:此处原来是本地地址小程序不支持,需改为线上 */			background-image: url('https://huizhizao-1314830814.cos.ap-shanghai.myqcloud.com/huizhizao-1314830814/d111ac53e1390618f22fcc03e415bcd584b3f409ae52421aef95c2ab9b02aa30.png');			babackground-repeat: no-repeat;			background-size: 100% 100%;		}		.tit {			color: #FFFFFF;			font-size: 24rpx;			font-weight: 400;			text-align: center;			margin-top: 304rpx;		}	}	.bargain-list .list {		padding: 0 30rpx;	}	.bargain-list .list .item {		position: relative;		height: 250rpx;		background-color: #fff;		border-radius: 14rpx;		margin-bottom: 20rpx;		padding: 30rpx 25rpx;	}	.bargain-list .list .item .pictrue {		width: 190rpx;		height: 190rpx;	}	.bargain-list .list .item .pictrue image {		width: 100%;		height: 100%;		border-radius: 14rpx;	}	.bargain-list .list .item .text {		width: 432rpx;		font-size: 28rpx;		color: #333333;		.txt {			font-size: 22rpx;			margin-left: 4rpx;			color: #666666;			line-height: 36rpx;		}	}	.bargain-list .list .item .text .name {		width: 100%;		height: 68rpx;		line-height: 36rpx;		font-size: 28rpx;		margin-bottom: 26rpx;	}	.bargain-list .list .item .text .num {		font-size: 26rpx;		color: #999;	}	.bargain-list .list .item .text .num .iconfont {		font-size: 35rpx;		margin-right: 7rpx;	}	.bargain-list .list .item .text .money {		font-size: 24rpx;		font-weight: bold;	}	.bargain-list .list .item .text .money .price {		font-size: 38rpx;	}	.bargain-list .list .item .cutBnt {		position: absolute;		width: 162rpx;		height: 52rpx;		border-radius: 50rpx;		font-size: 24rpx;		color: #fff;		text-align: center;		line-height: 52rpx;		right: 24rpx;		bottom: 30rpx;		background: linear-gradient(90deg, #FF7931 0%, #E93323 100%);	}	.bargain-list .list .item .cutBnt .iconfont {		margin-right: 8rpx;		font-size: 30rpx;	}	.bargain-list .list .load {		font-size: 24rpx;		height: 85rpx;		text-align: center;		line-height: 85rpx;	}</style>
 |