This commit is contained in:
zmj 2024-05-11 19:03:24 +08:00
parent 2e7e193da9
commit 81f6a8c603
1 changed files with 5 additions and 6 deletions

View File

@ -7,7 +7,7 @@
<view class=""> <view class="">
<view class="" style="display: flex;justify-content: space-around;margin-top: 24rpx;color:#777777"> <view class="" style="display: flex;justify-content: space-around;margin-top: 24rpx;color:#777777">
<view :class="{act: tabIndex==1}" @click="changeTabs(1)"> <view :class="{act: tabIndex==1}" @click="changeTabs(1)">
订单列表 报价列表
</view> </view>
<view :class="{act: tabIndex==2}" @click="changeTabs(2)"> <view :class="{act: tabIndex==2}" @click="changeTabs(2)">
报价记录 报价记录
@ -123,13 +123,12 @@
<view class="status-png" v-if="tabIndex==2"> <view class="status-png" v-if="tabIndex==2">
<!-- <image :src="item.is_adopt?successPng:errPng" style="width: 108rpx; height: 84rpx;"> <!-- <image :src="item.is_adopt?successPng:errPng" style="width: 108rpx; height: 84rpx;">
</image> --> </image> -->
<image v-if="is_storage==1 && is_adopt == 1" :src="successPng" <image v-if="item.is_adopt==1" :src="waitPng" style="width: 108rpx; height: 84rpx;">
</image>
<image v-else-if="item.is_adopt==2" :src="successPng"
style="width: 108rpx; height: 84rpx;"> style="width: 108rpx; height: 84rpx;">
</image> </image>
<image v-else-if="is_storage==0 && is_adopt == 1" :src="errPng" <image v-else :src="errPng" style="width: 108rpx; height: 84rpx;">
style="width: 108rpx; height: 84rpx;">
</image>
<image v-else :src="waitPng" style="width: 108rpx; height: 84rpx;">
</image> </image>
</view> </view>
</view> </view>