小程序对订单进行分类

1、请求接口拿到全部的订单数据后,要把它分类到对应的状态中,如下图
在这里插入图片描述
2、根据后台返回数据的状态进行分类

在循环数据之前要对每一个进行重新赋值避免出现重复

						//重新初始化赋值
						this.arr1 = []
						this.arr2 = []
						this.arr3 = []
						this.arr4 = []
						this.arr5 = []
						this.arr1 = res.data.data//全部订单
						this.orderList = res.data.data
//循环全部的数据,根据对应的下标进行判断分类,并push到相应的arr数组中
for(let i = 0; i < this.orderList.length; i++){
	if(this.orderList[i].is_succ == 1){
		this.orderStatus = '已完成'
		this.arr2.push(this.orderList[i])
	} else {
		if(this.orderList[i].buy_code == 0){
			this.orderStatus = '待付款'
			this.arr3.push(this.orderList[i])
			if(this.arr3.length > 0){
				uni.showTabBarRedDot({
					index:1
				})
			} else {
				uni.hideTabBarRedDot({
					index:1
				})
			}
		} else {
			if(this.orderList[i].is_refund == 0){
				this.orderStatus = '待使用'
				this.arr4.push(this.orderList[i])
			} else {
				this.arr5.push(this.orderList[i])
				if(this.arr5.length > 0){
					uni.showTabBarRedDot({
						index:1
					})
				} else {
					uni.hideTabBarRedDot({
						index:1
					})
				}
			}
		}
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值