2025-04-22 10:22:33 +08:00
|
|
|
<template>
|
|
|
|
|
<view class="service-page">
|
|
|
|
|
<!-- 1. 顶部 Header -->
|
|
|
|
|
<view class="header-section">
|
2025-05-30 17:22:51 +08:00
|
|
|
<view class="header-gradient"></view>
|
2025-04-22 10:22:33 +08:00
|
|
|
<image
|
|
|
|
|
class="header-image"
|
|
|
|
|
src="@/static/base/home/120851x.png"
|
|
|
|
|
mode="aspectFit"
|
|
|
|
|
></image>
|
2025-05-30 17:22:51 +08:00
|
|
|
<view class="header-overlay">
|
|
|
|
|
<text class="header-title">智慧校园</text>
|
|
|
|
|
<text class="header-subtitle">教师服务平台</text>
|
|
|
|
|
</view>
|
2025-04-22 10:22:33 +08:00
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 2. 主要内容区域 -->
|
|
|
|
|
<view class="main-content">
|
|
|
|
|
<!-- 循环渲染功能分区 -->
|
2025-05-30 17:22:51 +08:00
|
|
|
<view class="section-block" v-for="(section, index) in sections" :key="section.id">
|
2025-04-22 10:22:33 +08:00
|
|
|
<view class="section-title">
|
2025-05-30 17:22:51 +08:00
|
|
|
<view class="title-decorator" :style="{backgroundColor: getSectionColor(index)}"></view>
|
2025-04-22 10:22:33 +08:00
|
|
|
<text>{{ section.title }}</text>
|
2025-05-30 17:22:51 +08:00
|
|
|
<view class="title-line"></view>
|
2025-04-22 10:22:33 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="section-grid-card">
|
|
|
|
|
<template v-for="item in section.items" :key="item.id">
|
|
|
|
|
<view
|
|
|
|
|
v-if="item.show"
|
|
|
|
|
class="grid-item"
|
|
|
|
|
@click="handleGridItemClick(item)"
|
|
|
|
|
>
|
2025-05-30 17:22:51 +08:00
|
|
|
<view class="grid-icon-container" :style="{backgroundColor: getIconBgColor(index)}">
|
|
|
|
|
<image
|
|
|
|
|
class="grid-icon"
|
|
|
|
|
:src="`/static/base/home/${item.icon}.png`"
|
|
|
|
|
mode="aspectFit"
|
|
|
|
|
></image>
|
|
|
|
|
</view>
|
2025-04-22 10:22:33 +08:00
|
|
|
<text class="grid-text">{{ item.text }}</text>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
import { reactive } from "vue";
|
|
|
|
|
|
|
|
|
|
interface GridItem {
|
|
|
|
|
id: number | string;
|
|
|
|
|
icon: string; // 图标文件名 (不含扩展名)
|
|
|
|
|
text: string;
|
|
|
|
|
show: boolean; // 是否显示
|
|
|
|
|
// 可以添加 permissionKey 等字段
|
|
|
|
|
path?: string; // 页面路径
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface Section {
|
|
|
|
|
id: number | string;
|
|
|
|
|
title: string;
|
|
|
|
|
items: GridItem[];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 定义功能分区数据
|
|
|
|
|
const sections = reactive<Section[]>([
|
|
|
|
|
{
|
|
|
|
|
id: "routine",
|
|
|
|
|
title: "常规",
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
id: 10,
|
|
|
|
|
text: "一师一策",
|
|
|
|
|
icon: "clipboardfill",
|
|
|
|
|
path: "/pages/view/routine/yishiyice/index",
|
|
|
|
|
show: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "r2",
|
|
|
|
|
icon: "stack-fill",
|
|
|
|
|
text: "教学资源",
|
|
|
|
|
show: true,
|
|
|
|
|
path: "/pages/view/routine/JiaoXueZiYuan/index",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "r3",
|
|
|
|
|
icon: "file-list-3-fil",
|
|
|
|
|
text: "活动资源",
|
|
|
|
|
show: true,
|
|
|
|
|
path: "/pages/view/routine/HuoDongZiYuan/index",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "r4",
|
|
|
|
|
icon: "file-paper-2-fill",
|
|
|
|
|
text: "公文流转",
|
|
|
|
|
show: true,
|
|
|
|
|
path: "/pages/view/routine/GongWenLiuZhuan/index",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "r5",
|
|
|
|
|
icon: "file-mark-fill",
|
|
|
|
|
text: "积分评价",
|
|
|
|
|
show: true,
|
|
|
|
|
path: "/pages/view/routine/JiFenPingJia",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "r6",
|
|
|
|
|
icon: "pass-pending-fill",
|
|
|
|
|
text: "课服巡查",
|
|
|
|
|
show: true,
|
|
|
|
|
path: "/pages/view/routine/kefuxuncha/KeFuXunCha",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "home-school",
|
|
|
|
|
title: "家校",
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
id: "hs1",
|
|
|
|
|
icon: "file-text-fill",
|
|
|
|
|
text: "教师课表",
|
|
|
|
|
show: true,
|
|
|
|
|
path: "/pages/view/homeSchool/JiaoShiKeBiao",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "hs2",
|
|
|
|
|
icon: "file-text-fill-2",
|
|
|
|
|
text: "班级课表",
|
|
|
|
|
show: true,
|
|
|
|
|
path: "/pages/view/homeSchool/BanJiKeBiao",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "hs3",
|
|
|
|
|
icon: "file-paper-2-fill",
|
|
|
|
|
text: "家长通讯录",
|
|
|
|
|
show: true,
|
|
|
|
|
path: "/pages/view/homeSchool/parentAddressBook/index",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "hs4",
|
|
|
|
|
icon: "newspaper-fill",
|
|
|
|
|
text: "通知列表",
|
|
|
|
|
show: true,
|
|
|
|
|
path: "/pages/view/notice/index",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "hs6",
|
|
|
|
|
icon: "filechart2fil",
|
|
|
|
|
text: "成绩分析",
|
|
|
|
|
show: true,
|
|
|
|
|
path: "/pages/view/homeSchool/ChengJiFenXi",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "hr",
|
|
|
|
|
title: "人事",
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
id: "hr1",
|
|
|
|
|
icon: "draftfill",
|
|
|
|
|
text: "请假申请",
|
|
|
|
|
show: true,
|
|
|
|
|
path: "/pages/view/hr/leaveApplication/index",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "hr2",
|
|
|
|
|
icon: "file-user-fill",
|
|
|
|
|
text: "教师档案",
|
|
|
|
|
show: true,
|
|
|
|
|
path: "/pages/view/hr/teacherProfile/index",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "hr3",
|
|
|
|
|
icon: "newspaper-fill",
|
|
|
|
|
text: "工资条",
|
|
|
|
|
show: true,
|
|
|
|
|
path: "/pages/view/hr/salarySlip/index",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
2025-05-30 17:22:51 +08:00
|
|
|
// 获取分区颜色
|
|
|
|
|
const getSectionColor = (index: number) => {
|
|
|
|
|
const colors = ['#4F46E5', '#059669', '#DC2626'];
|
|
|
|
|
return colors[index % colors.length];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 获取图标背景颜色
|
|
|
|
|
const getIconBgColor = (index: number) => {
|
|
|
|
|
const colors = ['rgba(79, 70, 229, 0.1)', 'rgba(5, 150, 105, 0.1)', 'rgba(220, 38, 38, 0.1)'];
|
|
|
|
|
return colors[index % colors.length];
|
|
|
|
|
};
|
|
|
|
|
|
2025-04-22 10:22:33 +08:00
|
|
|
// 处理网格项点击事件
|
|
|
|
|
const handleGridItemClick = (item: GridItem) => {
|
|
|
|
|
console.log("Clicked item:", item);
|
|
|
|
|
if (item.path) {
|
|
|
|
|
uni.navigateTo({ url: item.path });
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({ title: `功能 ${item.text} 暂未开放`, icon: "none" });
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.service-page {
|
2025-05-30 17:22:51 +08:00
|
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
2025-04-22 10:22:33 +08:00
|
|
|
min-height: 100vh;
|
2025-05-30 17:22:51 +08:00
|
|
|
position: relative;
|
2025-04-22 10:22:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 顶部 Header
|
|
|
|
|
.header-section {
|
2025-05-30 17:22:51 +08:00
|
|
|
position: relative;
|
|
|
|
|
background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #EC4899 100%);
|
2025-04-22 10:22:33 +08:00
|
|
|
color: #ffffff;
|
2025-05-30 17:22:51 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
height: 280rpx;
|
|
|
|
|
|
|
|
|
|
.header-gradient {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
2025-04-22 10:22:33 +08:00
|
|
|
|
|
|
|
|
.header-image {
|
2025-05-30 17:22:51 +08:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: block;
|
|
|
|
|
opacity: 0.3;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 0;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-overlay {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
text-align: center;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
|
|
|
|
|
.header-title {
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
|
|
|
|
|
display: block;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-subtitle {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
color: rgba(255,255,255,0.9);
|
|
|
|
|
text-shadow: 0 1px 2px rgba(0,0,0,0.2);
|
|
|
|
|
}
|
2025-04-22 10:22:33 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 主要内容区域
|
|
|
|
|
.main-content {
|
2025-05-30 17:22:51 +08:00
|
|
|
padding: 20px 15px 40px 15px;
|
2025-04-22 10:22:33 +08:00
|
|
|
position: relative;
|
2025-05-30 17:22:51 +08:00
|
|
|
background: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.98) 100%);
|
|
|
|
|
border-radius: 20px 20px 0 0;
|
|
|
|
|
margin-top: -20px;
|
|
|
|
|
z-index: 3;
|
|
|
|
|
box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
|
2025-04-22 10:22:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 功能分区块
|
|
|
|
|
.section-block {
|
2025-05-30 17:22:51 +08:00
|
|
|
margin-bottom: 25px;
|
|
|
|
|
animation: fadeInUp 0.6s ease-out;
|
|
|
|
|
|
|
|
|
|
&:nth-child(1) { animation-delay: 0.1s; }
|
|
|
|
|
&:nth-child(2) { animation-delay: 0.2s; }
|
|
|
|
|
&:nth-child(3) { animation-delay: 0.3s; }
|
2025-04-22 10:22:33 +08:00
|
|
|
|
|
|
|
|
.section-title {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2025-05-30 17:22:51 +08:00
|
|
|
margin-bottom: 15px;
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
position: relative;
|
2025-04-22 10:22:33 +08:00
|
|
|
|
|
|
|
|
.title-decorator {
|
2025-05-30 17:22:51 +08:00
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
2025-04-22 10:22:33 +08:00
|
|
|
border-radius: 50%;
|
2025-05-30 17:22:51 +08:00
|
|
|
margin-right: 12px;
|
|
|
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
|
2025-04-22 10:22:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
text {
|
2025-05-30 17:22:51 +08:00
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #1f2937;
|
|
|
|
|
letter-spacing: 0.5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title-line {
|
|
|
|
|
flex: 1;
|
|
|
|
|
height: 1px;
|
|
|
|
|
background: linear-gradient(to right, rgba(156, 163, 175, 0.3), transparent);
|
|
|
|
|
margin-left: 15px;
|
2025-04-22 10:22:33 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-grid-card {
|
2025-05-30 17:22:51 +08:00
|
|
|
background: #ffffff;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
padding: 20px 15px;
|
|
|
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.8);
|
|
|
|
|
backdrop-filter: blur(10px);
|
2025-04-22 10:22:33 +08:00
|
|
|
display: grid;
|
2025-05-30 17:22:51 +08:00
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
|
gap: 20px 15px;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
|
|
|
|
|
}
|
2025-04-22 10:22:33 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 网格项
|
|
|
|
|
.grid-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
text-align: center;
|
2025-05-30 17:22:51 +08:00
|
|
|
cursor: pointer;
|
|
|
|
|
padding: 10px 5px;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
transform: translateY(-3px) scale(1.05);
|
|
|
|
|
background: rgba(79, 70, 229, 0.05);
|
|
|
|
|
}
|
2025-04-22 10:22:33 +08:00
|
|
|
|
2025-05-30 17:22:51 +08:00
|
|
|
&:active {
|
|
|
|
|
transform: translateY(-1px) scale(1.02);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grid-icon-container {
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2025-04-22 10:22:33 +08:00
|
|
|
margin-bottom: 8px;
|
2025-05-30 17:22:51 +08:00
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
|
|
|
|
|
|
|
|
|
.grid-icon {
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
}
|
2025-04-22 10:22:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grid-text {
|
2025-05-30 17:22:51 +08:00
|
|
|
font-size: 14px;
|
|
|
|
|
color: #4b5563;
|
|
|
|
|
font-weight: 500;
|
2025-04-22 10:22:33 +08:00
|
|
|
line-height: 1.3;
|
2025-05-30 17:22:51 +08:00
|
|
|
transition: color 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover .grid-text {
|
|
|
|
|
color: #1f2937;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover .grid-icon-container {
|
|
|
|
|
transform: scale(1.1);
|
|
|
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.15);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 动画定义
|
|
|
|
|
@keyframes fadeInUp {
|
|
|
|
|
from {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(30px);
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 响应式优化
|
|
|
|
|
@media (max-width: 375px) {
|
|
|
|
|
.section-grid-card {
|
|
|
|
|
gap: 15px 8px;
|
|
|
|
|
padding: 15px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grid-item {
|
|
|
|
|
padding: 8px 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grid-icon-container {
|
|
|
|
|
width: 42px;
|
|
|
|
|
height: 42px;
|
|
|
|
|
|
|
|
|
|
.grid-icon {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
2025-04-22 10:22:33 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|