diatelyMake.wxml 2.1 KB
<!-- 立即预约页面 -->
<view class='make_box'>
  <view class='make_img'><image src='{{infoCon.pic}}'></image></view>
  <view class='make_menu'>
    <view class='make_name'>{{infoCon.name}}</view>
    <view class='make_day'>¥<text>{{infoCon.money}}</text>/天</view>
  </view>
</view>
<!-- begin:信息 -->
<view class='find_box'>
  <view class='find_list'>
    <view class='find_name'>姓名</view>
    <view class='find_left'>
      <input class='make_mname' type='text' placeholder='请输入姓名' bindinput='getName'></input>
    </view>
  </view>
  <view class='find_list'>
    <view class='find_name'>手机号</view>
    <view class='find_left'>
      <input class='make_mname' type='text' placeholder='请输入手机号' bindinput='getPhone'></input>
    </view>
  </view>
  <!-- begin:类型切换 -->
  <view class='find_list'>
    <view class='find_name'>类型</view>
    <view class='find_choice'>
      <view class="find_radio {{typeOf==1?'active':''}}" data-current="1" bindtap='clickTab'>月嫂</view>
      <view class="find_radio {{typeOf==2?'active':''}}" data-current="2" bindtap='clickTab'>育儿嫂</view>
    </view>
  </view>
  <!-- begin:预产期 -->
  <view wx:if="{{typeOf==1}}" class='find_list'>
    <view class='find_name'>预产期</view>
    <view class='find_left pick'>
      <picker mode="date" value="{{date}}" bindchange="bindDateChange">
        <text>{{date}}</text>
      </picker>
      <image class='find_img' src='http://bronet.ibaby88.cn/bicon08@2x.png'></image>
    </view>
  </view>
  <!-- begin:宝宝年龄 -->
  <view wx:if="{{typeOf==2}}" class='find_list'>
    <view class='find_name'>宝宝多大</view>
    <view class='find_left'>
      <input type='text' class='make_mname' placeholder='请输入宝宝年龄' bindinput='getBrith'></input>
    </view>
  </view>
</view>
<!-- begin:特殊说明 -->
<view class='find_menu'>特殊说明</view>
<view class='find_txt'><textarea placeholder='如有特别说明,请在此处留言' bindinput='getCommit'></textarea></view>
<!-- begin:按钮 -->
<view class="footbtn">
<view class='warp_btn' bindtap='judgeTap'>提交</view>

</view>