| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <view class="bg" wx:if="{{showpage == 0}}">
- <image src="{{adimg}}" class="item-index" mode="widthFix" style="width:100%"/>
- <view class="newAddress-line">
- <view class="newAddress-title">金 额</view>
- <input maxlength="11" class="nameText" style="color:#eab86a" disabled="disabled" value="{{applyTotal}}"/>
- <view class="clean"></view>
- </view>
-
- <view class="newAddress-line">
- <view class="newAddress-title">姓 名</view>
- <input maxlength="11" class="nameText" placeholder="你的姓名" placeholder-class="text-placeholder" bindinput="bindName" />
- <view class="clean"></view>
- </view>
- <view class="newAddress-line">
- <view class="newAddress-title">手 机</view>
- <input type="number" maxlength="11" class="nameText" placeholder="你的手机号码" placeholder-class="text-placeholder" bindinput="bindPhone" />
- <!--<button class="bind-wx" open-type="getPhoneNumber" bindgetphonenumber="getTel">使用微信手机号</button>-->
- </view>
- <view class="newAddress-line">
- <view class="yzm-textBlock">
- <view class="newAddress-title">验证码</view>
- <input type="number" maxlength="11" class="nameText" placeholder="请输入短信验证码" placeholder-class="text-placeholder" bindinput="bindYzm" />
- </view>
- <form wx:if="{{ countdown <= 0 }}" bindsubmit="getYzm" report-submit="{{true}}" class="getyzm">
- <button formType="submit" class="getyzm-btn">
- 获取验证码
- </button>
- </form>
- <view class="nogetyzm" wx:if="{{ countdown > 0 }}" >重新发送({{countdown}})</view>
- <view class="clean"></view>
- </view>
-
- <picker mode="region" bindchange="bindRegionChange" value="{{region}}" >
- <view class="newAddress-line">
- <view class="newAddress-title">所在地区</view>
- <view class="newAddress-picker ">
- <image class="newAddress-picker__icon" src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/right.png"></image>
- <view class="ellipsis newAddress-picker__text">{{address}}</view>
- </view>
- <view class="clean"></view>
- </view>
- </picker>
- <view class="newAddress-more">
- <view class="newAddress-more__title">详细地址</view>
- <textarea maxlength="120" class="textarea" auto-height placeholder="如道路、门牌号等" placeholder-class="text-placeholder" bindinput="bindMore" />
- </view>
- <view class="newAddress-more">
- <view class="newAddress-more__title">备注(选填)</view>
- <textarea maxlength="120" class="textarea" auto-height placeholder="可留言给客服哦" placeholder-class="text-placeholder" bindinput="bindRemark" />
- </view>
- <form bindsubmit="save" report-submit="{{true}}" class="newAddress-form">
- <button formType="submit" class="newAddress-btn">
- 保存
- </button>
- <p class="submittips">说明:申请后,我们会尽快与您做进一步沟通,请耐心等待。</p>
- </form>
- </view>
- <view wx:if="{{showpage == 1}}">
- <view style="text-align: center;padding: 100rpx 0;">
- <image class="pro-img" style="width: 300rpx;height: 300rpx;" src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/pay/projectsuccess.png" />
- <view class="pro-text" style="font-size: 33rpx;margin-top: 15px;">
- 申请成功,我们将尽快处理,请您耐心等待!
- </view>
- </view>
-
- </view>
|