You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
1.2 KiB

3 years ago
<!--pages/courseReservation/index.wxml-->
<view class="detail-page">
<view class="top-bg"><image src="../../images/lh-top.png"></image></view>
<view class="title acea-row row-center-wrapper"><image src="../../images/yykc.png"></image></view>
<view class="input-box">
<view class="name"><image src="../../images/namebg.png"></image></view>
<input type="text" class="input" placeholder="请输入姓名" placeholder-style="color:#fff" bindinput="inpName" value="{{form.name}}"/>
3 years ago
<view class="tel"><image src="../../images/telbg.png" ></image></view>
<input type="text" class="input" placeholder="请输入手机号" maxlength="11" placeholder-style="color:#fff" bindinput="inpPhone" value="{{form.phone}}"/>
3 years ago
</view>
3 years ago
<button class="submit-btn" wx:if="{{canIUseGetUserProfile && !isAuth}}" bindtap="getUserInfoProfile">提交</button>
<button class="submit-btn" wx:if="{{!canIUseGetUserProfile && !isAuth}}" open-type="getUserInfo" bindtap="getUserInfo">提交</button>
<view class="submit-btn acea-row row-center-wrapper" wx:if="{{isAuth}}" bindtap="submitInfo">提交</view>
3 years ago
<view class="bottom-bg"><image src="../../images/lh-bottom.png"></image></view>
</view>