44 lines
1.7 KiB
Text
44 lines
1.7 KiB
Text
|
|
<!-- pages/settingss/settingss.wxml -->
|
|||
|
|
<view class="settings-container">
|
|||
|
|
<!-- 顶部导航栏 - 使用动态高度 -->
|
|||
|
|
<view class="navbar" style="height: {{navbarHeight}}px; padding-top: {{statusBarHeight}}px;">
|
|||
|
|
<view class="back-btn" bindtap="navigateBack" style="height: {{menuButtonInfo.height}}px; line-height: {{menuButtonInfo.height}}px;">
|
|||
|
|
<text class="icon">↩</text>
|
|||
|
|
</view>
|
|||
|
|
<view class="title" style="line-height: {{menuButtonInfo.height}}px;">设置</view>
|
|||
|
|
<view class="back-btn" style="line-height: {{menuButtonInfo.height}}px;"></view>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<!-- 页面内容 -->
|
|||
|
|
<scroll-view class="settings-content"
|
|||
|
|
scroll-y
|
|||
|
|
style="padding-top: {{statusBarHeight + menuButtonInfo.height + 30}}px; height: calc(100vh - {{statusBarHeight + menuButtonInfo.height + 30}}px);">
|
|||
|
|
<!-- 帮助与反馈卡片 -->
|
|||
|
|
<view class="menu-group">
|
|||
|
|
<view class="group-header">
|
|||
|
|
<view class="group-icon"></view>
|
|||
|
|
<text class="group-title">帮助与反馈</text>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<view class="menu-item" bindtap="openFeedback">
|
|||
|
|
<view class="menu-icon feedback">💬</view>
|
|||
|
|
<view class="menu-content">
|
|||
|
|
<text class="menu-title">意见反馈</text>
|
|||
|
|
<text class="menu-subtitle">提交故障、建议,及联系客服</text>
|
|||
|
|
</view>
|
|||
|
|
<view class="menu-arrow">›</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<!-- 退出登录按钮 -->
|
|||
|
|
<view class="logout-section">
|
|||
|
|
<button class="logout-btn" bindtap="logout">
|
|||
|
|
退出登录
|
|||
|
|
</button>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<!-- 底部安全区域 -->
|
|||
|
|
<view class="bottom-space"></view>
|
|||
|
|
</scroll-view>
|
|||
|
|
|
|||
|
|
</view>
|