个人博客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>


浙公网安备 33010602011771号