login.wxml 998 Bytes
<view class="login_main">
	<view class="login_content">
		<view class="login_log">
			<image src="{{logoUrl}}" class="welcome-logo" mode="" />
		</view>
		<view class="login_form">
			<van-cell-group>
				<van-field label="用户名" title-width="50" value="{{ username }}" bind:change="userEvent" required clearable placeholder="请输入手机号" bind:click-icon="onClickIcon" />
				<van-field label="密码" title-width="50" value="{{ password }}" bind:change="passEvent" type="{{checkFlag?'':'password'}}" bind:click-icon="changeIconEvent" icon="{{checkFlag?'eye-o':'closed-eye'}}" placeholder="请输入密码" required />

				<van-field  wx:if="{{!hideFlag&& imgUrl}}"  title-width="50" label="验证码" value="{{ codeKey }}" bind:change="imgKeyEvent" placeholder="请输入验证码" required />
				<image src="{{imgUrl}}"  wx:if="{{ imgUrl}}" class="code-img"  />
			</van-cell-group>
			<view class="login_btn" bind:tap="loginEvent">
				登录
			</view>
		</view>

	</view>

</view>