xunji.vue
9.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<template>
<view class="home-page" v-if="userStore.isLogin">
<!-- 顶部标签栏容器 -->
<view class="tab-bar" :style="{ paddingTop: menuButtonHeight + topSafeArea + 'px' }">
<!-- 标签列表 -->
<view class="tab-item" :class="{ active: currentTab === 1 }" @click="handleTabClick(1)"
>计划</view
>
<view class="tab-item" :class="{ active: currentTab === 2 }" @click="handleTabClick(2)"
>日历</view
>
<view class="tab-item" :class="{ active: currentTab === 3 }" @click="handleTabClick(3)"
>动作</view
>
<view class="tab-item" :class="{ active: currentTab === 4 }" @click="handleTabClick(4)"
>模板</view
>
<view class="tab-item" :class="{ active: currentTab === 5 }" @click="handleTabClick(5)"
>数据</view
>
<!-- 右侧菜单按钮 -->
<view class="menu-btn" @click="openDrawer">
<uni-icons type="bars" size="20"></uni-icons>
</view>
</view>
<view class="content">
<xunjiXunlianjihua v-if="currentTab === 1" />
<xunjiRili v-if="currentTab === 2" />
<xunjiDongzuo v-if="currentTab === 3" />
<xunjiMoban v-if="currentTab === 4" />
<xunjiShuju v-if="currentTab === 5" />
</view>
<uni-drawer ref="drawer" mode="right" :mask="true" :width="280">
<!-- 抽屉内部内容 -->
<view class="drawer-content" :style="{ paddingTop: menuButtonHeight + topSafeArea + 'px' }">
<!-- 头像+昵称区域 -->
<view class="user-header">
<image
class="avatar"
:src="
userInfo.avatar ||
'https://fitness-hcxtec-bucket.oss-cn-shenzhen.aliyuncs.com/20260526/默认头像_1779779926983.png'
"
mode="aspectFill"
></image>
<view class="user-info">
<text class="nickname">{{ userInfo.nickname }}</text>
<!-- <text class="user-id">ID {{}}</text> -->
</view>
</view>
<!-- 广告横幅 -->
<image
class="ad-banner"
src="https://fitness-hcxtec-bucket.oss-cn-shenzhen.aliyuncs.com/20260316/37_1773628025534.png"
mode="aspectFill"
></image>
<!-- 菜单列表 -->
<view class="menu-list">
<view
class="menu-item"
@click="uni.navigateTo({ url: '/pages4/pages/xunji/xunji-wode-zhuye' })"
>
<uni-icons type="person" size="18"></uni-icons>
<text class="menu-text">我的主页</text>
<uni-icons type="right" size="14"></uni-icons>
</view>
<view
class="menu-item"
@click="uni.navigateTo({ url: '/pages4/pages/xunji/xunji-wode-moban' })"
>
<uni-icons type="wallet" size="18"></uni-icons>
<text class="menu-text">我的模板</text>
<uni-icons type="right" size="14"></uni-icons>
</view>
<view class="menu-item" @click="goMyPlan">
<uni-icons type="list" size="18"></uni-icons>
<text class="menu-text">我的计划</text>
<uni-icons type="right" size="14"></uni-icons>
</view>
<view class="menu-item" @click="goWidgetLib">
<uni-icons type="more" size="18"></uni-icons>
<text class="menu-text">小组件库</text>
<uni-icons type="right" size="14"></uni-icons>
</view>
<view class="menu-item" @click="goFeedback">
<uni-icons type="chat" size="18"></uni-icons>
<text class="menu-text">训记反馈建议</text>
<uni-icons type="right" size="14"></uni-icons>
</view>
<view class="menu-item" @click="goUserGroup">
<uni-icons type="chatboxes" size="18"></uni-icons>
<text class="menu-text">训记内测用户群</text>
<uni-icons type="right" size="14"></uni-icons>
</view>
<view class="menu-item" @click="goTutorial">
<uni-icons type="help" size="18"></uni-icons>
<text class="menu-text">训记使用教程</text>
<uni-icons type="right" size="14"></uni-icons>
</view>
</view>
</view>
</uni-drawer>
</view>
</template>
<script setup>
import xunjiRili from '@/pages/xunji/components/xunji-rili.vue';
import xunjiDongzuo from '@/pages/xunji/components/xunji-dongzuo.vue';
import xunjiMoban from '@/pages/xunji/components/xunji-moban.vue';
import xunjiShuju from '@/pages/xunji/components/xunji-shuju.vue';
import xunjiXunlianjihua from '@/pages/xunji/components/xunji-xunlianjihua.vue';
import { onLoad, onHide } from '@dcloudio/uni-app';
import useUserStore from '@/sheep/store/user';
const userStore = useUserStore();
import { ref, shallowRef } from 'vue';
import { getMenuButtonHeight, getTopSafeArea } from '@/utils/safeArea';
let menuButtonHeight = 0;
let topSafeArea = 0;
// #ifdef MP-WEIXIN
menuButtonHeight = getMenuButtonHeight();
topSafeArea = getTopSafeArea();
// #endif
// 抽屉组件实例
const drawer = ref(null);
// 当前选中的tab索引
const currentTab = ref(1);
const currentComponent = shallowRef(xunjiXunlianjihua);
const userInfo = ref(userStore.userInfo);
// 打开抽屉
const openDrawer = () => {
drawer.value.open();
};
onHide(() => {
if (drawer.value) {
drawer.value.close();
}
});
// 处理标签点击
const handleTabClick = (index) => {
currentTab.value = index;
// #ifdef H5
switch (index) {
case 0:
currentComponent.value = xunjiXunji;
break;
case 1:
currentComponent.value = xunjiXunlianjihua;
break;
case 2:
currentComponent.value = xunjiRili;
break;
case 3:
currentComponent.value = xunjiDongzuo;
break;
case 4:
currentComponent.value = xunjiMoban;
break;
case 5:
currentComponent.value = xunjiShuju;
break;
default:
currentComponent.value = xunjiXunlianjihua;
}
// #endif
};
onLoad((options) => {
if (!userStore.isLogin) {
uni.redirectTo({
url: '/pages7/pages/index/login',
});
}
currentTab.value = options.currentTab || 1;
});
</script>
<style scoped lang="scss">
.home-page {
width: 100%;
height: 100vh;
// #ifdef H5
padding-bottom: 90rpx;
// #endif
background-color: #f5f5f5;
box-sizing: border-box;
overflow: hidden;
display: flex;
flex-direction: column;
.content {
flex: 1;
box-sizing: border-box;
overflow: hidden;
padding-top: 70rpx;
// #ifdef MP-WEIXIN
padding-top: 200rpx;
// #endif
}
}
.tab-bar {
display: flex;
align-items: flex-end;
justify-content: space-between;
padding: 0px 20px;
padding-top: 20rpx;
background-color: #fff;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999;
box-sizing: border-box;
}
/* 标签项:默认样式 */
.tab-item {
font-size: 16px;
color: #666;
padding: 5px 0;
padding-top: 30rpx;
}
/* 激活态标签:下划线+深色文字 */
.tab-item.active {
color: #333;
border-bottom: 2px solid #000;
font-weight: 500;
}
/* 菜单按钮:样式 */
.menu-btn {
font-size: 20px;
color: #666;
}
.card-subtitle {
font-size: 24rpx;
color: #666;
margin-bottom: 10rpx;
}
.plan-btn {
width: 100%;
height: 50rpx;
background-color: #2eaa8a;
color: white;
font-size: 24rpx;
font-weight: bold;
border-radius: 25rpx;
line-height: 50rpx;
text-align: center;
margin-top: 10rpx;
}
.card-value {
font-size: 36rpx;
color: #333;
margin-bottom: 10rpx;
}
.card-desc {
font-size: 24rpx;
color: #666;
}
/* 抽屉样式 */
.drawer-content {
background-color: #ffffff;
height: 100%;
padding: 20rpx;
box-sizing: border-box;
}
/* 用户头像和信息区域 */
.user-header {
display: flex;
align-items: center;
padding: 20rpx 0;
border-bottom: 1px solid #f0f0f0;
}
.user-header .avatar {
width: 80rpx;
height: 80rpx;
border-radius: 50%;
margin-right: 20rpx;
margin-top: 0;
justify-content: flex-start;
}
.user-info {
display: flex;
flex-direction: column;
}
.nickname {
font-size: 28rpx;
font-weight: 500;
color: #333333;
margin-bottom: 8rpx;
}
.user-id {
font-size: 24rpx;
color: #999999;
}
/* 广告横幅 */
.ad-banner {
width: 100%;
height: 200rpx;
margin: 20rpx 0;
border-radius: 12rpx;
}
/* 菜单列表 */
.menu-list {
margin-top: 20rpx;
}
.menu-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 30rpx 0;
border-bottom: 1px solid #f0f0f0;
}
.menu-item:last-child {
border-bottom: none;
}
.menu-text {
font-size: 28rpx;
color: #333333;
margin-left: 20rpx;
flex: 1;
}
/* 覆盖uni-icons默认颜色 */
:deep(.uni-icons) {
color: #666666;
}
</style>