|
@@ -21,8 +21,6 @@
|
|
|
<image src="../../static/img/icon_store.png" mode="" class="shopBoximg"></image>
|
|
|
<view class="shopCont">
|
|
|
<view class="shopName">{{orderData.shopName}}</view>
|
|
|
-
|
|
|
-
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
@@ -48,7 +46,14 @@
|
|
|
<view class="informationTxt">单号:</view>
|
|
|
<view class="informationNum">{{orderData.code}}</view>
|
|
|
</view>
|
|
|
-
|
|
|
+ <view class="informationLine">
|
|
|
+ <view class="informationTxt">接车时间:</view>
|
|
|
+ <view class="informationNum">{{orderData.billDate}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="informationLine">
|
|
|
+ <view class="informationTxt">服务顾问:</view>
|
|
|
+ <view class="informationNum">{{orderData.pickName?orderData.pickName:''}}</view>
|
|
|
+ </view>
|
|
|
|
|
|
<view class="informationLine" v-if="Comment">
|
|
|
<view class="informationTxt">备注:</view>
|
|
@@ -67,12 +72,15 @@
|
|
|
<view class="detailedName"><span v-if="item.CardDetailID" class="kaColor">卡</span>{{item.ItemName}}
|
|
|
</view>
|
|
|
<view class="secondBox" :class="{noLine:index == orderData.listItems.length-1}">
|
|
|
- <view class="comment" v-if="ItemComment&&item.Comment">{{item.Comment}}</view>
|
|
|
+ <view>
|
|
|
+ <view class="comment" v-if="ItemComment&&item.Comment">{{item.Comment}}</view>
|
|
|
+ </view>
|
|
|
+
|
|
|
<view class="secondRight">
|
|
|
<!-- <view class="grayPrice">¥{{item.CheckOutTaxRate}}</view> -->
|
|
|
- <view class="price" v-if="ItemMoney">
|
|
|
+ <view class="price" v-if="ItemMoney&&item.RealMoney">
|
|
|
<span>¥</span>
|
|
|
- {{item.AmountMoney?item.AmountMoney:0}}
|
|
|
+ {{item.RealMoney}}
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -95,12 +103,15 @@
|
|
|
<view class="qty">x{{item.SaleQty}}</view>
|
|
|
</view>
|
|
|
<view class="secondBox" :class="{noLine:index == orderData.listParts.length-1}">
|
|
|
- <view class="comment" v-if="GoodsComment&&item.Comment">{{item.Comment}}</view>
|
|
|
+ <view>
|
|
|
+ <view class="comment" v-if="GoodsComment&&item.Comment">{{item.Comment}}</view>
|
|
|
+ </view>
|
|
|
+
|
|
|
<view class="secondRight">
|
|
|
<!-- <view class="grayPrice">¥{{item.CheckOutTaxRate}}</view> -->
|
|
|
- <view class="price" v-if="ItemMoney">
|
|
|
+ <view class="price" v-if="ItemMoney&&item.RealMoney">
|
|
|
<span>¥</span>
|
|
|
- {{item.AmountMoney?item.AmountMoney:0}}
|
|
|
+ {{item.RealMoney}}
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|