浏览代码

预约地址详情

dev_czc
HolyKnightIX 2 年前
父节点
当前提交
5054bf3b4d
共有 4 个文件被更改,包括 10 次插入3 次删除
  1. +2
    -0
      pages/Appointment/appointment.ttml
  2. +2
    -2
      pages/Appointment/appointment.ttss
  3. +2
    -1
      pages/appointDetail/appointDetail.ttml
  4. +4
    -0
      pages/appointDetail/appointDetail.ttss

+ 2
- 0
pages/Appointment/appointment.ttml 查看文件

@@ -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>


+ 2
- 2
pages/Appointment/appointment.ttss 查看文件

@@ -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 {


+ 2
- 1
pages/appointDetail/appointDetail.ttml 查看文件

@@ -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>


+ 4
- 0
pages/appointDetail/appointDetail.ttss 查看文件

@@ -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%;


正在加载...
取消
保存