|
|
@@ -9,13 +9,16 @@
|
|
|
<text class="name">{{info.orderSn}} </text>
|
|
|
</view>
|
|
|
<view class="item-row">
|
|
|
- <view class="mark">{{ info.addTime.substr(5,11) }}</view>
|
|
|
+ <view class="mark">{{ info.addTime.substr(5,11) }} <text v-if="info.yfPayWay ==2" style="margin-left:16upx;color:#333333;">到付</text></view>
|
|
|
</view>
|
|
|
<view v-if="!$util.isEmpty(info.remark)" class="item-row">
|
|
|
<view class="mark" style="color:red;font-weight:bold;">{{ info.remark }}</view>
|
|
|
</view>
|
|
|
<view class="item-row">
|
|
|
- <view class="price">¥{{ parseFloat(info.realPrice) }}</view>
|
|
|
+ <view class="price" style="color:#3385FF;">
|
|
|
+ <text>¥{{ parseFloat(info.realPrice) }}</text>
|
|
|
+ <text v-if="Number(info.tkPrice)>0" style="margin-left:30upx;color:red;">已退¥{{info.tkPrice?parseFloat(info.tkPrice):0}}</text>
|
|
|
+ </view>
|
|
|
<view class="price" style="border:1upx solid #67a0f7;border-radius:10upx;font-weight:normal;color:#3385FF;font-size:32upx;width:180upx;height:80upx;justify-content:center;" @click.stop="goToDetai(info)">查看明细</view>
|
|
|
</view>
|
|
|
</view>
|