|
|
@ -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> |
|
|
|