💗博主介绍:✌全平台粉丝5W+,高级大厂开发程序员😃,博客之星、掘金/知乎/华为云/阿里云等平台优质作者。
【源码获取】关注并且私信我
一. 功能介绍
🔍 员工信息管理 - 系统可以轻松添加、编辑或删除员工信息,包括姓名、职位、入职日期等基本资料。📊
📅 薪资计算 - 自动化处理员工的基本工资、加班费、奖金和扣除项,确保每次发薪都准确无误。💰
📊 报表生成 - 自动生成月度或年度薪资报表,方便财务部门进行审计和分析。📊
🔐 权限控制 - 通过角色分配,确保只有授权人员才能访问敏感数据,保护公司和员工的隐私。🔒
🔔 通知系统 - 发送电子邮件或短信通知,提醒员工薪资发放情况或重要政策更新。💌
🔄 历史记录查询 - 员工可以查看自己的薪资历史记录,包括每一次的调整和变动详情。🔎
📈 绩效关联 - 将薪资与员工绩效挂钩,激励员工提高工作表现。🌟
二. 使用技术
- 前端:Vue
- 后端:Java/SpringBoot
- 数据库:Mysql
- 工具:vscode,idea
三. 项目部分截图
四. 源码展示
4.1 前端部分源码
<div class="Login-container">
<!-- 登录区域 -->
<div class="content">
<!-- 配图 -->
<div class="pic"></div>
<!-- 表单 -->
<div class="field">
<!-- [移动端]标题 -->
<div class="pc-title">
<div class="title">Hello !</div>
</div>
<!-- 表单 -->
<div class="form-cont ">
<el-form ref="loginForm" :model="loginForm" :rules="LoginRules" class="login-form">
<!-- 账号密码登录 -->
<el-form-item prop="username">
<el-input v-model="loginForm.username" type="text" auto-complete="off" placeholder="账号" prefix-icon="el-icon-user"></el-input>
</el-form-item>
<el-form-item prop="password">
<el-input v-model="loginForm.password" type="password" auto-complete="off" placeholder="密码" prefix-icon="el-icon-lock" @keyup.enter.native="handleLogin"></el-input>
</el-form-item>
<!-- 下方的登录按钮 -->
<el-form-item style="width:100%;margin-top: 50px;">
<el-button :loading="loading" size="medium" type="primary" style="width:100%;" @click.native.prevent="handleLogin">
<span v-if="!loading">登 录</span>
<span v-else>登 录 中...</span>
</el-button>
</el-form-item>
</el-form>
</div>
</div>
</div>
</div>
4.2 后端部分源码
public class LoginController {
@Autowired
private SystemUserService systemUserService;
@Autowired
private SystemMenusService systemMenusService;
@Autowired
private RedisUtils redisUtil;
public LoginController(SystemUserService systemUserService) {
this.systemUserService = systemUserService;
}
/**
* 用户登录
*
* @param loginDTO
* @return
*/
@PostMapping("/login")
@ApiOperation(value = "登录接口", notes = "登录接口", httpMethod = "POST")
public Result login(@RequestBody LoginDTO loginDTO) {
SystemUser user = systemUserService.findByUsername(loginDTO.getUsername());
if (user != null) {
if (user.getUserStatus() != 1) {
return ResultUtils.fail("用户已停用,请联系管理员");
}
String salt = user.getSalt();
String md5Password = Md5Util.md5(loginDTO.getPassword() + salt);
String dbPassword = user.getPassword();
if (md5Password.equals(dbPassword)) {
//生成token给用户
String token = getToken(user);
Map<Object, Object> resultMap = new HashMap<Object, Object>();
resultMap.put("token", token);
resultMap.put("realName", user.getRealName());
return ResultUtils.success("登录成功", resultMap);
} else {
return ResultUtils.fail("账号密码错误");
}
}
return ResultUtils.fail("未找到指定账号,请联系管理员");
}