sprint day7

1.项目预期任务量:15天
2.已花费时间:12天
3.剩余时间:3天
任务看板:

SCRUM会议照片:

产品状态:
分类管理模块
界面演示:首先进入分类管理的主界面
然后会根据表格对学生进行分类
代码:`

培训管理系统

培训管理系统

<div class="tab-container">
    <div class="tab active" onclick="openTab('courses')">培训课程</div>
    <div class="tab" onclick="openTab('plans')">培训计划</div>
    <div class="tab" onclick="openTab('records')">培训记录</div>
</div>

<!-- 培训课程管理 -->
<div id="courses" class="content active">
    <h2>培训课程管理</h2>
    <button onclick="openCourseModal()">添加课程</button>
    <table id="courseTable">
        <thead>
        <tr>
            <th>ID</th>
            <th>课程名称</th>
            <th>描述</th>
            <th>培训方式</th>
            <th>操作</th>
        </tr>
        </thead>
        <tbody></tbody>
    </table>
</div>

<!-- 培训计划管理 -->
<div id="plans" class="content">
    <h2>培训计划管理</h2>
    <button onclick="openPlanModal()">添加计划</button>
    <table id="planTable">
        <thead>
        <tr>
            <th>ID</th>
            <th>计划名称</th>
            <th>关联课程</th>
            <th>计划时间</th>
            <th>操作</th>
        </tr>
        </thead>
        <tbody></tbody>
    </table>
</div>

<!-- 员工培训记录 -->
<div id="records" class="content">
    <h2>员工培训记录</h2>
    <button onclick="openRecordModal()">添加记录</button>
    <table id="recordTable">
        <thead>
        <tr>
            <th>ID</th>
            <th>员工ID</th>
            <th>培训ID</th>
            <th>参加时间</th>
            <th>操作</th>
        </tr>
        </thead>
        <tbody></tbody>
    </table>
</div>
`
posted @ 2025-04-24 20:00  她会回来对不队  阅读(12)  评论(0)    收藏  举报