zhanghui 1 éve
szülő
commit
075fa58e3a

+ 35 - 5
pages/groupbuying_details/index.vue

@@ -124,9 +124,14 @@
 								<view  class="all-products-body" v-for="(item, index) in storeInfo.goodsList" :key="index">
 
 									<view :id="'goods'+item.id" class="all-products-item">
-										<image
-											:src="item.goodsCover"
-											mode="scaleToFill"  @click="getGoodsDetails(item.id)"/>
+
+										<view class="goodsImageView">
+											<image :src="item.goodsCover" mode="scaleToFill"  @click="getGoodsDetails(item.id)"/>
+
+											<view v-if="item.isSale === 0" class="removeSth">
+												<text>已下架</text>
+											</view>
+										</view>
 
 										<view class="all-products-item-content">
 											<view class="all-products-item-content-t"  @click="getGoodsDetails(item.id)">
@@ -138,7 +143,7 @@
 													<text class="line-thr">{{item.salePrice}}</text>
 												</view>
 
-												<view class="u-number-box" v-if="!storeInfo.isEnd">
+												<view class="u-number-box" v-if="!storeInfo.isEnd && storeInfo.goodsList[index].isSale === 1 ">
 													<u-number-box :disabled="!isShowBottom" :min=0 :max="10" v-model="storeInfo.goodsList[index].num" @change="addGoodsNum"></u-number-box>
 												</view>
 											</view>
@@ -2200,12 +2205,37 @@ action-sheet-item {
 			display: flex;
 			margin-bottom: 20rpx;
 
-			image {
+			.goodsImageView{
+				position: relative;
 				width: 128rpx;
 				height: 128rpx;
 				border-radius: 4rpx;
+				overflow: hidden;
+				.removeSth{
+					position: absolute;
+					left: 0;
+					top: 0;
+					width: 128rpx;
+					height: 128rpx;
+					border-radius: 4rpx;
+					background-color: #999999;
+					display: flex;
+					flex-direction: row;
+					justify-content: center;
+					line-height: 128rpx;
+					opacity:0.9;
+					font-family: "楷体","楷体_GB2312";
+					font-weight: bold;
+				}
+
+				image {
+					width: 128rpx;
+					height: 128rpx;
+					border-radius: 4rpx;
+				}
 			}
 
+
 			.all-products-item-content {
 				flex-grow: 1;
 				display: flex;

+ 12 - 4
pages/groupbuying_details/order_details_confirm/index.vue

@@ -191,9 +191,8 @@
 								 v-for="(item, index) in selfTakeList"
 								 :key="index">
 							<view class="group_14 flex-row justify-between">
-								<view class="flex-col">
+								<view class="flex-col" >
 									<text class="text_26" >{{item.name}}</text>
-									<text class="text_27" >{{item.address}}</text>
 								</view>
 								<view class="flex-row justify-between">
 									<text class="text-group_9" >距您{{item.distanceDesc}}</text>
@@ -201,6 +200,11 @@
 										   src="http://www.gzzzyd.com/groupon/order_details/距离@2x.png"/>
 								</view>
 							</view>
+							<view class="text_27_view ">
+								<text class="text_27" >{{item.address}}</text>
+							</view>
+
+
 							<view class="group_15 flex-row">
 								<view class="tag_1 flex-col">
 									<text class="c">营业时间: {{item.busStartTimeDesc}}-{{item.busEndTimeDesc}}</text>
@@ -1468,6 +1472,10 @@ export default {
 <style lang="scss" scoped>
 	@import "/static/css/common.css";
 
+	.text_27_view{
+		padding-right: 5rpx;
+	}
+
 	.block_3 {
 		background-color: rgba(255, 255, 255, 1);
 		border-radius: 4px;
@@ -2009,8 +2017,8 @@ export default {
 
 		.am2 {
 			margin-bottom: 20rpx;
-			height: 34rpx;
 			font-size: 24rpx;
+			padding: 5rpx 0;
 			font-weight: 400;
 			color: #999999;
 			line-height: 34rpx;
@@ -2165,7 +2173,7 @@ export default {
 		font-size: 24rpx;
 		font-weight: NaN;
 		text-align: left;
-		white-space: nowrap;
+		/*white-space: nowrap;*/
 		line-height: 34rpx;
 		margin-top: 16rpx;
 	}