index.vue
11 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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
<template>
<view class="home-page">
<!-- 用户信息栏 -->
<view class="user-info-bar">
<view class="user-info">
<view class="user-text">
<view class="username">你好{{ userName }},欢迎登录</view>
<view class="login-desc">全域智能运营管理平台</view>
</view>
</view>
<view class="msg-icon" @click="handleMsgClick" hover-class="msg-icon--hover">
<up-icon name="chat" color="#fff" size="24" />
<view class="msg-badge" v-if="msgCount > 0">
<up-badge type="error" max="999" :value="msgCount"></up-badge>
</view>
</view>
</view>
<view class="content-wrap">
<!-- 任务完成情况标题 -->
<view class="module-title">任务完成情况</view>
<!-- 任务完成情况卡片 -->
<view class="task-chart-card">
<view class="card-header">
<view class="unit-tip">单位: 个</view>
<view class="date-picker-wrap" @click="openDatePicker">
<neo-datetime-pro
v-model="dateRange"
type="daterange"
:clearable="false"
placeholder="请选择日期范围"
@confirm="handleDateConfirm"
/>
</view>
</view>
<!-- 双折线K线图 -->
<view class="chart-container">
<uni-charts
type="line"
:data="klineChartData"
:categories="klineCategories"
:option="klineOption"
:width="chartWidth"
:height="chartHeight"
/>
</view>
</view>
<!-- 待办/已办切换栏 -->
<view class="tab-switch-bar">
<view
class="tab-item"
:class="{ active: currentTab === 'todo' }"
@click="switchTab('todo')"
hover-class="tab-item--hover"
>
待办事项({{ todoList.length }})
<view class="tab-active-line" v-if="currentTab === 'todo'"></view>
</view>
<view
class="tab-item"
:class="{ active: currentTab === 'done' }"
@click="switchTab('done')"
hover-class="tab-item--hover"
>
已办事项({{ doneList.length }})
<view class="tab-active-line" v-if="currentTab === 'done'"></view>
</view>
</view>
<!-- 事项列表 -->
<view class="task-list-container">
<up-empty v-if="!currentTaskList.length" text="暂无相关事项" />
<view
class="task-item"
v-for="(item, index) in currentTaskList"
:key="index"
@click="handleTaskClick(item)"
hover-class="task-item--hover"
>
<view class="task-name">
{{ item.name }}
</view>
<view class="task-meta">
<view class="urgency-tag" :class="`urgency-tag--${getUrgencyType(item.urgency)}`">
{{ item.urgency || '普通' }}
</view>
<view class="task-time">{{ timeFormat(item.time) }}</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script setup>
import { ref, watch, computed } from 'vue';
import { onShow } from '@dcloudio/uni-app'
import { useUserStore } from '@/pinia/user';
import { timeFormat } from '@/uni_modules/uview-plus';
import uniCharts from '@/components/uni-charts/uni-charts.vue';
import { getUnreadCount } from "@/api/user";
// ========== 1. 常量抽离 ==========
const URGENCY_MAP = {
特急: 'urgent',
紧急: 'high',
一般: 'normal',
普通: 'normal',
'--': 'normal'
};
// ========== 2. 响应式数据 ==========
const msgCount = ref();
const currentTab = ref('todo');
const dateRange = ref([]);
// 折线图数据配置
const chartWidth = ref(0);
const chartHeight = ref(300);
const klineCategories = ref([]); // X轴日期
const klineChartData = ref([
{
name: '已完成任务数',
data: [],
color: '#25AF69'
},
{
name: '待完成总任务数',
data: [],
color: '#B34C17'
}
]);
// 图表配置
const klineOption = ref({
grid: {
top: '25%',
left: '15%',
right: '8%',
bottom: '20%'
},
xAxis: {
axisLabel: { fontSize: 12, color: '#666' }
},
yAxis: {
min: 0,
splitLine: { lineStyle: { color: '#f5f5f7' } },
axisLabel: { fontSize: 12, color: '#666' }
},
tooltip: {
trigger: 'axis',
formatter: (params) => {
return `${params[0].name}<br/>
${params[0].seriesName}: ${params[0].data}<br/>
${params[1].seriesName}: ${params[1].data}`;
}
},
legend: {
show: true,
top: '5%',
textStyle: { fontSize: 12 }
}
});
// 任务列表数据
const todoList = ref([
{ name: '绿地卫生验收', urgency: '特急', time: '2025-12-31 15:45:23' },
{ name: '阜成门内大街年度计划巡检', urgency: '--', time: '2025-12-31 09:02:00' },
{ name: '金融街年度计划巡检', urgency: '--', time: '2025-12-31 09:02:00' },
{ name: '示例事项', urgency: '一般', time: '2026-01-04 10:00:00' }
]);
const doneList = ref([
{ name: '道路清洁验收', urgency: '普通', time: '2025-12-30 14:20:00' }
]);
// ========== 3. 计算属性 ==========
const userStore = useUserStore();
const userName = computed(() => userStore.userInfo?.user?.nickname || '用户');
const currentTaskList = computed(() => {
return currentTab.value === 'todo' ? todoList.value : doneList.value;
});
// ========== 4. 工具函数 ==========
const rpx2px = (rpx) => {
const systemInfo = wx.getSystemInfoSync();
return Math.floor(rpx * (systemInfo.screenWidth / 750));
};
const getUrgencyType = (urgency) => {
return URGENCY_MAP[urgency] || 'normal';
};
const initRecent7Days = () => {
const now = new Date();
const sevenDaysAgo = new Date();
sevenDaysAgo.setDate(now.getDate() - 6);
dateRange.value = [sevenDaysAgo, now];
};
const getUnread = async ()=>{
const res = await getUnreadCount()
console.log(res)
msgCount.value = res
}
/**
* 初始化折线图数据
*/
const fetchKlineData = () => {
// 模拟数据
const rawData = [
{ date: '12.21', done: 10, total: 110 },
{ date: '12.22', done: 35, total: 70 },
{ date: '12.23', done: 55, total: 728 },
{ date: '12.24', done: 35, total: 65 },
{ date: '12.25', done: 65, total: 78 },
{ date: '12.26', done: 50, total: 272 },
{ date: '12.27', done: 72, total: 92 }
];
// 转换为图表格式
klineCategories.value = rawData.map(item => item.date);
klineChartData.value[0].data = rawData.map(item => item.done);
klineChartData.value[1].data = rawData.map(item => item.total);
};
// ========== 5. 业务逻辑 ==========
const switchTab = (tabType) => {
if (currentTab.value === tabType) return;
currentTab.value = tabType;
};
const openDatePicker = () => {};
const handleDateConfirm = (e) => {
if (!e?.value?.length) return;
fetchKlineData();
};
const handleMsgClick = () => {
wx.navigateTo({ url: '/pages-sub/msg/index' });
};
const handleTaskClick = (item) => {
wx.navigateTo({ url: `/pages-sub/task/detail?id=${item.id || ''}` });
};
// ========== 6. 生命周期 ==========
onShow(() => {
chartWidth.value = rpx2px(750 - 60);
chartHeight.value = rpx2px(300);
initRecent7Days();
fetchKlineData();
getUnread()
});
</script>
<style scoped lang="scss">
/* 样式变量 */
$primary-color: #1677ff;
$danger-color: #E53935;
$text-color: #333;
$text-color-light: #666;
$text-color-placeholder: #999;
$bg-color: #f5f5f7;
$card-bg: #fff;
$border-radius: 32rpx;
$card-radius: 10rpx;
$spacing-sm: 10rpx;
$spacing-md: 20rpx;
$spacing-lg: 30rpx;
.home-page {
background-color: $bg-color;
min-height: 100vh;
}
.user-info-bar {
background: url("https://img.jichengshanshui.com.cn:28207/appimg/bg.jpg") no-repeat;
background-size: 100% 100%;
padding: 200rpx $spacing-lg 270rpx;
display: flex;
justify-content: space-between;
align-items: center;
color: #fff;
position: relative;
z-index: 1;
.username {
font-size: 16px;
font-weight: 500;
margin-bottom: 8rpx;
}
.login-desc {
font-size: 16px;
}
.msg-icon {
position: relative;
padding: 10rpx;
border-radius: 50%;
transition: background-color 0.2s;
&--hover {
background-color: rgba(255, 255, 255, 0.2);
}
.msg-badge {
position: absolute;
top: -10rpx;
right: -10rpx;
}
}
}
.content-wrap {
margin-top: -245rpx;
border-radius: $border-radius $border-radius 0 0;
background-color: $bg-color;
position: relative;
z-index: 2;
overflow: hidden;
}
.module-title {
padding: $spacing-lg $spacing-lg 0;
font-size: 30rpx;
font-weight: 600;
color: $text-color-light;
margin-bottom: $spacing-sm;
}
.task-chart-card {
background-color: $card-bg;
border-radius: $card-radius;
margin: 0 $spacing-lg $spacing-md;
padding: $spacing-md;
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 24rpx;
color: $text-color-placeholder;
margin-bottom: $spacing-md;
.date-picker-wrap {
padding: 4rpx 8rpx;
border-radius: 6rpx;
transition: background-color 0.2s;
&:active {
background-color: $bg-color;
}
}
}
.chart-container {
width: 100%;
height: 300rpx;
display: flex;
align-items: center;
justify-content: center;
}
}
.tab-switch-bar {
display: flex;
margin: 0 $spacing-lg;
background-color: $card-bg;
border-radius: $card-radius $card-radius 0 0;
.tab-item {
flex: 1;
text-align: center;
padding: $spacing-md 0;
font-size: 28rpx;
color: $text-color-light;
position: relative;
transition: color 0.2s;
&--hover {
background-color: $bg-color;
}
&.active {
color: $primary-color;
font-weight: 500;
}
.tab-active-line {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 4rpx;
background-color: $primary-color;
}
}
}
.task-list-container {
background-color: $card-bg;
margin: 0 $spacing-lg;
padding: $spacing-md;
border-radius: 0 0 $card-radius $card-radius;
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
.task-item {
padding: $spacing-md;
border-bottom: 1px solid $bg-color;
transition: background-color 0.2s;
&--hover {
background-color: $bg-color;
}
&:last-child {
border-bottom: none;
}
.task-name {
font-size: 28rpx;
color: $text-color;
margin-bottom: $spacing-sm;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.task-meta {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 24rpx;
.urgency-tag {
padding: 2rpx 8rpx;
border-radius: 4rpx;
color: #fff;
&--urgent {
background-color: $danger-color;
}
&--high {
background-color: #fa8c16;
}
&--normal {
background-color: $text-color-placeholder;
}
}
.task-time {
color: $text-color-placeholder;
}
}
}
}
</style>