|
@@ -20,12 +20,19 @@
|
|
|
<view v-if="!$util.isEmpty(orderInfo.remark)" style="height:35upx;">
|
|
<view v-if="!$util.isEmpty(orderInfo.remark)" style="height:35upx;">
|
|
|
<text class="right" style="color:red;font-weight:bold;width:190upx;text-align:right;">{{orderInfo.remark}}</text>
|
|
<text class="right" style="color:red;font-weight:bold;width:190upx;text-align:right;">{{orderInfo.remark}}</text>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+
|
|
|
|
|
+ <view v-if="!$util.isEmpty(orderInfo.cardInfo)">
|
|
|
|
|
+ <text class="left">贺卡内容</text>
|
|
|
|
|
+ <text class="right" style="font-weight:bold;color:red;">{{orderInfo.cardInfo}}</text>
|
|
|
|
|
+ </view>
|
|
|
|
|
+
|
|
|
<view v-if="Number(orderInfo.orderPrice)>0">
|
|
<view v-if="Number(orderInfo.orderPrice)>0">
|
|
|
<text class="left">订单金额</text>
|
|
<text class="left">订单金额</text>
|
|
|
- <text class="right" style="color:red;font-weight:bold;">
|
|
|
|
|
|
|
+ <text class="right" style="font-weight:bold;">
|
|
|
¥{{orderInfo.orderPrice && Number(orderInfo.orderPrice)>0 ? parseFloat(orderInfo.orderPrice) : ''}}
|
|
¥{{orderInfo.orderPrice && Number(orderInfo.orderPrice)>0 ? parseFloat(orderInfo.orderPrice) : ''}}
|
|
|
</text>
|
|
</text>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+
|
|
|
<view><text class="left">数量</text>
|
|
<view><text class="left">数量</text>
|
|
|
<text class="right" style="color:red;font-weight:bold;">{{orderInfo.num}}</text>
|
|
<text class="right" style="color:red;font-weight:bold;">{{orderInfo.num}}</text>
|
|
|
</view>
|
|
</view>
|