Files
qingcheng-xiaochengxu/pages/welcome/homePage/homePage.wxml

53 lines
1.3 KiB
Plaintext
Raw Normal View History

2025-08-15 11:14:42 +08:00
<view class="page">
<view class="section">
<!-- 顶部 Logo 与标题 -->
<view class="logo-area">
<image class="logo" src="/static/logo.jpg" mode="aspectFill" />
<text class="title">欢迎进入丁香校园</text>
2025-07-20 18:22:59 +08:00
</view>
2025-08-15 11:14:42 +08:00
<!-- 身份选择按钮组 -->
<view class="btn-group">
<view
class="btn btn--primary"
hover-class="btn--hover"
hover-stay-time="80"
bind:tap="userLogin"
data-role="{{ 'user' }}"
>
<text class="btn-text btn-text--light">我是用户</text>
2025-07-20 18:22:59 +08:00
</view>
2025-08-15 11:14:42 +08:00
<view
class="btn btn--outline"
hover-class="btn--hover"
hover-stay-time="80"
bind:tap="userLogin"
data-role="{{ 'staff' }}"
>
<text class="btn-text">我是员工</text>
</view>
<view
class="btn btn--outline"
hover-class="btn--hover"
hover-stay-time="80"
bind:tap="userLogin"
data-role="{{ 'supervisor' }}"
>
<text class="btn-text">我是主管</text>
</view>
<view
class="btn btn--outline"
hover-class="btn--hover"
hover-stay-time="80"
bind:tap="userLogin"
data-role="{{ 'manager' }}"
>
<text class="btn-text">我是经理</text>
2025-08-04 16:27:52 +08:00
</view>
2025-07-20 18:22:59 +08:00
</view>
</view>
2025-08-15 11:14:42 +08:00
</view>