1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <!--index.wxml-->
- <image src= "{{imgpath}}" class = "imghead" mode="widthFix"></image>
- <view class = "info">
- <view class = "name">
- <view class= "iconflex">
- <image class = "nameicon" src='https://yuesuo.yueguanjia.com/MiniProgram/images/ofname.png'></image>
- </view>
- <view class = "infoflex">
- <input value = "{{name}}" bindinput="nameInput" 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/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 = "{{datecss}}">
- <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 = "dateinput2">
- <view class="picker">
- {{objectArray[promotionShow].branche_name?objectArray[promotionShow].branche_name:"请选择参加的城市"}}
- </view>
- </picker>
- </view>
- </view>
- </view>
- <view class = "tips">
- <text class = "tipsTxt">
- 温馨提示:
- 1、此次活动仅限计划生产地址在苏州、北京、上海的孕妈参加;
- 2、预约成功的宝妈需到店领取礼品,领取截止时间为2019年5月18日17:00;
- 3、免费月嫂的抽奖时间为2019年5月18日10:00—17:00,最高可获得悦所免费月嫂服务,中奖孕妈可自己使用或赠与他人。
- 4、欢迎分享此次活动至您身边孕妈朋友,给她小惊喜,结伴来领礼吧。
- 5、此活动的解释权归悦管家所有。
- </text>
- </view>
- <view class="pay">
- <view class="create" bindtap="confirm">提交信息</view>
- </view>
- <view class = "gx" wx:if="{{gxShow}}" bindtap="hrefIndex">
- <view class = "boxclose">
- <image src="https://yuesuo.yueguanjia.com/MiniProgram/images/close.png" class = "imgclose"></image>
- </view>
- <view class = "boxgx">
- <image src="https://yuesuo.yueguanjia.com/MiniProgram/images/gx.png" class = "imggx"></image>
- </view>
- </view>
|