49 lines
1.7 KiB
Plaintext
49 lines
1.7 KiB
Plaintext
<!--index.wxml-->
|
|
<navigation-bar title="登录 • 粤盈科技" back="{{false}}" color="black" background="#FFF"></navigation-bar>
|
|
<view class="page_container">
|
|
<view class="content_warp" style="width: {{inputWidth}}px; margin: 0 auto;">
|
|
<view class="icon">
|
|
<view class="img_warp">
|
|
<image src="../../assets/images/login_user.png" mode="widthFix" />
|
|
</view>
|
|
</view>
|
|
<view class="welcome">欢迎登录</view>
|
|
<view class="tip">请输入您的账号信息</view>
|
|
<view class="form_warp">
|
|
<view class="phone_input">
|
|
<t-input
|
|
value="{{phone}}"
|
|
placeholder-style="color: #b7b7b7"
|
|
placeholder="请输入手机号码"
|
|
bind:change="handlePhoneChange"
|
|
cursor-spacing="30"
|
|
style="border-radius: 200px;"
|
|
/>
|
|
</view>
|
|
<view class="password_input">
|
|
<t-input
|
|
key="input2"
|
|
placeholder="请输入密码"
|
|
placeholder-style="color: #b7b7b7"
|
|
type="{{ showPassword ? 'text' : 'password' }}"
|
|
value="{{password}}"
|
|
bind:change="onPasswordInput"
|
|
style="border-radius: 200px;margin-top: 6%;"
|
|
>
|
|
<view class="password-icon" slot="suffix-icon" bind:tap="onPasswordIconClick">
|
|
<t-icon
|
|
class="password-icon"
|
|
name="{{ showPassword ? 'browse' : 'browse-off' }}"
|
|
style="color: #b7b7b7; font-size: 18px; "
|
|
/>
|
|
</view>
|
|
</t-input>
|
|
</view>
|
|
<view class="login_btn" style="border-radius: 200px;">
|
|
<t-button bindtap="loginFun"size="large" shape="round" hover-class="btn-hover" style="width: {{inputWidth / 2}}px;">登录</t-button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|