优化接单报价按钮

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