Ver código fonte

修改团购订单样式问题

pangqijun 1 ano atrás
pai
commit
08857c6033

+ 24 - 4
components/orderList/orderList.vue

@@ -6,9 +6,10 @@
 					<view class="nl">
 						{{item.mainTitle}}
 					</view>
-					<view class="status">
-						{{item.grouponStateDesc}}
-					</view>
+					<view v-if="item.grouponStateDesc == '发布中'" class="status">{{item.grouponStateDesc}}</view>
+					<view v-else-if="item.grouponStateDesc == '申请中'" class="sqz_status">{{item.grouponStateDesc}}</view>
+					<view v-else-if="item.grouponStateDesc == '已结束'" class="js_status">{{item.grouponStateDesc}}</view>
+					<view v-else-if="item.grouponStateDesc == '已拒绝'" class="refuse_status">{{item.grouponStateDesc}}</view>
 				</view>
 				<view class="myclient_list_content">
 					<view class="subtitle">{{item.subTitle}}</view>
@@ -100,14 +101,33 @@
 		color: #111111;
 		line-height: 44rpx;
 		display: flex;
+		flex-direction: row;
+		justify-content: space-between;
 	}
 
 	.status {
-		width: 300rpx;
 		text-align: right;
 		margin-left: 30rpx;
 		color: #75BE00;
 	}
+	
+	.sqz_status {
+		text-align: right;
+		margin-left: 30rpx;
+		color: #FEA800;
+	}
+	
+	.refuse_status {
+		text-align: right;
+		margin-left: 30rpx;
+		color: #B42A3E;
+	}
+	
+	.js_status {
+		text-align: right;
+		margin-left: 30rpx;
+		color: #666666;
+	}
 
 	.myclient_list_content {
 		.subtitle {

+ 0 - 1
pages/goods/leader_order_list/index.vue

@@ -388,7 +388,6 @@ export default {
 		}
 
 		.status {
-			
 			text-align: right;
 			margin-left: 30rpx;
 			color: #FEA800;

+ 25 - 5
pages/groupbuying/groupbuying_order_details/index.vue

@@ -7,9 +7,10 @@
 						<view class="nl">
 							{{groupBuy.mainTitle}}
 						</view>
-						<view class="status">
-							{{groupBuy.grouponStateDesc}}
-						</view>
+						<view v-if="groupBuy.grouponStateDesc == '发布中'" class="status">{{groupBuy.grouponStateDesc}}</view>
+						<view v-else-if="groupBuy.grouponStateDesc == '申请中'" class="sqz_status">{{groupBuy.grouponStateDesc}}</view>
+						<view v-else-if="groupBuy.grouponStateDesc == '已结束'" class="js_status">{{groupBuy.grouponStateDesc}}</view>
+						<view v-else-if="groupBuy.grouponStateDesc == '已拒绝'" class="refuse_status">{{groupBuy.grouponStateDesc}}</view>
 					</view>
 					<view class="myclient_list_content">
 						<view class="subtitle">{{groupBuy.subTitle}}</view>
@@ -270,17 +271,36 @@ export default {
 		color: #111111;
 		line-height: 44rpx;
 		display: flex;
-
+		flex-direction: row;
+		justify-content: space-between;
+		
 		.nv {
 			flex-grow: 1;
 		}
 
 		.status {
-			width: 300rpx;
 			text-align: right;
 			margin-left: 30rpx;
 			color: #75BE00;
 		}
+		
+		.sqz_status {
+			text-align: right;
+			margin-left: 30rpx;
+			color: #FEA800;
+		}
+		
+		.refuse_status {
+			text-align: right;
+			margin-left: 30rpx;
+			color: #B42A3E;
+		}
+		
+		.js_status {
+			text-align: right;
+			margin-left: 30rpx;
+			color: #666666;
+		}
 	}
 
 	.myclient_list_content {

+ 10 - 3
pages/groupbuying_details/order_details_confirm/index.vue

@@ -17,7 +17,7 @@
 						</view>
 
 						<view>
-							<u-number-box :name="item.id" :min="0" v-model="grouponOrderData.goodsInfos[index].num" @change="calGoodsPrice"></u-number-box>
+							<u-number-box :name="item.id" :min="0" :max="10" v-model="grouponOrderData.goodsInfos[index].num" @change="calGoodsPrice"></u-number-box>
 						</view>
 					</view>
 				</view>
@@ -576,6 +576,13 @@ export default {
 			that.orderCreate()
 		},
 		orderCreate () {
+			console.log("orderCreate .. ", this.grouponOrderData.goodsInfos)
+			let goodsInfos = [];
+			this.grouponOrderData.goodsInfos.forEach(e => {
+				let g = {goodsId: e.id, num: e.num};
+				goodsInfos.push(g);
+			})
+			
 			let that = this
 			postOrderSubmit({
 				distributeMode: 1,
@@ -583,7 +590,7 @@ export default {
 				orderSource: 1,
 				grouponId: this.grouponId,
 				selfTakeId: this.selfTakeId,
-				goodsInfos: this.goods
+				goodsInfos: goodsInfos
 			}).then(res => {
 				that.orderKey = res.data.orderNo,
 					uni.showLoading({
@@ -613,7 +620,7 @@ export default {
 				uni.navigateBack({
 					delta: 1
 				})
-			}, 1000)
+			}, 500)
 			// this.SubOrder();
 		},
 		payCheck (type) {