Files
ruo-shan-cloud-pharmacy/miniprogram/pages/login/login.wxml
T
陈誉午 994b267f5c feat: 电子药箱小程序 - 4Tab药品管理
- 电子药箱: 药品库存管理 + 手动录入 + 今日用药打卡
- 药品百科: 搜索 + 分类筛选 + 20种药品静态数据
- 惠教中心: 4条药品使用指南课程
- 我的: 家庭成员信息管理
- 自定义TabBar + navigation-bar组件
- SVG药品分类插图
2026-07-29 11:20:52 +08:00

27 lines
1.2 KiB
Plaintext

<navigation-bar title="登录" back="{{!back}}" color="black" background="#FFF" />
<view class="loginContainer">
<view class="contentWrap">
<view class="heroPanel">
</view>
<view class="actionPanel actionPanelSingle">
<view class="loginButton wechatLogin" bind:tap="handleLogin">
<image class="loginIcon" src="./assets/wechat-login-icon-figma.svg" mode="aspectFit"></image>
<text class="loginLabel">微信登录</text>
</view>
</view>
</view>
<view class="privacyFooter" style="padding-bottom: {{safeBottom}}rpx;">
<view class="checkboxLabel">
<view class="radioTrigger" catchtap="handleToggleAgree">
<radio-group>
<radio value="agree" checked="{{agree}}" color="#FE8D29" />
</radio-group>
</view>
<text class="privacyText">我已阅读并同意</text>
<text class="linkText" bindtap="openPrivacyContract">《用户协议》</text>
<text class="privacyText">和</text>
<text class="linkText" bindtap="openPrivacyContract">《隐私政策》</text>
</view>
</view>
</view>