123456789101112131415161718192021222324252627282930 |
- <!--index.wxml-->
- <image src= "{{consultanturl}}" class = "imghead"></image>
- <view class = "halfran"></view>
- <view class = "info">
- <view class = "line"></view>
- <view class = "name">
- <view class= "iconflex">
- <image class = "nameicon" src='https://yuesuo.yueguanjia.com/MiniProgram/images/ofphone.png'></image>
- </view>
- <view class = "infoflex">
- <input type="number" value = "{{phone}}" bindinput="phoneInput" maxlength = "13" placeholder="请输入您的手机号" placeholder-class="phcolor" class = "nameinput"/>
- </view>
- </view>
- <view class = "line"></view>
- <view class = "phone">
- <view class= "iconflex">
- <image class = "nameicon" src='https://yuesuo.yueguanjia.com/MiniProgram/images/ofdate.png'></image>
- </view>
- <view class = "infoflex">
- <picker mode="date" value="{{date}}" start="{{startdate}}" bindchange="bindDateChange" class = "{{datecss}}">
- <view class="picker">
- {{date}}
- </view>
- </picker>
- </view>
- </view>
- </view>
- <view class="pay">
- <view class="create" bindtap="confirm">提交信息</view>
- </view>
|