liukang 1 年之前
父節點
當前提交
e8142e6b20

+ 1 - 1
components/j-calendar/j-calendar.vue

@@ -86,7 +86,7 @@
 			},
 			},
 			yearMonth: { // 2022-01 这种格式,默认当前年月
 			yearMonth: { // 2022-01 这种格式,默认当前年月
 				type: String,
 				type: String,
-				default: new Date().getFullYear()+'-'+ new Date().getMonth() + 1
+				default: new Date().getFullYear()+'-'+ Number(new Date().getMonth() + 1)
 			},
 			},
 			dataSource: { //已签到的数据源,例: 5、6号已签到: ["2022-01-05","2022-01-06"],兼容个位数前可加可不加0
 			dataSource: { //已签到的数据源,例: 5、6号已签到: ["2022-01-05","2022-01-06"],兼容个位数前可加可不加0
 				type: Array,
 				type: Array,

+ 5 - 9
pageB/components/youhui.vue

@@ -6,7 +6,7 @@
 			<image src="../static/close.png" mode="aspectFill" @click="close"></image>
 			<image src="../static/close.png" mode="aspectFill" @click="close"></image>
 		</view>
 		</view>
 		<view class="list vflex">
 		<view class="list vflex">
-			<u-radio-group  placement="column" @change="selectaddress">
+			<u-radio-group v-model="active" placement="column" @change="selectaddress">
 				<view class="list-item hflex acenter jbetween" :class="active == index ? 'active-item' : ''" v-for="(item,index) in list" :key="index" @click="select(index)">
 				<view class="list-item hflex acenter jbetween" :class="active == index ? 'active-item' : ''" v-for="(item,index) in list" :key="index" @click="select(index)">
 					<image src="../static/youhuiquan.png" mode="aspectFill"></image>
 					<image src="../static/youhuiquan.png" mode="aspectFill"></image>
 					<view class="left vflex jbetween">
 					<view class="left vflex jbetween">
@@ -24,7 +24,7 @@
 					<u-radio shape="circle" :name="-1" activeColor="#00B0B0"></u-radio>
 					<u-radio shape="circle" :name="-1" activeColor="#00B0B0"></u-radio>
 				</view>
 				</view>
 			</u-radio-group>
 			</u-radio-group>
-		</view>	
+		</view>
 		<view class="btns" @click="sure">
 		<view class="btns" @click="sure">
 			确定
 			确定
 		</view>
 		</view>
@@ -50,14 +50,10 @@
 		},
 		},
 		data() {
 		data() {
 			return {
 			return {
-				active: '',
+				active: this.index,
 			}
 			}
 		},
 		},
-		watch: {
-			index(newvalue,oldvalue) {
-				this.active = newvalue
-			},
-		},
+		
 		onLoad() {
 		onLoad() {
 			
 			
 		},
 		},
@@ -113,7 +109,7 @@
 		.list {
 		.list {
 			padding: 0 0 144rpx;
 			padding: 0 0 144rpx;
 			.active-item {
 			.active-item {
-				background: rgba(0,176,176,0.06);
+				background: rgba(0,176,176,0.06) !important;
 			}
 			}
 			.list-item {
 			.list-item {
 				padding: 32rpx 30rpx 28rpx;
 				padding: 32rpx 30rpx 28rpx;

+ 10 - 2
pageB/good-detail.vue

@@ -2,7 +2,7 @@
 	<view class="good-detail">
 	<view class="good-detail">
 		<u-swiper :list="detail.images" @change="e => currentNum = e.current" height="375" :autoplay="false" indicatorStyle="right: 20px">
 		<u-swiper :list="detail.images" @change="e => currentNum = e.current" height="375" :autoplay="false" indicatorStyle="right: 20px">
 			<view slot="indicator" class="indicator-num">
 			<view slot="indicator" class="indicator-num">
-				<text class="indicator-num__text hflex acenter jcenter">{{ currentNum + 1 }}/{{ detail.images.length }}</text>
+				<text class="indicator-num__text hflex acenter jcenter">{{ currentNum + 1 }}/{{ detail.images.length || 0 }}</text>
 			</view>
 			</view>
 		</u-swiper>
 		</u-swiper>
 		<view class="detail">
 		<view class="detail">
@@ -69,7 +69,9 @@
 		data() {
 		data() {
 			return {
 			return {
 				id: '',
 				id: '',
-				detail: {},
+				detail: {
+					images: []
+				},
 				currentNum: 0,
 				currentNum: 0,
 				active: -1,
 				active: -1,
 				spec_show: false,
 				spec_show: false,
@@ -126,6 +128,12 @@
 				}, function(res) {
 				}, function(res) {
 					if(res.code == 10000) {
 					if(res.code == 10000) {
 						_this.detail = res.data
 						_this.detail = res.data
+						for(var i=0;i<_this.detail.images.length;i++) {
+							if(_this.detail.images[i].indexOf('http') == -1) {
+								_this.detail.images[i] = $api.config.baseUrl + _this.detail.images[i]
+							}
+						}
+						console.log(JSON.parse(JSON.stringify(_this.detail)));
 					}
 					}
 				})
 				})
 				
 				

+ 45 - 5
pageB/order-confirm.vue

@@ -44,11 +44,11 @@
 			</view>
 			</view>
 			<view class="hflex acenter jbetween cell">
 			<view class="hflex acenter jbetween cell">
 				<view class="label">订单总积分</view>
 				<view class="label">订单总积分</view>
-				<view class="value">{{detail.total}}</view>
+				<view class="value">{{detail.price * num }}</view>
 			</view>
 			</view>
 			<view class="hflex acenter jbetween cell">
 			<view class="hflex acenter jbetween cell">
 				<view class="label">优惠积分</view>
 				<view class="label">优惠积分</view>
-				<view class="value">{{detail.youhui}}</view>
+				<view class="value">{{youhui}}</view>
 			</view>
 			</view>
 			<view class="hflex acenter jbetween cell">
 			<view class="hflex acenter jbetween cell">
 				<view class="label">实付积分</view>
 				<view class="label">实付积分</view>
@@ -117,8 +117,9 @@
 				show_submit: false,
 				show_submit: false,
 				show_wx: false,
 				show_wx: false,
 				wxcode: 'https://dummyimage.com/750x750/e3e3e3/fff',
 				wxcode: 'https://dummyimage.com/750x750/e3e3e3/fff',
-				num: 0,
+				num: 1,
 				total: 0,
 				total: 0,
+				youhui: 0
 			}
 			}
 		},
 		},
 		onLoad(options) {
 		onLoad(options) {
@@ -130,7 +131,25 @@
 			// this.getdata()
 			// this.getdata()
 		},
 		},
 		methods: {
 		methods: {
-			
+			count() {
+				var _this = this
+				$api.req({
+					url: 'integral/order/calculate',
+					method: 'POST',
+					data: {
+						goods_id: _this.detail.id,
+						goods_count: _this.num,
+						coupon_id: _this.youhui_active == -1 ? '0' : _this.youhui_list[_this.youhui_active].id,
+						is_level_discount: _this.vip_active == -1 ? '0' : '1',
+						address_id: _this.address ? _this.address.id : '0'
+					}
+				}, function(res) {
+					if(res.code == 10000) {
+						_this.total = res.data.price_data.total_price
+						_this.youhui = res.data.price_data.total_discount
+					}
+				})
+			},
 			tosubmit() {
 			tosubmit() {
 				this.toclose()
 				this.toclose()
 				uni.redirectTo({
 				uni.redirectTo({
@@ -148,17 +167,34 @@
 					content: '是否提交订单',
 					content: '是否提交订单',
 					success: function (res) {
 					success: function (res) {
 						if (res.confirm) {
 						if (res.confirm) {
-							_this.show_submit = true
+							$api.req({
+								url: 'integral/order',
+								method: 'POST',
+								data: {
+									goods_id: _this.detail.id,
+									goods_count: _this.num,
+									coupon_id: _this.youhui_active == -1 ? '0' : _this.youhui_list[_this.youhui_active].id,
+									is_level_discount: _this.vip_active == -1 ? '0' : '1',
+									address_id: _this.address ? _this.address.id : '0'
+								}
+							}, function(res) {
+								if(res.code == 10000) {
+									_this.show_submit = true
+								}
+							})
+							
 						}
 						}
 					}
 					}
 				});
 				});
 			},
 			},
 			selectyouhui(e) {
 			selectyouhui(e) {
 				this.youhui_active = e
 				this.youhui_active = e
+				this.count()
 				this.toclose()
 				this.toclose()
 			}, 
 			}, 
 			selectvip(e) {
 			selectvip(e) {
 				this.vip_active = e
 				this.vip_active = e
+				this.count()
 				this.toclose()
 				this.toclose()
 			}, 
 			}, 
 			getdata() {
 			getdata() {
@@ -186,7 +222,11 @@
 				}, function(res) {
 				}, function(res) {
 					if(res.code == 10000) {
 					if(res.code == 10000) {
 						_this.address_list = res.data
 						_this.address_list = res.data
+						if(_this.address_list.length > 0) {
+							_this.address = _this.address_list[0]
+						}
 					}
 					}
+					_this.count()
 				})
 				})
 			},
 			},
 		}
 		}

+ 38 - 4
pageC/guanzhu-list.vue

@@ -1,6 +1,6 @@
 <template>
 <template>
 	<view class="content">
 	<view class="content">
-		<u-cell-group :border="false">
+		<u-cell-group :border="false" v-if="list.length > 0">
 			<u-cell size="large" v-for="(item,index) in list" :key="index">
 			<u-cell size="large" v-for="(item,index) in list" :key="index">
 				<view slot="title" class="u-slot-title hflex acenter">
 				<view slot="title" class="u-slot-title hflex acenter">
 					<image :src="item.avatar" mode="aspectFill"></image>
 					<image :src="item.avatar" mode="aspectFill"></image>
@@ -21,6 +21,9 @@
 				</view>
 				</view>
 			</u-cell>
 			</u-cell>
 		</u-cell-group>
 		</u-cell-group>
+		<view class="hflex acenter jcenter " style="height: 100vh;" v-else >
+			<u-empty mode="data"></u-empty>
+		</view>
 	</view>
 	</view>
 </template>
 </template>
 
 
@@ -31,7 +34,9 @@
 			return {
 			return {
 				type: '',
 				type: '',
 				list: [],
 				list: [],
-				userid: ''
+				userid: '',
+				page: 1,
+				last_page: 1
 			}
 			}
 		},
 		},
 		onLoad(option) {
 		onLoad(option) {
@@ -44,15 +49,44 @@
 			}
 			}
 			this.getlist()
 			this.getlist()
 		},
 		},
+		onReachBottom() {
+			if(this.page < this.last_page) {
+				this.page++
+				this.getlist()
+			} else {
+				uni.$u.toast('已经到底了')
+				return
+			}
+		},
 		methods: {
 		methods: {
 			getlist() {
 			getlist() {
 				var _this = this
 				var _this = this
 				if(_this.type == '1') {
 				if(_this.type == '1') {
 					$api.req({
 					$api.req({
-						url: '',
+						url: 'user/follow',
+						data: {
+							is_page: 1,
+							page: _this.page,
+							limit: 10
+						}
+					}, function(res) {
+						if(res.code == 10000) {
+							_this.list = _this.list.concat(res.data.list)
+							_this.last_page = res.data.last_page
+						}
+					})
+				} else {
+					$api.req({
+						url: 'user/fans',
+						data: {
+							is_page: 1,
+							page: _this.page,
+							limit: 10
+						}
 					}, function(res) {
 					}, function(res) {
 						if(res.code == 10000) {
 						if(res.code == 10000) {
-							
+							_this.list = _this.concat(res.data.list)
+							_this.last_page = res.data.last_page
 						}
 						}
 					})
 					})
 				}
 				}

+ 33 - 14
pageC/jifen-list.vue

@@ -1,39 +1,58 @@
 <template>
 <template>
 	<view class="content">
 	<view class="content">
-		<view class="list">
+		<view class="list" v-if="list.length > 0">
 			<view class="list-item hflex acenter jbetween" v-for="(item,index) in list" :key="index">
 			<view class="list-item hflex acenter jbetween" v-for="(item,index) in list" :key="index">
 				<view class="item-left vflex">
 				<view class="item-left vflex">
-					<text>{{item.name}}</text>
-					<text>{{item.time}}</text>
+					<text>{{item.source_type_name}}</text>
+					<text>{{item.created_at}}</text>
 				</view>
 				</view>
-				<view class="item-right" v-if="item.type == 1">+{{item.sum}}</view>
-				<view class="item-right2" v-if="item.type == 2">-{{item.sum}}</view>
+				<view class="item-right">{{item.amount}}</view>
 			</view>
 			</view>
 		</view>
 		</view>
+		<view class="hflex acenter jcenter " style="height: 100vh;" v-else >
+			<u-empty mode="data"></u-empty>
+		</view>
 	</view>
 	</view>
 </template>
 </template>
 
 
 <script>
 <script>
+	import $api from '@/static/js/api.js'
 	export default {
 	export default {
 		data() {
 		data() {
 			return{
 			return{
-				list: []
+				list: [],
+				page: 1,
+				last_page: 1
 			}
 			}
 		},
 		},
 		onLoad() {
 		onLoad() {
 			this.getlist()
 			this.getlist()
 		},
 		},
+		onReachBottom() {
+			if(this.page < this.last_page) {
+				this.page++
+				this.getlist()
+			} else {
+				uni.$u.toast('已经到底了')
+				return
+			}
+		},
 		methods: {
 		methods: {
 			getlist() {
 			getlist() {
-				for(var i=0;i<10;i++) {
-					var data = {
-						name: '完善资料获得',
-						time: '2023-10-10 12:32:54',
-						sum: '200',
-						type: 1
+				var _this = this
+				$api.req({
+					url: 'finance',
+					data: {
+						is_page: 1,
+						page: _this.page,
+						limit: 10,
 					}
 					}
-					this.list.push(data)
-				}
+				}, function(res) {
+					if(res.code == 10000) {
+						_this.list = _this.list.concat(res.data.list)
+						_this.last_page = res.data.last_page
+					}
+				})
 			}
 			}
 		}
 		}
 	}
 	}

+ 52 - 50
pageC/jifen-qianbao.vue

@@ -7,64 +7,31 @@
 		</u-navbar>
 		</u-navbar>
 		<image src="static/jifen-bg.png" mode="aspectFill" class="jinfen-bg"></image>
 		<image src="static/jifen-bg.png" mode="aspectFill" class="jinfen-bg"></image>
 		<view class="top hflex acenter">
 		<view class="top hflex acenter">
-			<view class="top-item hflex aend" @click="tojifenlist">
-				<text>{{user.bable}}</text>
+			<view class="top-item hflex aend fwrap" @click="tojifenlist">
+				<text>{{user.integral}}</text>
 				<view class="hflex acenter">
 				<view class="hflex acenter">
 					<text class="label">积分余额</text>
 					<text class="label">积分余额</text>
-					<u-icon name="arrow-right" color="#000000" size="16"></u-icon>
+					<u-icon name="arrow-right" color="#000000" size="12"></u-icon>
 				</view>
 				</view>
 			</view>
 			</view>
-			<view class="top-item hflex aend">
-				<text>{{user.sum}}</text>
+			<view class="top-item hflex aend fwrap">
+				<text>{{user.integral_sum}}</text>
 				<text class="label">积分总额</text>
 				<text class="label">积分总额</text>
 			</view>
 			</view>
 		</view>
 		</view>
 		<view class="box-bg">
 		<view class="box-bg">
 			<view class="box">
 			<view class="box">
 				<view class="title">任务列表</view>
 				<view class="title">任务列表</view>
-				<view class="cell hflex acenter jbetween">
+				<view class="cell hflex acenter jbetween" v-for="(item,index) in list" :key="index">
 					<image src="static/jifen1.png" mode="aspectFill"></image>
 					<image src="static/jifen1.png" mode="aspectFill"></image>
 					<view class="cell-center vflex">
 					<view class="cell-center vflex">
-						<view class="name">完善个人资料</view>
+						<view class="name">{{item.name}}</view>
 						<view class="center-bottom hflex acenter">
 						<view class="center-bottom hflex acenter">
 							<image src="static/jifen.png" mode="aspectFill"></image>
 							<image src="static/jifen.png" mode="aspectFill"></image>
-							<text>积分+{{user.num}}</text>
+							<text>积分+{{item.integral}}</text>
 						</view>
 						</view>
 					</view>
 					</view>
-					<view class="btn">{{ user.is_profile != '1' ? '去完善': '已完善'}}</view>
-				</view>
-				<view class="cell hflex acenter jbetween">
-					<image src="static/jifen2.png" mode="aspectFill"></image>
-					<view class="cell-center vflex">
-						<view class="name">发布帖子</view>
-						<view class="center-bottom hflex acenter">
-							<image src="static/jifen.png" mode="aspectFill"></image>
-							<text>积分+{{user.num}}</text>
-						</view>
-					</view>
-					<view class="btn">去完成</view>
-				</view>
-				<view class="cell hflex acenter jbetween">
-					<image src="static/jifen3.png" mode="aspectFill"></image>
-					<view class="cell-center vflex">
-						<view class="name">开通会员</view>
-						<view class="center-bottom hflex acenter">
-							<image src="static/jifen.png" mode="aspectFill"></image>
-							<text>积分+{{user.num}}</text>
-						</view>
-					</view>
-					<view class="btn">{{ user.is_vip != '1' ? '去完成': '已完成'}}</view>
-				</view>
-				<view class="cell hflex acenter jbetween">
-					<image src="static/jifen4.png" mode="aspectFill"></image>
-					<view class="cell-center vflex">
-						<view class="name">邀请好友</view>
-						<view class="center-bottom hflex acenter">
-							<image src="static/jifen.png" mode="aspectFill"></image>
-							<text>积分+{{user.num}}</text>
-						</view>
-					</view>
-					<view class="btn">去完成</view>
+					<view class="btn" @click="totask(item)">{{ item.status == 'pending' ? '去完成': '领取奖励'}}</view>
 				</view>
 				</view>
 			</view>
 			</view>
 		</view>
 		</view>
@@ -72,16 +39,48 @@
 </template>
 </template>
 
 
 <script>
 <script>
+	import $api from '@/static/js/api.js'
 	export default {
 	export default {
 		data() {
 		data() {
 			return{
 			return{
-				user: {}
+				user: {},
+				list: [],
+				page: 1,
+				last_page: 1,
 			}
 			}
 		},
 		},
 		onLoad() {
 		onLoad() {
 			this.getuser()
 			this.getuser()
+			this.getlist()
 		},
 		},
 		methods: {
 		methods: {
+			totask(item) {
+				var _this = this
+				if(item.status == 'pending') {
+					
+				} else {
+					$api.req({
+						url: 'task/' + item.id +'/receive'
+					}, function(res) {
+						if(res.code == 10000) {
+							uni.$u.toast(res.msg)
+						}
+					})
+				}
+			},
+			getlist() {
+				var _this = this
+				$api.req({
+					url: 'task',
+					data: {
+						is_page: 0,
+					}
+				}, function(res) {
+					if(res.code == 10000) {
+						_this.list = res.data
+					}
+				})
+			},
 			torule() {
 			torule() {
 				uni.navigateTo({
 				uni.navigateTo({
 					url: '/pageC/xieyi?type=rule'
 					url: '/pageC/xieyi?type=rule'
@@ -93,12 +92,15 @@
 				})
 				})
 			},
 			},
 			getuser() {
 			getuser() {
-				this.user = {
-					bable: 8725,
-					sum: 12445,
-					num: 2,
-					is_profile: 0
-				}
+				var _this = this
+				$api.req({
+					url: 'user/info',
+					method: 'GET'
+				}, function(res) {
+					if(res.code == 10000) {
+						_this.user = res.data
+					}
+				})
 			}
 			}
 		}
 		}
 	}
 	}
@@ -201,7 +203,7 @@
 					font-family: PingFangSC, PingFang SC;
 					font-family: PingFangSC, PingFang SC;
 					font-weight: 400;
 					font-weight: 400;
 					color: #222222;
 					color: #222222;
-					padding: 0 10rpx 10rpx 14rpx;
+					// padding: 0 10rpx 10rpx 14rpx;
 				}
 				}
 			}
 			}
 		}
 		}

+ 30 - 14
pageC/video-list.vue

@@ -5,7 +5,7 @@
 				<text @click="show_manager = !show_manager">{{show_manager ? '完成' : '管理'}}</text>
 				<text @click="show_manager = !show_manager">{{show_manager ? '完成' : '管理'}}</text>
 			</view>
 			</view>
 		</u-navbar>
 		</u-navbar>
-		<view class="list">
+		<view class="list" v-if="list.length>0">
 			<u-checkbox-group v-model="select_all" placement="column" @change="selectitem">
 			<u-checkbox-group v-model="select_all" placement="column" @change="selectitem">
 				<view class="list-item hflex acenter" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
 				<view class="list-item hflex acenter" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
 					<u-checkbox v-if="show_manager" activeColor="#57C3C2" shape="circle" :customStyle="{marginBottom: '8px'}" :name="item.id"></u-checkbox>
 					<u-checkbox v-if="show_manager" activeColor="#57C3C2" shape="circle" :customStyle="{marginBottom: '8px'}" :name="item.id"></u-checkbox>
@@ -19,6 +19,9 @@
 				</view>
 				</view>
 			</u-checkbox-group>
 			</u-checkbox-group>
 		</view>
 		</view>
+		<view class="hflex acenter jcenter " style="height: 100vh;" v-else >
+			<u-empty mode="data"></u-empty>
+		</view>
 		<view style="height: 186rpx;" v-if="show_manager"></view>
 		<view style="height: 186rpx;" v-if="show_manager"></view>
 		<view class="bottom hflex acenter jbetween" v-if="show_manager">
 		<view class="bottom hflex acenter jbetween" v-if="show_manager">
 			<u-checkbox-group placement="column">
 			<u-checkbox-group placement="column">
@@ -30,12 +33,14 @@
 </template>
 </template>
 
 
 <script>
 <script>
+	import $api from '@/static/js/api.js'
 	export default {
 	export default {
 		data() {
 		data() {
 			return{
 			return{
 				list: [],
 				list: [],
 				current:0,
 				current:0,
-				
+				page: 1,
+				last_page: 1,
 				show_manager: false,
 				show_manager: false,
 				select_all: [],
 				select_all: [],
 				quanxuan: false
 				quanxuan: false
@@ -44,6 +49,15 @@
 		onLoad() {
 		onLoad() {
 			this.getlist()
 			this.getlist()
 		},
 		},
+		onReachBottom() {
+			if(this.page < this.last_page) {
+				this.page++
+				this.getlist()
+			} else {
+				uni.$u.toast('已经到底了')
+				return
+			}
+		},
 		methods: {
 		methods: {
 			toinfo(item) {
 			toinfo(item) {
 				uni.navigateTo({
 				uni.navigateTo({
@@ -85,19 +99,21 @@
 				this.getlist()
 				this.getlist()
 			},
 			},
 			getlist() {
 			getlist() {
-				
-				for(var i=0;i<10;i++) {
-					var data = {
-						id: '000' + i,
-						img: 'https://cdn.uviewui.com/uview/album/1.jpg',
-						name: '新传专题04 | 虚拟现实及其在新闻领域的运用',
-						time: '3小时前',
-						like_num: 10,
-						comment_num: 235,
-						price: 5156
+				var _this = this
+				$api.req({
+					url: 'admin/video',
+					data: {
+						is_page: 1,
+						page: _this.page,
+						limit: 10
 					}
 					}
-					this.list.push(data)
-				}
+				}, function(res) {
+					if(res.code == 10000) {
+						_this.list = _this.list.concat(res.data.list)
+						_this.last_page = res.data.last_page
+					}
+				})
+				
 			},
 			},
 		},
 		},
 	}
 	}

+ 62 - 31
pageC/youhuiquan.vue

@@ -5,72 +5,102 @@
 				:inactiveStyle="{color: '#999999',fontSize: '30rpx',}"
 				:inactiveStyle="{color: '#999999',fontSize: '30rpx',}"
 				:activeStyle="{color: '#222222',fontSize: '30rpx',}"></u-tabs>
 				:activeStyle="{color: '#222222',fontSize: '30rpx',}"></u-tabs>
 		</view>
 		</view>
-		<view class="list">
-			<view class="list-item hflex acenter" v-for="(item,index) in list" :key="index">
-				<view class="item-left vflex acenter jcenter" :class="item.status != 1 ? 'left-bg' : ''">
-					<view class="left-price" v-if="item.type == 1">{{item.price}}</view>
-					<view class="left-price" v-if="item.type == 2">满赠券</view>
-					<view class="left-text">{{item.tiaojian}}</view>
+		<view class="list" v-if="list.length> 0">
+			<view class="list-item hflex acenter jbetween" v-for="(item,index) in list" :key="index">
+				<view class="item-left vflex acenter jcenter" :class="item.is_use == 1 || item.is_expire == 1 ? 'left-bg' : ''">
+					<view class="left-price">¥{{Number(item.coupon.amount).toFixed(0)}}</view>
+					<view class="left-text" v-if="item.coupon.type == 'integral_threshold'">满{{Number(item.coupon.threshold).toFixed(0)}}元可用</view>
 				</view>
 				</view>
 				<view class="item-center vflex">
 				<view class="item-center vflex">
-					<text>{{item.title}}</text>
-					<text>{{item.intro}}</text>
-					<text>到期时间:{{item.time}}</text>
+					<text>{{item.coupon.name}}</text>
+					<text>{{item.coupon.description}}</text>
+					<text>到期时间:{{item.coupon.expired_at.slice(0,-9)}}</text>
 				</view>
 				</view>
 				<view class="item-right hflex acenter jcenter">
 				<view class="item-right hflex acenter jcenter">
-					<view class="btn" v-if="item.status == 1">使用</view>
-					<image src="static/yishiyong.png" mode="aspectFill" v-if="item.status == 2"></image><!-- 已使用 -->
-					<image src="static/yishixiao.png" mode="aspectFill" v-if="item.status == 3"></image><!-- 已失效 -->
+					<view class="btn" v-if="item.is_use == 0 && item.is_expire == 0">使用</view>
+					<image src="static/yishiyong.png" mode="aspectFill" v-if="item.is_use == 1"></image><!-- 已使用 -->
+					<image src="static/yishixiao.png" mode="aspectFill" v-if="item.is_expire == 1"></image><!-- 已失效 -->
 				</view>
 				</view>
 			</view>
 			</view>
 		</view>
 		</view>
+		<view class="hflex acenter jcenter " style="height: 100vh;" v-else >
+			<u-empty mode="data"></u-empty>
+		</view>
 	</view>
 	</view>
 </template>
 </template>
 
 
 <script>
 <script>
+	import $api from '@/static/js/api.js'
 	export default {
 	export default {
 		data() {
 		data() {
 			return {
 			return {
 				tabs: [
 				tabs: [
 					{
 					{
-						id: '',
 						name: '全部'
 						name: '全部'
 					},
 					},
 					{
 					{
-						id: '',
 						name: '待使用'
 						name: '待使用'
 					},
 					},
 					{
 					{
-						id: '',
 						name: '已使用'
 						name: '已使用'
 					},
 					},
 					{
 					{
-						id: '',
 						name: '已失效'
 						name: '已失效'
 					},
 					},
 				],
 				],
 				current: 0,
 				current: 0,
-				list: []
+				list: [],
+				page: 1,
+				last_page: 1
 			}
 			}
 		},
 		},
 		onLoad() {
 		onLoad() {
 			this.getlist()
 			this.getlist()
 		},
 		},
+		onReachBottom() {
+			if(this.page < this.last_page) {
+				this.page++
+				this.getlist()
+			} else {
+				uni.$u.toast('已经到底了')
+				return
+			}
+		},
 		methods: {
 		methods: {
-			changetab() {},
+			changetab(e) {
+				console.log(e);
+				this.current = e.index
+				this.list = []
+				this.page = 1
+				this.getlist()
+			},
 			getlist() {
 			getlist() {
-				for(var i=0;i<10;i++) {
-					var data = {
-						title: '租赁设备优惠券',
-						price: '50',
-						tiaojian: '满1000元可用',
-						intro: '仅用于租赁设备时抵扣',
-						status: '1',
-						time: '2023.12.23',
-						type: '1'
-					}
-					this.list.push(data)
+				var _this = this
+				var is_expire = ''
+				var is_use = ''
+				if(_this.current == 1) {
+					is_expire = 0
+					is_use = 0
+				} else if(_this.current == 2) {
+					is_use = 1
+				} else if(_this.current == 3) {
+					is_expire = 1
 				}
 				}
+				$api.req({
+					url: 'user/coupon',
+					data: {
+						is_page: 1,
+						page: _this.page,
+						limit: 10,
+						is_expire: is_expire,
+						is_use: is_use
+					}
+				}, function(res) {
+					if(res.code == 10000) {
+						_this.list = _this.list.concat(res.data.list)
+						_this.last_page = res.data.last_page
+					}
+				})
 			}
 			}
 		}
 		}
 	}
 	}
@@ -111,7 +141,7 @@
 				}
 				}
 				.item-center {
 				.item-center {
 					padding: 16rpx 20rpx;
 					padding: 16rpx 20rpx;
-					width: 362rpx;
+					max-width: 362rpx;
 					text {
 					text {
 						font-size: 20rpx;
 						font-size: 20rpx;
 						font-family: PingFangSC, PingFang SC;
 						font-family: PingFangSC, PingFang SC;
@@ -126,11 +156,12 @@
 						padding: 0 0 8rpx;
 						padding: 0 0 8rpx;
 					}
 					}
 					text:last-child {
 					text:last-child {
-						font-size: 20rpx;
+						font-size: 18rpx;
 						font-family: SFPro, SFPro;
 						font-family: SFPro, SFPro;
 						font-weight: 400;
 						font-weight: 400;
 						color: #666666;
 						color: #666666;
 						padding: 24rpx 0 0;
 						padding: 24rpx 0 0;
+						white-space: nowrap;
 					}
 					}
 				}
 				}
 				.item-left {
 				.item-left {

+ 32 - 18
pageC/zuji-list.vue

@@ -40,6 +40,7 @@
 </template>
 </template>
 
 
 <script>
 <script>
+	import $api from '@/static/js/api.js'
 	export default {
 	export default {
 		data() {
 		data() {
 			return{
 			return{
@@ -47,23 +48,23 @@
 				current:0,
 				current:0,
 				tabs: [
 				tabs: [
 					{
 					{
-						id: 'zixun',
+						id: 'info',
 						name: '资讯'
 						name: '资讯'
 					},
 					},
 					{
 					{
-						id: 'wenzhang',
+						id: 'article',
 						name: '文章'
 						name: '文章'
 					},
 					},
 					{
 					{
-						id: 'shipin',
+						id: 'video',
 						name: '视频'
 						name: '视频'
 					},
 					},
 					{
 					{
-						id: 'luntan',
+						id: 'post',
 						name: '论坛'
 						name: '论坛'
 					},
 					},
 					{
 					{
-						id: 'shangpin',
+						id: 'goods',
 						name: '商品'
 						name: '商品'
 					},
 					},
 				],
 				],
@@ -75,12 +76,23 @@
 				}],
 				}],
 				show_manager: false,
 				show_manager: false,
 				select_all: [],
 				select_all: [],
-				quanxuan: false
+				quanxuan: false,
+				page: 1,
+				last_page: 1
 			}
 			}
 		},
 		},
 		onLoad() {
 		onLoad() {
 			this.getlist()
 			this.getlist()
 		},
 		},
+		onReachBottom() {
+			if(this.page < this.last_page) {
+				this.page++
+				this.getlist()
+			} else {
+				uni.$u.toast('已经到底了')
+				return
+			}
+		},
 		methods: {
 		methods: {
 			/* 全选 */
 			/* 全选 */
 			selectall() {
 			selectall() {
@@ -117,19 +129,21 @@
 				this.getlist()
 				this.getlist()
 			},
 			},
 			getlist() {
 			getlist() {
-				
-				for(var i=0;i<10;i++) {
-					var data = {
-						id: '000' + i,
-						img: 'https://cdn.uviewui.com/uview/album/1.jpg',
-						name: '新传专题04 | 虚拟现实及其在新闻领域的运用',
-						time: '3小时前',
-						like_num: 10,
-						comment_num: 235,
-						price: 5156
+				var _this = this
+				$api.req({
+					url: 'browse',
+					data: {
+						is_page: 1,
+						page: _this.page,
+						limit: 10,
+						source_type: _this.tabs[_this.current].id
 					}
 					}
-					this.list.push(data)
-				}
+				}, function(res) {
+					if(res.code == 10000) {
+						_this.list = _this.list.concat(res.data.list)
+						_this.last_page = res.data.last_page
+					}
+				})
 			},
 			},
 		},
 		},
 	}
 	}

+ 1 - 1
pages/mine/index.vue

@@ -156,7 +156,7 @@
 		data() {
 		data() {
 			return {
 			return {
 				default_avatar: require('@/static/logo.png'),
 				default_avatar: require('@/static/logo.png'),
-				// default_bg: require('../../static/images/vip_bg.png'),
+				default_bg: require('../../static/images/vip_bg.png'),
 				bg_list: [],
 				bg_list: [],
 				show_bg: false,
 				show_bg: false,
 				bg_active: -1,
 				bg_active: -1,