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.
44 lines
3.0 KiB
44 lines
3.0 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 disabled="{{status == 0}}" 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 disabled="{{status == 0}}" 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 disabled="{{status == 0}}" 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 disabled="{{status == 0}}" value="{{companyName}}" placeholder="请输入公司名称" placeholder-class="placeholder-style" bindinput="companyInput"></input>
|
|
<view>
|
|
<view style="font-size:28rpx;font-weight:bolder;margin-top: 32rpx;margin-left: 32rpx">公司品牌</view>
|
|
<view>
|
|
<input disabled value="{{brandName}}" placeholder="请输入公司品牌" placeholder-class="placeholder-style"></input>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{status == 1}}">
|
|
<view style="font-size:28rpx;font-weight:bolder;margin-top: 32rpx;margin-left: 32rpx">到期日期</view>
|
|
<view>
|
|
<input disabled value="{{expDate}}" placeholder="到期日期" placeholder-class="placeholder-style" ></input>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{status == 1}}">
|
|
<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>
|
|
</view>
|
|
<button wx:if="{{status == 0}}" class="bts" bindtap="toEdit">编辑</button>
|
|
<button wx:else 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> --> |