42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
<!-- 登录页面 -->
|
|
<view class="login-container">
|
|
<view class="login-header">
|
|
<image class="logo" mode="aspectFit"></image>
|
|
<view class="title">医疗系统登录</view>
|
|
</view>
|
|
|
|
<view class="login-form">
|
|
<!-- 微信一键登录区域 -->
|
|
<view class="wechat-login-section">
|
|
<t-button theme="primary" size="large" block bindtap="handleWechatLogin" loading="{{wechatLoading}}" icon="user">
|
|
微信一键登录
|
|
</t-button>
|
|
|
|
<view class="divider">
|
|
<view class="divider-line"></view>
|
|
<view class="divider-text">或</view>
|
|
<view class="divider-line"></view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 传统登录表单 -->
|
|
<t-cell-group>
|
|
<t-input label="账号" placeholder="请输入账号" value="{{username}}" bindchange="onUsernameChange" clearable>
|
|
<t-icon slot="left-icon" name="user" size="48rpx" />
|
|
</t-input>
|
|
|
|
<t-input label="密码" placeholder="请输入密码" value="{{password}}" bindchange="onPasswordChange" type="password" clearable>
|
|
<t-icon slot="left-icon" name="lock-on" size="48rpx" />
|
|
</t-input>
|
|
</t-cell-group>
|
|
|
|
<view class="btn-wrapper">
|
|
<t-button theme="default" size="large" block bindtap="handleLogin" loading="{{loading}}">账号密码登录</t-button>
|
|
</view>
|
|
|
|
<!-- 新增设备状态按钮 -->
|
|
<view class="device-status-btn">
|
|
<t-button theme="light" size="small" icon="device" variant="outline" bindtap="goToDeviceStatus">设备状态</t-button>
|
|
</view>
|
|
</view>
|
|
</view> |