You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
2.8 KiB

<!--pages/mine/pages/register/register.wxml-->
<van-nav-bar custom-class="nav-top" title="账号注册" left-text="返回" right-text="" left-arrow bind:click-left="handlerBack" />
<view class="bind_box">
<view style="font-size:28rpx;font-weight:bolder;margin-left: 32rpx">用户名</view>
<input value="{{sUserName}}" placeholder="请输入用户名" placeholder-class="placeholder-style" bindinput="usernameInput"></input>
<view style="font-size:28rpx;font-weight:bolder;margin-top: 32rpx;margin-left: 32rpx">密码</view>
<input type="password" value="{{sPwd}}" placeholder="请输入密码" placeholder-class="placeholder-style" bindinput="passwordInput"></input>
<view style="font-size:28rpx;font-weight:bolder;margin-top: 32rpx;margin-left: 32rpx">手机号</view>
<input value="{{sPhone}}" placeholder="请输入手机号" placeholder-class="placeholder-style" bindinput="sPhoneInput"></input>
<view style="font-size:28rpx;font-weight:bolder;margin-top: 32rpx;margin-left: 32rpx">邮箱</view>
<input value="{{sEmail}}" placeholder="请输入邮箱" placeholder-class="placeholder-style" bindinput="sEmailInput"></input>
<view style="font-size:28rpx;font-weight:bolder;margin-top: 32rpx;margin-left: 32rpx">公司名称</view>
<input value="{{companyName}}" placeholder="请输入公司名称" placeholder-class="placeholder-style" bindinput="companyInput"></input>
<view style="font-size:28rpx;font-weight:bolder;margin-top: 32rpx;margin-left: 32rpx">公司品牌</view>
<!-- <van-cell style="font-size:28rpx;font-weight:bolder;" title="公司品牌" is-link /> -->
<view bindtap="showPopup">
<input disabled="true" value="{{brandName}}" placeholder="请输入公司品牌" placeholder-class="placeholder-style" bindinput="brandInput"></input>
</view>
<view style="font-size:28rpx;font-weight:bolder;margin-top: 32rpx;margin-left: 32rpx">验证码</view>
<view style="display: flex;">
<input width="260px" value="{{sVerifycode}}" placeholder="请输入验证码" placeholder-class="placeholder-style" bindinput="codeInput"></input>
<button class="captcha" bindtap="getlist" disabled="{{captchaDisabled}}" plain="true" disabled-class="disabled">{{captchaLabel}}</button>
</view>
<button class="bts" bindtap="Submit">提交审核</button>
</view>
<van-popup show="{{ show }}" custom-style="height: 80%;width: 100%;padding-bottom: 80rpx" position="bottom" bind:close="onClose">
<van-index-bar sticky="{{false}}" index-list="{{ [] }}">
<view wx:for="{{mockData}}" wx:key="idx">
<van-index-anchor index="{{item.name}}" />
<view class="my_cell" wx:for="{{item.data}}" data-brand="{{item2.brandname}}" wx:key="idx" wx:for-item="item2" bindtap="Brands">
<image slot="icon" class="bs-item-image" src="{{item2.img}}" lazy-load="{{true}}"></image>
<text>{{item2.brandname}}</text>
</view>
</view>
</van-index-bar>
</van-popup>