移除班次课程表占位页面

This commit is contained in:
2026-08-23 16:33:31 +08:00
parent 29387b3193
commit 0ea410ffec
@@ -1,47 +0,0 @@
<template>
<div class="app-container shift-timetable-page">
<div class="page-card">
<div class="page-header">
<svg-icon icon-class="table" class="page-icon" />
<span>班次课程表</span>
</div>
<el-empty description="功能建设中,敬请期待" />
</div>
</div>
</template>
<script>
export default {
name: 'ShiftTimetable',
data() {
return {}
}
}
</script>
<style scoped lang="scss">
.shift-timetable-page {
.page-card {
background: #fff;
border: 1px solid #ebeef5;
border-radius: 6px;
padding: 20px;
}
.page-header {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 8px;
margin-bottom: 12px;
font-size: 18px;
font-weight: 700;
color: #303133;
.page-icon {
font-size: 40px;
}
}
}
</style>