作者主页:源码空间站2022
简介:Java领域优质创作者、Java项目、学习资料、技术互助
文末获取源码
项目介绍
基于SpringBoot Vue的家政服务管理平台
角色:管理员、用户、服务人员
管理员:管理员登录系统后,可以对首页、个人中心、用户管理、服务人员管理、服务信息管理、服务类型管理、服务预约管理、服务取消管理、服务分配管理、服务进度管理、评价信息管理、留言反馈、系统管理等功能进行相应的操作管理
用户:用户登录系统后,可以对首页、个人中心、服务预约管理、服务分配管理、服务取消管理、服务进度管理、评价信息管理、留言反馈、我的收藏管理等功能
服务人员:服务人员登录系统后,可以对首页、个人中心、服务分配管理、服务进度管理、评价信息管理等功能
使用人群:
正在做毕设的学生,或者需要项目实战练习的Java学习者
由于本程序规模不大,可供课程设计,毕业设计学习演示之用
环境需要
1.运行环境:最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。
2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;
3.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS;
4.数据库:MySql 5.7/8.0版本均可;
5.是否Maven项目:是;
技术栈
后端: SpringBoot+Mybatis
前端:Vue + Vue Router + ELementUI + Axios
使用说明
项目运行:
1. 使用Navicat或者其它工具,在mysql中创建对应sql文件名称的数据库,并导入项目的sql文件;
2. 使用IDEA/Eclipse/MyEclipse导入项目,导入成功后请执行maven clean;maven install命令,然后运行;
3. 将项目中application.yml配置文件中的数据库配置改为自己的配置;
运行截图
论文
前台界面
后管界面
相关代码
IndexController
package com.xxxx.controller;
import com.xxxx.pojo.HouseKeeper;
import com.xxxx.pojo.Type;
import com.xxxx.service.IndexService;
import com.xxxx.utils.StringUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.xxxx.pojo.ResponseResult;
import javax.servlet.http.HttpSession;
import java.util.List;
/**
* @Author Lionel
* @Date 2021/3/8 1:41
* Created by IntelliJ IDEA 2020.1.
* Project: house
* Description:首页Controller
*/
@Controller
@RequestMapping("/index")
public class IndexController extends BaseController{
@Autowired
private IndexService indexService;
/**
* 跳转主页
* @return 主页
*/
@GetMapping("/toIndex")
public String toIndex() {
return "index";
}
/**
* 跳转主页
* @return 主页
*/
@GetMapping("/toIndex2")
public String toIndex2() {
return "index2";
}
@RequestMapping("/getAllType")
@ResponseBody
public ResponseResult<List<Type>> getAllType () {
ResponseResult<List<Type>> result = new ResponseResult<>();
List<Type> list = indexService.getAllType();
System.out.println(list);
result.setData(list);
return result;
}
@RequestMapping("/getAllSmallType")
@ResponseBody
public ResponseResult<List<Type>> getAllSmallType (
@RequestParam("type_id") Integer type_id
) {
ResponseResult<List<Type>> result = new ResponseResult<>();
List<Type> list = indexService.getAllSmallType(type_id);
result.setData(list);
return result;
}
@RequestMapping("/getTopHousekeeper")
@ResponseBody
public ResponseResult<List<HouseKeeper>> getTopHouseKeeper () {
ResponseResult<List<HouseKeeper>> result = new ResponseResult<>();
List<HouseKeeper> list = indexService.getTopHousekeeper(5);
result.setData(list);
return result;
}
@RequestMapping("/getTopRepair")
@ResponseBody
public ResponseResult<List<HouseKeeper>> getTopRepair () {
ResponseResult<List<HouseKeeper>> result = new ResponseResult<>();
List<HouseKeeper> list = indexService.getTopHousekeeper(9);
result.setData(list);
return result;
}
@RequestMapping("/getTopMove")
@ResponseBody
public ResponseResult<List<HouseKeeper>> getTopMove () {
ResponseResult<List<HouseKeeper>> result = new ResponseResult<>();
List<HouseKeeper> list = indexService.getTopHousekeeper(13);
result.setData(list);
return result;
}
@RequestMapping("/getRecommend")
@ResponseBody
public ResponseResult<List<HouseKeeper>> getRecommend (
HttpSession session
) {
ResponseResult<List<HouseKeeper>> result = new ResponseResult<>();
List<HouseKeeper> list = indexService.getRecommend(session);
result.setData(list);
return result;
}
@PostMapping("/getTypeID")
@ResponseBody
public ResponseResult<Integer> getTypeID (
@RequestParam("param") String param
) {
ResponseResult<Integer> result = new ResponseResult<>();
int id = indexService.getTypeID(param);
result.setData(id);
return result;
}
}
如果也想学习本系统,下面领取。关注并回复:148springboot