Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- <!--pages/mobileVerification/mobileVerification.wxml-->
- <view class="all" >
- <view class="main">
- <image class="bg" src="{{imgUrl+'/newImages4/21.png'}}"></image>
- <image class="starRule" wx:if="{{false}}" bindtap="showRule" src="{{imgUrl+'/newIcon/2.png'}}"></image>
- <view class="msgFrame">
- <view class="titleGroup">
- <image class="mobilepagelogo" src="{{imgUrl+'/images/mobilepagelogo.png'}}"></image>
- <view class="goodsName">启辰</view>
- <view class="goodsText">申请加入星探计划,享千元现金红包</view>
- </view>
- <view class="inputFrame">
- <view class="inputGroup">
- <view class="mobileFirst">姓名</view>
- <view class="inputLine" style="position: relative;">
- <input class="inputText" bindinput="getRealName" value="{{realName}}" placeholder="请输入您的姓名"></input>
- </view>
- </view>
- <view class="inputGroup" style="margin-top:13rpx;">
- <view class="mobileFirst">电话</view>
- <view class="inputLine" style="position: relative;">
- <input class="inputText" bindinput="getMoblie" value="{{mobileText}}" placeholder="请输入您的联系电话" type="number" maxlength='11'></input>
- <button class="getMobileBtn" wx:if="{{getMobileBtnShow}}" open-type="getPhoneNumber" bindgetphonenumber="getPhone" style="width:100%;height:100%;min-height:0;margin:0;padding:0;"></button>
- </view>
- </view>
- <view class="inputGroup" style="margin-top:13rpx;">
- <view class="mobileFirst">验证码</view>
- <view class="inputLine" style="position: relative;">
- <view class="inputText" style="display:flex;align-items:center;justify-content: space-between;">
- <input class="inputText" style="width:300rpx;" bindinput="getCodeText" placeholder="请输入验证码"></input>
- <view class="codeSty" bindtap="getCode">{{verificationCode}}</view>
- </view>
- </view>
- </view>
- <view class="inputGroup" style="margin-top:13rpx;">
- <view class="mobileFirst">地区</view>
- <picker mode='multiSelector' range="{{provinceDataArr}}" value="{{provinceDataValue}}" bindcolumnchange="provinceDataChange" bindchange="provinceDataChane">
- <view class="inputLine" style="position: relative;">
- <view class="inputText" style="display:flex;align-items:center;justify-content: space-between;">
- <view class="inputText" style="width:450rpx;line-height:66rpx;">{{nowProvince}}</view>
- <image src="{{imgUrl+'/images/selectIcon.png'}}" class="selectIcon"></image>
- </view>
- </view>
- </picker>
- </view>
- <view class="inputGroup" style="margin-top:13rpx;">
- <view class="mobileFirst">关联专营店</view>
- <picker mode='selector' range="{{storeArr}}" range-key="agent_detail" value="{{storeValue}}" bindchange="storeChane">
- <view class="inputLine" style="position: relative;">
- <view class="inputText" style="display:flex;align-items:center;justify-content: space-between;">
- <view class="inputText" style="width:450rpx;line-height:66rpx;">{{storeArr[storeValue].agent_detail}}</view>
- <image src="{{imgUrl+'/images/selectIcon.png'}}" class="selectIcon"></image>
- </view>
- </view>
- </picker>
- </view>
- </view>
- <view class="agreementGroup">
- <image class="agreeIcon" bindtap="agreementState" src="{{imgUrl+(isAgreement?'/images/agreeIcon.png':'/images/disagreeIcon.png')}}"></image>
- <view class="agreementText">
- <image class="newImages3-4" src="{{imgUrl+'/newImages3/4.png'}}"></image>
- <image class="newImages3-5" bindtap="agreementControl" style="margin-left:15rpx;" src="{{imgUrl+'/newImages3/5.png'}}"></image>
- </view>
- </view>
- <image class="submitBtn" bindtap="submitMobile" src="{{imgUrl+'/newImages3/6.png'}}"></image>
- </view>
- </view>
- <agreement bindmyevent="agreementControl" wx:if="{{agreement}}"></agreement>
- <tabBar></tabBar>
- </view>
|