|
@@ -53,21 +53,21 @@
|
|
|
</view>
|
|
|
|
|
|
<view class="CarModel" v-if="orderData.billsheet.CarModel">{{orderData.billsheet.CarModel}}</view>
|
|
|
- <view class="informationLine" >
|
|
|
+ <view class="goodscostLine" >
|
|
|
<view class="informationTxt">进店里程:</view>
|
|
|
- <view class="informationNum" v-if="orderData.billsheet.CurrentMileage>0">
|
|
|
+ <view class="goodsCostNum3 " v-if="orderData.billsheet.CurrentMileage>0">
|
|
|
{{orderData.billsheet.CurrentMileage}}km
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="informationLine" >
|
|
|
+ <view class="goodscostLine" >
|
|
|
<view class="informationTxt">建议下次保养里程:</view>
|
|
|
- <view class="informationNum" v-if="orderData.billsheet.NextCareMilage">
|
|
|
+ <view class="goodsCostNum3 " v-if="orderData.billsheet.NextCareMilage">
|
|
|
{{orderData.billsheet.NextCareMilage}}km
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="informationLine" v-if="orderData.billsheet.SheetType==1">
|
|
|
+ <view class="goodscostLine" v-if="orderData.billsheet.SheetType==1">
|
|
|
<view class="informationTxt">建议下次保养时间:</view>
|
|
|
- <view class="informationNum" v-if="orderData.billsheet.NextCareDate">
|
|
|
+ <view class="goodsCostNum3 " v-if="orderData.billsheet.NextCareDate">
|
|
|
{{orderData.billsheet.NextCareDate.slice(0,10)}}
|
|
|
</view>
|
|
|
</view>
|
|
@@ -154,7 +154,7 @@
|
|
|
</view>
|
|
|
|
|
|
<!-- 项目明细 -->
|
|
|
- <view class="detailedBox itemBox" v-if=" orderData.listItems.length!=0" style="padding-bottom: 0;">
|
|
|
+ <view class="detailedBox itemBox" v-if=" orderData.listItems.length!=0" >
|
|
|
<view class="detailedTitle">项目</view>
|
|
|
<view class="detailedLineBox">
|
|
|
<view class="detailedLine" v-for="(item,index) in orderData.listItems">
|
|
@@ -168,10 +168,10 @@
|
|
|
</view>
|
|
|
<view class="itemWorkHoursBox" v-if="itemWorkHours&&itemWorkHours" :class="{nopb:ItemComment&&item.Comment}">
|
|
|
<view class="itemWorkHours" v-if="itemWorkHours">
|
|
|
- 工时:{{item.SaleQty}}
|
|
|
+ 工时:<span class="SalePrice">{{item.SaleQty}}</span>
|
|
|
</view>
|
|
|
<view class="itemPrice" v-if="itemWorkHours">
|
|
|
- 单价:{{item.SalePrice}}
|
|
|
+ 单价:<span class="SalePrice">{{item.SalePrice}}</span>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="secondBox" v-if="ItemComment" :class="{noLine:index == orderData.listItems.length-1}">
|
|
@@ -197,23 +197,29 @@
|
|
|
<view class="goodTop">
|
|
|
<view class="detailedName"><span v-if="item.CardDetailID"
|
|
|
class="kaColor">卡</span>
|
|
|
- <span v-if="brandSetting">{{item.Brand}}</span>
|
|
|
- {{item.GoodsName}}
|
|
|
- <span v-if="specSetting">{{item.Spec}}</span>
|
|
|
- <span v-if="factoryNumber">{{item.FactoryCode}}</span>
|
|
|
+ <span class="GoodsName" style="padding-right: 4rpx;" v-if="brandSetting&&item.Brand">{{item.Brand}} </span>
|
|
|
+ <span class="GoodsName">{{item.GoodsName}}</span>
|
|
|
+ <span class="GoodsName" style="padding-left: 4rpx;" v-if="specSetting&&item.Spec"> {{item.Spec}}</span>
|
|
|
+ <span class="GoodsName" v-if="factoryNumber&&item.FactoryCode">({{item.FactoryCode}})</span>
|
|
|
+ </view>
|
|
|
+ <view class="price" v-if="goodsMoney">
|
|
|
+ <span>¥</span>
|
|
|
+ {{item.AmountMoney?item.AmountMoney:0}}
|
|
|
</view>
|
|
|
- <view class="qty" v-if="goodsNumber">x{{item.SaleQty}}</view>
|
|
|
+ <!-- <view class="qty" v-if="goodsNumber">x{{item.SaleQty}}</view> -->
|
|
|
</view>
|
|
|
- <view class="secondBox" v-if="GoodsComment" :class="{noLine:index == orderData.listParts.length-1}">
|
|
|
- <view class="comment" v-if="GoodsComment">{{item.Comment}}</view>
|
|
|
- <view class="secondRight">
|
|
|
- <!-- <view class="grayPrice">¥{{item.CheckOutTaxRate}}</view> -->
|
|
|
- <view class="price" v-if="goodsPrice">
|
|
|
- <span>¥</span>
|
|
|
- {{item.AmountMoney?item.AmountMoney:0}}
|
|
|
- </view>
|
|
|
+ <view class="itemWorkHoursBox" v-if="itemWorkHours&&itemWorkHours" :class="{nopb:GoodsComment&&item.Comment}">
|
|
|
+ <view class="itemWorkHours" v-if="goodsNumber">
|
|
|
+ 数量:<span class="SalePrice">{{item.SaleQty}}</span>
|
|
|
+ </view>
|
|
|
+ <view class="itemPrice" v-if="goodsPrice">
|
|
|
+ 单价:<span class="SalePrice">{{item.SalePrice}}</span>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="secondBox" v-if="GoodsComment" :class="{noLine:index == orderData.listParts.length-1}">
|
|
|
+ <view class="comment" v-if="GoodsComment&&item.Comment">{{item.Comment}}</view>
|
|
|
+
|
|
|
+ </view>
|
|
|
|
|
|
|
|
|
</view>
|
|
@@ -318,6 +324,7 @@
|
|
|
itemPrice:false,
|
|
|
iStatusBarHeight:'',
|
|
|
ShowSetting:'',
|
|
|
+ goodsMoney:'',
|
|
|
}
|
|
|
},
|
|
|
onLoad(opt) {
|
|
@@ -426,7 +433,9 @@
|
|
|
if (item.fieldValue == 'itemPrice') {
|
|
|
this.itemPrice = item.isChecked
|
|
|
}
|
|
|
-
|
|
|
+ if (item.fieldValue == 'goodsMoney') {
|
|
|
+ this.goodsMoney = item.isChecked
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
@@ -611,6 +620,13 @@
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
+ .SalePrice{
|
|
|
+ color: #3C3C3C;
|
|
|
+ font-weight: 600;
|
|
|
+ }
|
|
|
+ .GoodsName{
|
|
|
+ font-size: 28rpx !important;
|
|
|
+ }
|
|
|
.itemWorkHoursBox{
|
|
|
display: flex;
|
|
|
font-size: 24rpx;
|
|
@@ -882,8 +898,9 @@
|
|
|
|
|
|
|
|
|
.detailedName {
|
|
|
- font-size: 26rpx;
|
|
|
+ font-size: 28rpx;
|
|
|
color: #3C3C3C;
|
|
|
+ font-weight: 600;
|
|
|
}
|
|
|
|
|
|
.kaColor {
|
|
@@ -946,7 +963,7 @@
|
|
|
font-weight: 500;
|
|
|
/* color: #FF0000; */
|
|
|
display: flex;
|
|
|
-
|
|
|
+ color: #3C3C3C;
|
|
|
align-items: center;
|
|
|
}
|
|
|
|
|
@@ -1357,4 +1374,7 @@
|
|
|
border-radius: 36rpx;
|
|
|
border: 2rpx solid #DDDDDD;
|
|
|
}
|
|
|
+ .goodscostTxt{
|
|
|
+ color: #999999;
|
|
|
+ }
|
|
|
</style>
|