twt пре 1 година
родитељ
комит
bed1fdd526
1 измењених фајлова са 25 додато и 3 уклоњено
  1. 25 3
      pages/user/historyDetail.vue

+ 25 - 3
pages/user/historyDetail.vue

@@ -111,6 +111,24 @@
 						{{orderData.billsheet.RepairDescription}}
 					</view>
 				</view>
+				<view class="informationLine" >
+					<view class="informationTxt">下次保养里程:</view>
+					<view class="informationNum" v-if="orderData.billsheet.NextCareMilage">
+						{{orderData.billsheet.NextCareMilage}}
+					</view>
+				</view>
+				<view class="informationLine" v-if="orderData.billsheet.SheetType==1">
+					<view class="informationTxt">建议下次保养时间:</view>
+					<view class="informationNum" v-if="orderData.billsheet.NextCareDate">
+						{{orderData.billsheet.NextCareDate}}
+					</view>
+				</view>
+				<view class="informationLine" >
+					<view class="informationTxt">保养门店联系电话:</view>
+					<view class="informationNum" v-if="orderData.billsheet.shopMobilePhone">
+						{{orderData.billsheet.shopMobilePhone}}
+					</view>
+				</view>
 				<view class="informationLine" v-if="Comment">
 					<view class="informationTxt">备注:</view>
 					<view class="informationNum" v-if="orderData.billsheet.Comment">{{orderData.billsheet.Comment}}
@@ -152,7 +170,7 @@
 
 						<view class="goodTop">
 							<view class="detailedName"><span v-if="item.CardDetailID"
-									class="kaColor">卡</span>{{item.GoodsName}}</view>
+									class="kaColor">卡</span>{{item.Brand}} {{item.GoodsName}}</view>
 							<view class="qty">x{{item.SaleQty}}</view>
 						</view>
 						<view class="secondBox" :class="{noLine:index == orderData.listParts.length-1}">
@@ -195,6 +213,10 @@
 					<view class="goodscostTxt">支付金额</view>
 					<view class="goodsCostNum">¥{{orderData.billsheet.money?orderData.billsheet.money:0}}</view>
 				</view>
+				<view class="goodscostLine" >
+					<view class="goodscostTxt">结算方式</view>
+					<view class="goodsCostNum">{{orderData.billsheet.lastPayMethod?orderData.billsheet.lastPayMethod:''}}</view>
+				</view>
 			</view>
 
 			<!-- 手机号授权 -->
@@ -862,13 +884,13 @@
 	}
 
 	.informationTxt {
-		width: 190rpx;
+		width: 200rpx;
 		color: #999999;
 	}
 
 	.informationNum {
 		color: #333333;
-		width: calc(100vw - 190rpx);
+		width: calc(100vw - 200rpx);
 	}
 
 	.copyBtn {