|
|
@@ -4,13 +4,15 @@
|
|
|
<view class="title">
|
|
|
<image class="icon" :src="info.ghsAvatar" alt="" />
|
|
|
<text class="name">
|
|
|
- <text>{{ info.ghsName}}</text>
|
|
|
+ <text v-if="info.status == 3" style="color:green;font-weight:bold;">{{ info.ghsName}}</text>
|
|
|
+ <text v-else>{{ info.ghsName}}</text>
|
|
|
</text>
|
|
|
</view>
|
|
|
<view v-if="info.refund == 2" class="status" style="color:red;border:1px solid red;border-radius:20upx;font-size:20upx;padding:5upx 12upx;margin-right:40upx;">有退款</view>
|
|
|
<view v-if="info.debt == 1" class="status" style="color:red;border:1px solid red;border-radius:20upx;font-size:20upx;padding:5upx 12upx;margin-right:40upx;">赊账</view>
|
|
|
<text v-if="info.book == 1" class="status" style="color:white;border:1px solid #657cac;border-radius:20upx;font-size:20upx;padding:5upx 12upx;margin-right:40upx;background:#657cac;">预订单</text>
|
|
|
- <view class="status">{{ getStatusName }} </view>
|
|
|
+ <view class="status" v-if="info.status == 3" style="color:green;font-weight:bold;">{{ getStatusName }} </view>
|
|
|
+ <view class="status" v-else>{{ getStatusName }} </view>
|
|
|
</view>
|
|
|
<view class="item-main" >
|
|
|
<view class="item-info">
|