Files
quinn-wx/pages/login/index.wxml
2022-12-16 17:32:49 +08:00

19 lines
924 B
Plaintext

<view class="inputClass">
<t-input label="用户名" placeholder="请输入用户名" maxlength="{{10}}" bindchange="inputChange" data-type='userName' clearable />
<t-input label="输入密码" placeholder="请输入密码" type="password" bindchange="inputChange" data-type='password' clearable />
<t-input placeholder="请输入验证码" bindchange="inputChange" data-type='code' label="验证码">
<view slot="suffix">
<image
style="width: 72px; height: 36px; display: block; margin-top: -6px; margin-bottom: -6px"
src="https://wwcdn.weixin.qq.com/node/wework/images/202010241547.ac6876be9c.png"
mode="heightFix"
/>
</view>
</t-input>
<view class="clickRegister" bind:tap="clickRegister">点击注册></view>
</view>
<view class="inputButton">
<t-button block theme="danger" bind:tap="longin">登录</t-button>
</view>
<t-toast id="t-toast" />