63 lines
1.9 KiB
Plaintext
63 lines
1.9 KiB
Plaintext
|
|
<!--pages/login/login.wxml-->
|
||
|
|
<view class="container">
|
||
|
|
<view class="login-header">
|
||
|
|
<view class="logo">
|
||
|
|
<t-icon name="shield" size="120rpx" color="#0052D9" />
|
||
|
|
</view>
|
||
|
|
<view class="app-name">安全工器具预警</view>
|
||
|
|
<view class="app-desc">专业的安全工器具管理系统</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view class="login-content">
|
||
|
|
<view class="welcome-text">欢迎使用</view>
|
||
|
|
<view class="welcome-desc">请登录以继续使用完整功能</view>
|
||
|
|
|
||
|
|
<view class="features">
|
||
|
|
<view class="feature-item">
|
||
|
|
<t-icon name="check-circle" size="32rpx" color="#0052D9" />
|
||
|
|
<text>设备台账管理</text>
|
||
|
|
</view>
|
||
|
|
<view class="feature-item">
|
||
|
|
<t-icon name="check-circle" size="32rpx" color="#0052D9" />
|
||
|
|
<text>检验预警提醒</text>
|
||
|
|
</view>
|
||
|
|
<view class="feature-item">
|
||
|
|
<t-icon name="check-circle" size="32rpx" color="#0052D9" />
|
||
|
|
<text>统计分析报表</text>
|
||
|
|
</view>
|
||
|
|
<view class="feature-item">
|
||
|
|
<t-icon name="check-circle" size="32rpx" color="#0052D9" />
|
||
|
|
<text>消息实时推送</text>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view class="login-actions">
|
||
|
|
<t-button
|
||
|
|
theme="primary"
|
||
|
|
size="large"
|
||
|
|
block
|
||
|
|
bindtap="handleLogin"
|
||
|
|
loading="{{isLoading}}"
|
||
|
|
>
|
||
|
|
<t-icon name="user" size="32rpx" style="margin-right: 16rpx;" />
|
||
|
|
微信快捷登录
|
||
|
|
</t-button>
|
||
|
|
|
||
|
|
<view class="skip-login" bindtap="handleSkipLogin">
|
||
|
|
<text>暂不登录,先看看</text>
|
||
|
|
<t-icon name="chevron-right" size="28rpx" />
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view class="login-footer">
|
||
|
|
<view class="agreement">
|
||
|
|
登录即表示同意
|
||
|
|
<text class="link" bindtap="showAgreement">《用户协议》</text>
|
||
|
|
和
|
||
|
|
<text class="link" bindtap="showPrivacy">《隐私政策》</text>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|