|
@@ -41,13 +41,13 @@
|
|
|
|
|
|
<!-- -->
|
|
<!-- -->
|
|
<view class="itemBox">
|
|
<view class="itemBox">
|
|
- <view class="type">
|
|
|
|
|
|
+ <view class="type" :class="{orangeColor:item2.type==1}" @click="select(item2,'1')">
|
|
<view class="typeName">喷漆</view>
|
|
<view class="typeName">喷漆</view>
|
|
- <view class=""><span class="renminbi">¥</span>{{item2.PSalePrice}}</view>
|
|
|
|
|
|
+ <view class="money"><span class="renminbi">¥</span>{{item2.PSalePrice?item2.PSalePrice:'0'}}</view>
|
|
</view>
|
|
</view>
|
|
- <view class="type marginLeft">
|
|
|
|
|
|
+ <view class="type marginLeft" :class="{orangeColor:item2.type==2}" @click="select(item2,'2')">
|
|
<view class="typeName">钣金喷漆</view>
|
|
<view class="typeName">钣金喷漆</view>
|
|
- <view class=""><span class="renminbi">¥</span>{{item2.BPSalePrice}}</view>
|
|
|
|
|
|
+ <view class="money"><span class="renminbi">¥</span>{{item2.BPSalePrice?item2.BPSalePrice:'0'}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -74,7 +74,11 @@
|
|
onLoad() {
|
|
onLoad() {
|
|
this.getData();
|
|
this.getData();
|
|
},
|
|
},
|
|
- methods: {
|
|
|
|
|
|
+ methods: {
|
|
|
|
+ select(item,type){
|
|
|
|
+ console.log('type'+type);
|
|
|
|
+ item.type = type
|
|
|
|
+ },
|
|
changeState(item) {
|
|
changeState(item) {
|
|
item.open = !item.open
|
|
item.open = !item.open
|
|
},
|
|
},
|
|
@@ -246,5 +250,18 @@
|
|
border-bottom: 2rpx solid #EEEEEE;
|
|
border-bottom: 2rpx solid #EEEEEE;
|
|
|
|
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ .orangeColor{
|
|
|
|
+ color: #FF0000;
|
|
|
|
+ border: 2rpx solid #FF0000;
|
|
|
|
+ }
|
|
|
|
+ .renminbi{
|
|
|
|
+ font-size: 22rpx;
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ .money{
|
|
|
|
+ height: 76rpx;
|
|
|
|
+ line-height: 76rpx;
|
|
|
|
+ font-size: 32rpx;
|
|
|
|
+ color: #FF0000;
|
|
|
|
+ }
|
|
</style>
|
|
</style>
|