Commit 5d76af2c by zhangzhen

细节优化

parent c3bbe92f
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<text class="cuIcon cuIcon-title text-pink"></text> <text class="cuIcon cuIcon-title text-pink"></text>
<text class="text-title text-bold text-xl">{{item.storeName||'门店名称'}}</text> <text class="text-title text-bold text-xl">{{item.storeName||'门店名称'}}</text>
</view> </view>
<text :class="item.status==1?'text-pink':item.status==0?'text-cyan':item.status==2?'text-gray':'text-red'">{{item.refundStatus>=1? refundStatusEnum[item.refundStatus]: orderStatusEnum[item.status]}}</text> <text :class="item.status==1 && !item.refundStatus?'text-pink':item.status==0 && !item.refundStatus ?'text-cyan':item.status==2?'text-gray':'text-red'">{{item.refundStatus>=1? refundStatusEnum[item.refundStatus]: orderStatusEnum[item.status]}}</text>
</view> </view>
<view class="flex-row room-image-box"> <view class="flex-row room-image-box">
......
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
</view> </view>
</view> </view>
<view v-if="orderInfo.status <= 1" class="part-2"> <view v-if="orderInfo.status <= 1 && !orderInfo.refundStatus" class="part-2">
<view class="flex-between title"> <view class="flex-between title">
<view class="flex-row"> <view class="flex-row">
<text class="cuIcon-titles text-pink text-xl"></text> <text class="cuIcon-titles text-pink text-xl"></text>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment