@@ -29,9 +29,11 @@ | |||||
<view class="head"> | <view class="head"> | ||||
<view>订单编号:{{ item.couponOrderId }}</view> | <view>订单编号:{{ item.couponOrderId }}</view> | ||||
<view tt:if="{{ item.status == 0 }}" class="notice noAppoint">未确认</view> | <view tt:if="{{ item.status == 0 }}" class="notice noAppoint">未确认</view> | ||||
<view tt:if="{{ item.status == 1 }}" class="notice noAppoint">已取消</view> | |||||
<view tt:if="{{ item.status == 3 }}" class="notice refund">已退款</view> | <view tt:if="{{ item.status == 3 }}" class="notice refund">已退款</view> | ||||
<view tt:if="{{ item.status == 5 }}" class="notice confirm">已确认</view> | <view tt:if="{{ item.status == 5 }}" class="notice confirm">已确认</view> | ||||
<view tt:if="{{ item.status == 8 }}" class="notice complete">已完成</view> | <view tt:if="{{ item.status == 8 }}" class="notice complete">已完成</view> | ||||
<view tt:if="{{ item.status == 9 }}" class="notice complete">已评价</view> | |||||
</view> | </view> | ||||
<view class="body"> | <view class="body"> | ||||
<view class="items">商品名称:{{ item.couponTitle }}</view> | <view class="items">商品名称:{{ item.couponTitle }}</view> | ||||
@@ -104,7 +104,7 @@ | |||||
position: relative; | position: relative; | ||||
padding: 20rpx; | padding: 20rpx; | ||||
font-size: 30rpx; | font-size: 30rpx; | ||||
border-bottom: 1px solid #ffffff93; | |||||
border-bottom: 1px solid #ffffffbb; | |||||
} | } | ||||
.notice { | .notice { | ||||
@@ -139,7 +139,7 @@ | |||||
.list .item .body { | .list .item .body { | ||||
padding: 20rpx 20rpx; | padding: 20rpx 20rpx; | ||||
border-bottom: 1px solid #ffffff93; | |||||
border-bottom: 1px solid #ffffffbb; | |||||
} | } | ||||
.list .item .body .items { | .list .item .body .items { | ||||
@@ -4,7 +4,8 @@ | |||||
<view class="item">订单编号:{{ detail.couponOrderId }}</view> | <view class="item">订单编号:{{ detail.couponOrderId }}</view> | ||||
<view class="item">商品名称:{{ detail.couponTitle }}</view> | <view class="item">商品名称:{{ detail.couponTitle }}</view> | ||||
<view class="item">服务预约时间:{{ detail.appointTime }}</view> | <view class="item">服务预约时间:{{ detail.appointTime }}</view> | ||||
<view class="item">服务预约地址:{{ detail.userAddress }}</view> | |||||
<view class="item">服务预约地址:<text class="lineHeight">{{ detail.userAddress }}</text></view> | |||||
<view class="item">服务详细地址:<text class="lineHeight">{{ detail.detailedAddress }}</text></view> | |||||
<view class="item">用户手机号码:{{ detail.userPhone }}</view> | <view class="item">用户手机号码:{{ detail.userPhone }}</view> | ||||
<view class="item">备注:{{ detail.describeStr }}</view> | <view class="item">备注:{{ detail.describeStr }}</view> | ||||
</view> | </view> | ||||
@@ -12,6 +12,10 @@ | |||||
margin-bottom: 20rpx; | margin-bottom: 20rpx; | ||||
} | } | ||||
.card .item .lineHeight { | |||||
color: #52a0fd; | |||||
} | |||||
.btns { | .btns { | ||||
position: fixed; | position: fixed; | ||||
width: 95%; | width: 95%; | ||||