Commit 68614726 authored by zhengke's avatar zhengke

修改

parent 8d8ca1f8
...@@ -226,7 +226,7 @@ ...@@ -226,7 +226,7 @@
</view> </view>
</view> </view>
</view> </view>
<view class="jz_TripDays"> <view class="jz_TripDays" style="display:none;">
<span style="display: inline-block; position: relative"> <span style="display: inline-block; position: relative">
<text <text
style=" style="
......
...@@ -308,7 +308,7 @@ ...@@ -308,7 +308,7 @@
v-for="(subItem, subIndex) in GuestList" v-for="(subItem, subIndex) in GuestList"
:key="subIndex" :key="subIndex"
> >
<view style="margin: 10rpx 0 15rpx 0"> 游客{{ subIndex + 1 }} </view> <view style="margin: 10rpx 0 15rpx 0"> 游客{{ subIndex + 1 }} </view>
<view class="form-items"> <view class="form-items">
<view class="label">游客姓名</view> <view class="label">游客姓名</view>
<view class="val"> <view class="val">
...@@ -341,7 +341,7 @@ ...@@ -341,7 +341,7 @@
</view> </view>
</view> </view>
<view class="form-items"> <view class="form-items">
<view class="label">学生{{ subItem.IsHightSchool }}</view> <view class="label">学生</view>
<view class="val" style="margin-top: -20rpx"> <view class="val" style="margin-top: -20rpx">
<!-- <u-checkbox-group> <!-- <u-checkbox-group>
<u-checkbox v-model="subItem.IsHightSchool"></u-checkbox> <u-checkbox v-model="subItem.IsHightSchool"></u-checkbox>
......
...@@ -179,7 +179,7 @@ ...@@ -179,7 +179,7 @@
} }
.jz_OrderReNow { .jz_OrderReNow {
width: 150rpx; width: 170rpx;
height: 80rpx; height: 80rpx;
background-color: #111111; background-color: #111111;
text-align: center; text-align: center;
...@@ -202,9 +202,6 @@ ...@@ -202,9 +202,6 @@
font-size: 28px; font-size: 28px;
font-weight: 500; font-weight: 500;
} }
.jz_form .form-items:last-child {
border-bottom: none;
}
.jz_form .form-items .label { .jz_form .form-items .label {
font-size: 28rpx; font-size: 28rpx;
font-weight: 600; font-weight: 600;
...@@ -324,6 +321,12 @@ ...@@ -324,6 +321,12 @@
font-weight: 500; font-weight: 500;
width: 100%; width: 100%;
} }
.jz_MyGuestList .label{
width:56px;
}
.jz_MyGuestList {
margin-top:40rpx;
}
</style> </style>
<template> <template>
<view class="jz_Reserve" v-if="orderData"> <view class="jz_Reserve" v-if="orderData">
...@@ -443,19 +446,29 @@ ...@@ -443,19 +446,29 @@
{{ orderData.model.CreateDate.replace("T", " ") }} {{ orderData.model.CreateDate.replace("T", " ") }}
</view> </view>
</view> </view>
<view class="form-items">
<view class="label">游客姓名</view>
<view class="jz_SureVal">
{{ orderData.model.ContactName }}
</view>
</view>
<view class="form-items">
<view class="label">联系电话</view>
<view class="jz_SureVal">
{{ orderData.model.ContactMobile }}
</view>
</view>
</view> </view>
<view class="empty-block"></view>
<view class="jz_form jz_MyGuestList" v-for="(subItem, subIndex) in orderData.model.GuestList":key="subIndex">
<view style="margin: 10rpx 0 20rpx 0"> 游客{{ subIndex + 1 }} </view>
<view class="form-items">
<view class="label">游客姓名</view>
<view class="jz_SureVal">{{subItem.SurName}}{{subItem.Name}}</view>
</view>
<view class="form-items">
<view class="label">联系电话</view>
<view class="jz_SureVal">{{subItem.MobilePhone}}</view>
</view>
<view class="form-items">
<view class="label">身份证</view>
<view class="jz_SureVal">{{subItem.IdCard}}</view>
</view>
<view class="form-items">
<view class="label">学生</view>
<view class="jz_SureVal">
{{subItem.IsHightSchool==1?'是':'否'}}
</view>
</view>
</view>
<view class="empty-block"></view> <view class="empty-block"></view>
<view style="padding: 50rpx 40rpx"> <view style="padding: 50rpx 40rpx">
<view class="big-title"> <view class="big-title">
......
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