|
@@ -51,27 +51,31 @@
|
|
|
<view class="item">
|
|
|
<text class="label">单价</text>
|
|
|
<text class="desc">{{ item.singlePrice }}</text>
|
|
|
- </view>
|
|
|
+ </view>
|
|
|
<view class="item">
|
|
|
<text class="label">总价</text>
|
|
|
<text class="desc">{{ item.resalePrice }}</text>
|
|
|
</view>
|
|
|
-
|
|
|
- <view class="item">
|
|
|
- <text class="label">时间</text>
|
|
|
- <text class="desc">{{ item.createTime }}</text>
|
|
|
- </view>
|
|
|
+
|
|
|
+
|
|
|
<view class="item">
|
|
|
<text class="label">支付状态</text>
|
|
|
<text class="desc">
|
|
|
- <text v-if="item.isPay==1">已支付</text>
|
|
|
- <text v-else>未支付</text>
|
|
|
+ <text v-if="item.isPay==0">未支付</text>
|
|
|
+ <text v-else-if="item.isPay==1">已支付</text>
|
|
|
+ <text v-else-if="item.isPay==2">支付失败</text>
|
|
|
+ <text v-else-if="item.isPay==3">支付中</text>
|
|
|
+ <text v-else>支付中</text>
|
|
|
</text>
|
|
|
</view>
|
|
|
<view class="item" v-if="item.payTime">
|
|
|
- <text class="label">支付时间</text>
|
|
|
+ <text class="label">采购时间</text>
|
|
|
<text class="desc">{{ item.payTime }}</text>
|
|
|
</view>
|
|
|
+ <view class="item">
|
|
|
+ <text class="label">创建时间</text>
|
|
|
+ <text class="desc">{{ item.createTime }}</text>
|
|
|
+ </view>
|
|
|
<view style="height: 50px;"></view>
|
|
|
</view>
|
|
|
</view>
|