个人博客2

昨日:登录页面及注册账户
今日:施工人员及其他三个用户页面
遇到问题:页面功能不完善

施工人员工作台

施工人员工作台

<div class="main-content">
    <!-- 施工人员专属内容 -->
    <h3>当前施工任务</h3>
    <ul id="taskList"></ul>
</div>

<script>
    // 检查登录状态
    const currentUser = JSON.parse(localStorage.getItem('currentUser'));
    if (!currentUser || currentUser.role !== 'worker') {
        window.location.href = 'login.html';
    }

    // 退出登录
    function logout() {
        localStorage.removeItem('currentUser');
        window.location.href = 'login.html';
    }

    // 示例数据展示
    document.getElementById('taskList').innerHTML = `
        <li>任务1:设备检修(进行中)</li>
        <li>任务2:安全巡检(未开始)</li>
    `;
</script>
![](https://img2024.cnblogs.com/blog/3474781/202504/3474781-20250415200345719-354935700.png) ![](https://img2024.cnblogs.com/blog/3474781/202504/3474781-20250415200352889-867820580.png)

posted on 2025-04-15 20:04  不耻  阅读(8)  评论(0)    收藏  举报

导航