guo 2 anos atrás
pai
commit
87617f42d0

+ 1 - 1
pages/index/discountCard.vue

@@ -304,7 +304,7 @@
 		width: 118rpx;
 		height: 100rpx;
 		position: absolute;
-		top: -24rpx;
+		top: -38rpx;
 		right: 0;
 	}
 	.shareB{

+ 1 - 1
pages/index/discountCardDetail.vue

@@ -102,7 +102,7 @@
 		margin: -100rpx 24rpx 0rpx;
 		background-color: #FFFFFF;
 		border-radius: 10rpx;
-		padding: 20rpx;
+		padding: 40rpx 20rpx;
 	}
 
 	.detailTop {

+ 8 - 5
pages/index/paint.vue

@@ -41,12 +41,12 @@
 
 					<!--  -->
 					<view class="itemBox">
-						<view class="type" :class="{orangeColor:item2.type==1}" @click="select(item2,'1')">
-							<view class="typeName">喷漆</view>
+						<view class="type" :class="{orangeLine:item2.type==1}" @click="select(item2,'1')">
+							<view class="typeName" :class="{orangeColor:item2.type==1}">喷漆</view>
 							<view class="money"><span class="renminbi">¥</span>{{item2.PSalePrice?item2.PSalePrice:'0'}}</view>
 						</view>
-						<view class="type marginLeft" :class="{orangeColor:item2.type==2}" @click="select(item2,'2')">
-							<view class="typeName">钣金喷漆</view>
+						<view class="type marginLeft" :class="{orangeLine:item2.type==2}" @click="select(item2,'2')">
+							<view class="typeName" :class="{orangeColor:item2.type==2}">钣金喷漆</view>
 							<view class="money"><span class="renminbi">¥</span>{{item2.BPSalePrice?item2.BPSalePrice:'0'}}</view>
 						</view>
 					</view>
@@ -250,9 +250,12 @@
 		border-bottom: 2rpx solid #EEEEEE;
 
 	}
+	.orangeLine{
+		border: 2rpx solid #FF0000;
+	}
 	.orangeColor{
 		color: #FF0000;
-		border: 2rpx solid #FF0000;
+		
 	}
 	.renminbi{
 		font-size: 22rpx;

+ 5 - 4
pages/index/vipCard.vue

@@ -47,8 +47,8 @@
 				<view style="margin-left: 10rpx;color: #3C3C3C;font-size: 24rpx;">不展示剩余为0项</view>
 			</view>
 
-			<view class="itemBox" v-for="(item,index) in vipData.cardTimeList">
-				<view v-if="AmountQtyJs(item.list)">
+			<view v-for="(item,index) in vipData.cardTimeList">
+				<view v-if="AmountQtyJs(item.list)" class="itemBox">
 				<view class="itemTop">
 					<view class="itemName">{{item.PackName}}</view>
 					<view class="tiaokuan" @click="useCl(item.useComment)">使用条款</view>
@@ -322,7 +322,7 @@
 
 	.headerBox {
 		background-color: #171723;
-		height: 527rpx;
+		height: 525rpx;
 		width: 100vw;
 		padding: 30rpx 0rpx;
 		/* position: fixed;
@@ -584,7 +584,8 @@
 
 	.shiyongContTopTitle {
 		font-size: 30rpx;
-		color: #3C3C3C;
+		color: #3C3C3C;
+		font-weight: bold;
 	}
 
 	.shiyonghtml {

+ 4 - 2
pages/user/addCar/addCar.vue

@@ -351,7 +351,8 @@
 					brandLogo: "",
 					buyDate: this.time,
 					guidePrice: "",
-					vIN: this.vin,
+					vIN: this.vin,
+					id:this.carId,
 				};
 				if(this.carModelInfo){
 					cardata = {
@@ -370,7 +371,8 @@
 						brandLogo: this.carModelInfo.carModelInfo.logo,
 						buyDate: this.time,
 						guidePrice: this.carModelInfo.carModelInfo.guidePrice,
-						vIN: this.vin,
+						vIN: this.vin,
+						id:this.carId,
 					}
 				}
 				this.$http('opencarInfoOwner/addCarOwner', cardata, 'POST').then(res => {

+ 12 - 4
pages/user/historySpend.vue

@@ -12,7 +12,7 @@
 			<view class="itemN">
 				<view class="itemContent" v-if="item.listItems.length != 0" v-for="(v,i) in item.listItems">{{v.ItemName}},</view>
 			</view>
-			<view class="">
+			<view class="itemN">
 				<view class="itemContent" v-if="item.listParts.length != 0" v-for="(v,i) in item.listParts">{{v.GoodsName}},</view>
 			</view>
 			
@@ -154,11 +154,14 @@
 	}
 
 	.itemN {
+		margin: 15rpx 0rpx;
 		display: flex;
-		
+		/* 隐藏文字显示 ...不换行 */
+		overflow: hidden;
+		text-overflow: ellipsis;
+		white-space: nowrap;
 	}
-	.shopName,
-	.itemContent {
+	.shopName{
 		color: #666666;
 		font-size: 24rpx;
 		margin: 15rpx 0rpx;
@@ -166,6 +169,11 @@
 		overflow: hidden;
 		text-overflow: ellipsis;
 		white-space: nowrap;
+	}
+	.itemContent {
+		color: #666666;
+		font-size: 24rpx;
+		
 	}
 	.noMore {
 		text-align: center;