Browse Source

上传

master
前端-胡立永 8 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="service">
<text>{{item.goodsName}}</text>
<text>{{ tabs[item.type + 1].name }}</text>
</view>
<view class="status">
<text> {{item.state_dictText}}</text>
@ -60,13 +60,13 @@
总金额<text class="num">{{ item.orderPay }}</text>
</view>
<view
v-if="item.washPay">
v-if="item.washPay && item.type == 1">
水洗费用{{ item.washPay }}
</view>
<!-- 水洗店不展示 -->
<view
v-if="!userShop && item.rentPay">
v-if="!userShop && item.rentPay && item.type == 1">
租赁费用{{ item.rentPay }}
</view>
</view>


Loading…
Cancel
Save