优化接单报价按钮

This commit is contained in:
TOP糯米 2023-03-19 14:59:49 +08:00
parent 8fb647385a
commit a48a762ded
1 changed files with 11 additions and 9 deletions

View File

@ -27,15 +27,17 @@
<view class="order-item-box" v-for="(v, k) in item.list" :key="k" @click.stop="toDetail(v.id)">
<order-item :order="v">
<view class="order-action">
<view
v-if="
v.listType == 't1' ||
v.listType == 't3' ||
(v.listType == 't2' && v.orderType == 1)
"
class="price"
>¥ {{ v.price }}</view
>
<view class="price">
<text
v-if="
v.listType == 't1' ||
v.listType == 't3' ||
(v.listType == 't2' && v.orderType == 1)
"
>
¥ {{ v.price }}
</text>
</view>
<get-action
:order="v"
@postPrice="showPostPriceModal(v.id)"