1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!--pages/reserve/reserve.wxml-->
- <view class="order-layer">
- <auth bindlogin="onShow" />
- <view class="order-list">
- <view class="order-item-info">
- <image src="{{brand.coverPicLink}}"></image>
- <view class="info-text">
- <text class="title">{{desk.deskName}}</text>
- <view class="aaa">
- <image src="/static/images/reserv_people.png"></image>
- <text>{{people}}人</text>
- </view>
- <view class="aaa">
- <image src="/static/images/reserv_time.png"></image>
- <text>{{showDate}}</text>
- </view>
- </view>
- </view>
- </view>
- <view>
- <view class="t-title">
- 预订信息
- </view>
- <view class="from-item">
- <text class="label">预订人</text>
- <input type="text" value="{{name}}" style="width: 50%" bindblur="focusHandle" bindinput="updateName" placeholder="请输入名称" placeholder-style="color:#C8C9CC;" />
- <div class="xf">
- <view class="bottom {{sex === 1 ? 'active': ''}}" bindtap="setSex1">先生</view>
- <view class="bottom {{sex === 0 ? 'active': ''}}" bindtap="setSex0">女士</view>
- </div>
- </view>
- <view class="from-item">
- <text class="label">联系电话</text>
- <input type="number" style="width: 70%" maxlength="11" placeholder="请输入手机号码" bindinput="updatePhone" value="{{phone}}" placeholder-style="color:#C8C9CC;" />
- <div class="xf">
- <text class="bottom" bindtap="sendCode">{{sendMis ? sendMis + '秒后可重新获取' : '获取验证码'}}</text>
- </div>
- </view>
- <view class="from-item">
- <text class="label">验证码</text>
- <input type="number" maxlength="6" placeholder="请输入验证码" bindinput="updateCode" value="{{code}}" placeholder-style="color:#C8C9CC;" />
- </view>
- </view>
-
- <view>
- <view class="t-title"> 温馨提示 </view>
- <view class="tip-content">可凭借订座短信,获取凉菜一份</view>
- </view>
- </view>
- <view class="save">
- <view class="jg">押金 <text>1</text></view>
- <view bindtap="save" class="bc">立即预订</view>
- </view>
- <view class="share" wx:if="{{showShare}}" style="background-image: url({{brand.coverPicLink}})">
- <view class="share-layer">
- <view class="h5">预订成功</view>
- <view class="p">是否要分享给朋友</view>
- <view>
- <button class="span enter" class="btn" open-type="share">立即分享</button>
- <view class="span quit" bindtap="quit">取消</view>
- </view>
- </view>
- </view>
|