|
@@ -33,7 +33,7 @@
|
|
|
|
|
|
|
|
|
<view class="bottomView">
|
|
|
- <view class="saveCar" @click="addBtn">
|
|
|
+ <view class="saveCar" :style="{background:'#'+themeColor}" @click="addBtn">
|
|
|
<!-- <image src="../../../static/img/icon_tianjiacheliang.png" mode=""
|
|
|
style="width: 44rpx; height: 36rpx; margin-right: 10rpx;"></image> -->
|
|
|
<view>添加爱车</view>
|
|
@@ -51,14 +51,18 @@
|
|
|
loding: false,
|
|
|
type: '',
|
|
|
carId: '',
|
|
|
- fromMe: false,
|
|
|
+ fromMe: false,
|
|
|
+ themeColor:'',
|
|
|
+
|
|
|
}
|
|
|
},
|
|
|
onLoad(opt) {
|
|
|
this.$common.isUserId()
|
|
|
this.type = opt.type;
|
|
|
// console.log(this.type)
|
|
|
- this.fromMe = opt.fromMe
|
|
|
+ this.fromMe = opt.fromMe
|
|
|
+ this.themeColor = uni.getStorageSync("themeColor");
|
|
|
+
|
|
|
},
|
|
|
onShow() {
|
|
|
this.getqueryMyBMemberCar();
|
|
@@ -155,7 +159,7 @@
|
|
|
|
|
|
.saveCar {
|
|
|
|
|
|
- background: linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
|
|
|
+ background: #D53533;
|
|
|
margin: 23rpx 30rpx;
|
|
|
height: 74rpx;
|
|
|
|