注册流程

This commit is contained in:
limqhz
2022-12-16 17:32:49 +08:00
parent b746aaaa83
commit eb5c301d00
57 changed files with 1839 additions and 20 deletions

18
pages/login/index.wxml Normal file
View File

@@ -0,0 +1,18 @@
<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" />