twt před 2 roky
rodič
revize
9d7e6f3c31

+ 1 - 1
pages/index/index.vue

@@ -170,7 +170,7 @@
 				<view class="hotTop">
 					<view class="hotLeft">
 						<view class="hotSx" :style="{background:'#'+themeColor}"></view>
-						<view class="hottitle">热门车型</view>
+						<view class="hottitle">热门商品</view>
 					</view>
 					<view class="hotRight" @click="goShop">
 						<view class="hotMore">更多</view>

+ 2 - 2
pages/index/onlineBooking.vue

@@ -82,8 +82,8 @@
 	      <view class="yyBleft">
 	        <img src="../../static/timg/icon_qingdan@2x.png" alt="" class="yyBleftimg">
 	      </view>
-	      <view>
-	        <view class="totalPriceBox"><span>预估总额:</span > <span class="totalPrice" :style="{color:'#'+themeColor}"><span class="qianhaospan">¥</span >{{totalPrice}}</span>  </view>
+	      <view>                                               
+	        <view class="totalPriceBox"><span>预估总额:</span > <span class="totalPrice"><span class="qianhaospan">¥</span >{{totalPrice}}</span>  </view>
 	        <span class="hejishul">合计数量: {{selectedItems.length}}</span>
 	      </view>
 	  

+ 6 - 4
pages/shop/confirm.vue

@@ -1,7 +1,7 @@
 <template>
 <view class="box">
-	<view class="topBox"></view>
-	<view class="yuanhu"></view>
+	<view class="topBox" :style="{background:'#'+themeColor}"></view>
+	<view class="yuanhu" :style="{background:'#'+themeColor}"></view>
 	<view class="goodsBox">
 		<view class="goodsBoxLeft">
 			<image :src="goodsInfo.ImgList[0].url" mode="" v-if="goodsInfo.ImgList.length>0" class="hotGoodsLineImg"></image>
@@ -68,12 +68,12 @@
 	</view>
 	
 	<view style="height:120rpx"></view>
-	<view class="bottomBox">
+	<view class="bottomBox" >
 		<view class="bottomLeft">
 			<view class="bottomLeftLine">合计 <span>¥</span> <span class="bottomPrice">{{totalMoney}}</span> </view>
 			<view class="bottomLeftLine2">总优惠:¥{{yhMoney}}</view>
 		</view>
-		<view class="bottomBtn" @click="submit">提交订单</view>
+		<view class="bottomBtn" :style="{background:'#'+themeColor}" @click="submit">提交订单</view>
 	</view>
 </view>
 </template>
@@ -101,6 +101,7 @@
 				mydata:'',
 				orderData:'',
 				shareId:'',
+				themeColor:'',
 			}
 		},
 		onLoad(opt) {
@@ -111,6 +112,7 @@
 				this.shareId=opt.shareId
 			}
 			//console.log(this.carInfo)
+			this.themeColor = uni.getStorageSync("themeColor");
 			this.userInfo = uni.getStorageSync("userInfo");
 			this.goodsInfo=uni.getStorageSync("goodsDetail");
 			this.jsMoney()

+ 4 - 3
pages/user/addCar/cailist.vue

@@ -4,14 +4,15 @@
 			<view class="line" v-for="(item,index) in carList" @click="itemClick(item)">
 				<view class="lineCont">
 					<view>
-						<image :src="item.brandLogo" mode="widthFix" class="brandLogo"></image>
+						<image :src="item.brandLogo" v-if="item.brandLogo" mode="widthFix" class="brandLogo"></image>
+						  <img src="../../../static/timg/nocar.png" alt="" class="brandLogo" v-else>
 					</view>
 					<view style="padding-left: 29rpx;">
 						<view class="carName">
-							<span>{{item.brand}} {{item.series}}</span>
+							<span>{{item.brand?item.brand:''}} {{item.series?item.series:''}}</span>
 							<view class="plateNumber">{{item.plateNumber}}</view>
 						</view>
-						<view class="carMS">{{item.carModel}}</view>
+						<view class="carMS">{{item.carModel?item.carModel:''}}</view>
 					</view>
 				</view>
 				<view class="lineBottom">

+ 4 - 2
pages/user/expertServices.vue

@@ -1,7 +1,7 @@
 <template>
 	<view class="content">
 		<!-- 我的服务顾问 -->
-		<view class="ad-bg-box" v-if="users">
+		<view class="ad-bg-box" v-if="users" :style="{background:'#'+themeColor}">
 			<view class="ad-box">
 				<view class="ad-sec-tit">
 					我的服务顾问
@@ -46,10 +46,12 @@
 			return {
 				queryManagerList: '',
 				noMoreShow: false,
-				users: ''
+				users: '',
+				themeColor:'',
 			}
 		},
 		onLoad() {
+			this.themeColor = uni.getStorageSync("themeColor");
 			this.getQueryManagerList()
 		},
 		computed: {