Suzhou-SafetyToolsWarning-WX/pages/profile/index/index.wxml

43 lines
1.3 KiB
Plaintext
Raw Normal View History

2025-11-07 14:54:09 +08:00
<!--pages/profile/index/index.wxml-->
<view class="container">
<view class="profile-header">
<view class="avatar">
<t-icon name="user" size="80rpx" color="#fff" />
</view>
<view class="user-info">
<view class="username">管理员</view>
<view class="user-role">系统管理员</view>
</view>
</view>
<view class="menu-section">
<t-cell-group>
<t-cell title="单位管理" arrow hover bindtap="goToUnitManage">
<t-icon slot="left-icon" name="building" size="40rpx" />
</t-cell>
<t-cell title="预警设置" arrow hover bindtap="goToWarningSettings">
<t-icon slot="left-icon" name="notification" size="40rpx" />
</t-cell>
<t-cell title="数据导出" arrow hover bindtap="exportData">
<t-icon slot="left-icon" name="download" size="40rpx" />
</t-cell>
</t-cell-group>
</view>
<view class="menu-section">
<t-cell-group>
<t-cell title="关于我们" arrow hover bindtap="goToAbout">
<t-icon slot="left-icon" name="info-circle" size="40rpx" />
</t-cell>
<t-cell title="帮助中心" arrow hover bindtap="goToHelp">
<t-icon slot="left-icon" name="help-circle" size="40rpx" />
</t-cell>
</t-cell-group>
</view>
<view class="version-info">
<text>版本号v1.0.0</text>
</view>
</view>