123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!--index.wxml-->
- <image src= "{{imgpath}}" class = "imghead" mode="widthFix"></image>
- <view class = "info">
- <view class = "phone">
- <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 class = "otherflex">
- </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 = "dateinput">
- <view class="picker">
- {{date}}
- </view>
- </picker>
- </view>
- <view class = "otherflex">
- </view>
- </view>
- <view class = "line"></view>
- <view class = "phone">
- <view class= "iconflex">
- <image class = "nameicon" src='https://yuesuo.yueguanjia.com/MiniProgram/images/ofpromotion.png'></image>
- </view>
- <view class = "infoflex">
- <picker bindchange="bindPickerChange" value="{{promotionShow}}" range="{{objectArray}}" range-key="branche_name" class = "dateinput">
- <view class="picker">
- {{objectArray[promotionShow].branche_code?objectArray[promotionShow].branche_name:"请选择参城市"}}
- </view>
- </picker>
- </view>
- </view>
- </view>
- <view class="pay">
- <view class="create" bindtap="confirm">提交信息</view>
- </view>
|