123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <view class="page">
- <include src='../../components/_toast/_toast1'></include>
- <image src="http://dm.dhcarlife.com/core//image/store_21320/48e46fcfb76593a91572d64b337c7490b7e2d963.png"
- data-from="content" mode='widthFix' style="width:100%;"></image>
- <view class="section">
- <view class="input-container">
- <view class="input-border">
- <text class="label">姓名:</text>
- <input class="uni-input" bindinput="bindName" value='{{name}}' bind:=""/>
- </view>
- </view>
- <view class="input-container">
- <view class="input-border">
- <view class="label">电话:</view>
- <input class="uni-input"bindinput="bindPhone" value='{{phone}}' maxlength="11" type="number"/>
- </view>
- </view>
- <view class="input-container">
- <view class="input-border">
- <text class="label">车牌号:</text>
- <input class="uni-input" bindinput="bindLicense" value='{{license_number}}' />
- </view>
- </view>
- <view class="input-container">
- <view class="input-border">
- <text class="label">车辆型号:</text>
- <input class="uni-input" bindinput="bindModel" value="{{car_model}}"/>
- </view>
- </view>
- <view class="input-container">
- <view class="input-border">
- <picker class="picker-input" mode="time" value="{{appoint_time}}" start="09:00" end="17:00" bindchange="bindTimeChange">
- <view class="picker">
- <text class="label">预约时间:</text> {{appoint_time}}
- </view>
- </picker>
- </view>
- </view>
- <view class="section">
- <view class="input-container" style="margin:0;">
- <calendar
- config="{{calendarConfig}}"
- bind:afterTapDate="afterTapDate" />
- </view>
- <view class="input-container" style="margin:0;padding-top:80px">
- <button class="submit" bindtap="onSubmit">确定预约</button>
- </view>
- <view style="text-align: center;font-size:20rpx;padding:30px 0">*注:周一至周六,法定节假日除外可以预约</view>
- </view>
- </view>
- <app-navigation __alipay_mp_config='{{__alipay_mp_config}}' __device='{{__device}}' __platform='{{__platform}}' __user_info='{{__user_info}}' options='{{options}}' setnavi='{{setnavi}}' store='{{store}}'></app-navigation>
- <image src="http://dm.dhcarlife.com/core//image/store_21320/ca8117c513a1179864236c6a8eb16a3226ae5754.png"
- data-from="content" mode='widthFix' style="width:100%;"></image>
- </view>
|