1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <view>
- <navbar page-name="我的设备" back-home="true"></navbar>
- <view class="page-content2" style='height:calc(100vh - {{navH}}px)'>
- <image src="{{imgpath}}" class="imghead"></image>
- <view class="halfran"></view>
- <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="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="po_name" class="dateinput">
- <view class="picker">
- {{objectArray[promotionShow].po_name?objectArray[promotionShow].po_name:"请选择参加的活动"}}
- </view>
- </picker>
- </view>
- </view>
- </view>
- <view class="tips">注:本礼品仅限参加现场活动时领取</view>
- <view class="pay">
- <view class="create" bindtap="confirm">提交信息</view>
- </view>
- </view>
- </view>
|