Browse Source

上传

master
前端-胡立永 10 months ago
parent
commit
21a5461926
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      pages/index/order.vue

+ 3
- 3
pages/index/order.vue View File

@ -20,7 +20,7 @@
<view class="top"> <view class="top">
<view class="service"> <view class="service">
<text>{{item.goodsName}}</text>
<text>{{ tabs[item.type + 1].name }}</text>
</view> </view>
<view class="status"> <view class="status">
<text> {{item.state_dictText}}</text> <text> {{item.state_dictText}}</text>
@ -60,13 +60,13 @@
总金额<text class="num">{{ item.orderPay }}</text> 总金额<text class="num">{{ item.orderPay }}</text>
</view> </view>
<view <view
v-if="item.washPay">
v-if="item.washPay && item.type == 1">
水洗费用{{ item.washPay }} 水洗费用{{ item.washPay }}
</view> </view>
<!-- 水洗店不展示 --> <!-- 水洗店不展示 -->
<view <view
v-if="!userShop && item.rentPay">
v-if="!userShop && item.rentPay && item.type == 1">
租赁费用{{ item.rentPay }} 租赁费用{{ item.rentPay }}
</view> </view>
</view> </view>


Loading…
Cancel
Save