基于javaweb+jsp实现企业车辆管理系统

2024-02-19 0 916 百度已收录

运行环境

Java≥6、Tomcat≥7.0、MySQL≥5.5

开发工具

idea/eclipse/MyEclipse

技术框架

JavaWeb JavaBean JSP MVC MySQL Tomcat JavaScript idea eclipse MyEclipse Servlet SSM Maven …

适用

课程设计,大作业,毕业设计,项目练习,学习演示等

功能说明

登录、注册、退出、用户模块、公告模块、车辆模块的增删改查管理

部分代码实现JSP

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>车辆添加</title>
    <%@ include file="include/head.jsp" %>
</head>
<body>
<div class="container-fluid">
    <ul class="nav nav-tabs">
        <li><a href="carList?" rel="external nofollow" >车辆列表</a></li>
        <li class="active"><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >添加</a></li>
    </ul>
    <br/>
    <form class="form-horizontal" role="form" action="carAdd" method="post" onsubmit="return check()">
        <div class="form-group">
            <label class="col-sm-3 control-label">车牌:</label>
            <div class="col-sm-5">
1
2
3
4
5
6
7
            </tr>
        </c:forEach>
        </tbody>
    </table>
    <div style="float: right;padding-right: 10px;color: #515151;"><jsp:include page="split.jsp"/></div>
</div>
</body>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
            <div class="col-sm-5" style="padding-top: 7px;">
                ${vo.carPhone}
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">备注:</label>
            <div class="col-sm-5" style="padding-top: 7px;">
                <textarea rows="3" class="form-control" id="carText" name="carText" disabled="disabled">${vo.carText}</textarea>
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label"></label>
            <div class="col-sm-5" style="padding-top: 7px;">
                <input type="button" class="btn btn-pill btn-grad btn-success btn-sm" value="返回" onclick="javascript:history.back(-1);">
            </div>
        </div>
    </form>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="form-group">
    <label class="col-sm-3 control-label">购买日期:</label>
    <div class="col-sm-5">
        <input type="text" class="form-control" id="carIndate" name="carIndate">
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label">状态:</label>
    <div class="col-sm-5">
        <input name="carStatus" type="radio" value="正常" checked="checked"/>&nbsp;&nbsp;&nbsp;正常&nbsp;&nbsp;&nbsp;&nbsp;
        <input name="carStatus" type="radio" value="故障"/>&nbsp;&nbsp;&nbsp;故障&nbsp;&nbsp;&nbsp;&nbsp;
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label">驾驶员:</label>
    <div class="col-sm-5">
        <input type="text" class="form-control" id="carUser" name="carUser">
    </div>
</div>
<div class="form-group">
1
2
3
4
5
6
7
8
9
10
11
12
</body>
<script type="text/javascript">
    //提交之前进行检查,如果return false,则不允许提交
    function check() {
        //根据ID获取值
        if (document.getElementById("carPai").value.trim().length == 0) {
            alert("车牌不能为空!");
            return false;
        }
        if (document.getElementById("carName").value.trim().length == 0) {
            alert("品牌型号不能为空!");
            return false;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<ul class="nav nav-tabs">
    <li><a href="carList" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >车辆列表</a></li>
    <li class="active"><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >编辑</a></li>
</ul>
<br/>
<form class="form-horizontal" role="form" action="carEdit" method="post" onsubmit="return check()">
    <input type="hidden" class="form-control" id="id" name="id" value="${vo.id}"/>
    
        <div class="form-group">
            <label class="col-sm-3 control-label">车牌:</label>
            <div class="col-sm-5">
                <input type="text" class="form-control" id="carPai" name="carPai" value="${vo.carPai}">
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">品牌型号:</label>
            <div class="col-sm-5">
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<ul class="nav nav-tabs">
    <li><a href="carList" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >车辆列表</a></li>
    <li class="active"><a href="#" rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >编辑</a></li>
</ul>
<br/>
<form class="form-horizontal" role="form" action="carEdit" method="post" onsubmit="return check()">
    <input type="hidden" class="form-control" id="id" name="id" value="${vo.id}"/>
    
        <div class="form-group">
            <label class="col-sm-3 control-label">车牌:</label>
            <div class="col-sm-5">
                <input type="text" class="form-control" id="carPai" name="carPai" value="${vo.carPai}">
            </div>
        </div>
        <div class="form-group">
            <label class="col-sm-3 control-label">品牌型号:</label>
            <div class="col-sm-5">
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
    <th>里程</th>
    <th>购买日期</th>
    <th>状态</th>
    <th>驾驶员</th>
    <th>联系方式</th>
    <th>操作</th>
</tr>
</thead>
<tbody>
<c:forEach items="${list}" var="vo">
    <tr>
        <td>${vo.carPai}</td>
        <td><a href="carGet?id=${vo.id}" rel="external nofollow" >${vo.carName}</a></td>
        <td>${vo.carChexing}</td>
        <td>${vo.carCheng}</td>
        <td>${vo.carIndate}</td>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
                <input type="submit" class="btn btn-pill btn-grad btn-warning btn-sm" value="保存">
                <input type="button" class="btn btn-pill btn-grad btn-success btn-sm" value="返回" onclick="javascript:history.back(-1);">
            </div>
        </div>
    </form>
</div>
</body>
<script type="text/javascript">
    //提交之前进行检查,如果return false,则不允许提交
    function check() {
        //根据ID获取值
        if (document.getElementById("carPai").value.trim().length == 0) {
            alert("车牌不能为空!");
            return false;
        }
        if (document.getElementById("carName").value.trim().length == 0) {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
</script>
</html>
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>车辆详情</title>
    <%@ include file="include/head.jsp" %>
</head>
<body>
<div class="container-fluid">
    <ul class="nav nav-tabs">
        <li><a href="carList" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >用户列表</a></li>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
        ${vo.carIndate}
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label">状态:</label>
    <div class="col-sm-5" style="padding-top: 7px;">
        ${vo.carStatus}
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label">驾驶员:</label>
    <div class="col-sm-5" style="padding-top: 7px;">
        ${vo.carUser}
    </div>
</div>
<div class="form-group">
1
2
3
4
5
6
7
8
9
10
11
12
        <input type="text" class="form-control" name="keyword" id="keyword" placeholder="品牌型号">
        <input type="hidden" id="searchColumn" name="searchColumn" value="car_name"/>
    </div>
    <button class="btn btn-pill btn-grad btn-info btn-sm"><span class="glyphicon glyphicon-search" aria-hidden="true"></span>查询
    </button>
</form>
<br/>
<table class="table table-hover table-bordered">
    <thead>
    <tr>
        <th>车牌</th>
        <th>品牌型号</th>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
            <div class="col-sm-5">
                <input type="text" class="form-control" id="carPhone" name="carPhone" value="${vo.carPhone}">
            </div>
        </div>
    <div class="form-group">
        <label class="col-sm-3 control-label">备注:</label>
        <div class="col-sm-5">
            <textarea rows="3" class="form-control" id="carText" name="carText" placeholder="请输入内容......">${vo.carText}</textarea>
        </div>
    </div>
    <div class="form-group">
        <label class="col-sm-3 control-label"></label>
        <div class="col-sm-5">
            <input type="submit" class="btn btn-pill btn-grad btn-warning btn-sm" value="保存">
            <input type="button" class="btn btn-pill btn-grad btn-success btn-sm" value="返回" onclick="javascript:history.back(-1);">
        </div>
    </div>
</form>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</html>
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>车辆管理</title>
    <%@ include file="include/head.jsp" %>
</head>
<body>
<div class="container-fluid">
    <ul class="nav nav-tabs">
        <li class="active"><a href="carList" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow" >车辆列表</a></li>
        <c:if test="${loginUser.userType == '管理员'}"><li><a href="car_add.jsp" rel="external nofollow" >添加</a></li></c:if>
    </ul>
    <br/>
    <form class="form-inline" id="searchForm" action="carList" method="post">
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
        if (document.getElementById("carPhone").value.trim().length == 0) {
            alert("联系方式不能为空!");
            return false;
        }
        return true;
    }
</script>
</html>
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>车辆编辑</title>
    <%@ include file="include/head.jsp" %>
</head>
<body>
1
2
3
4
5
6
7
8
9
10
11
12
13
    <label class="col-sm-3 control-label">状态:</label>
    <div class="col-sm-5">
               <input name="carStatus" type="radio" value="正常" ${vo.carStatus=='正常'?'checked':''}/>&nbsp;&nbsp;&nbsp;正常&nbsp;&nbsp;&nbsp;&nbsp;
               <input name="carStatus" type="radio" value="故障" ${vo.carStatus=='故障'?'checked':''}/>&nbsp;&nbsp;&nbsp;故障&nbsp;&nbsp;&nbsp;&nbsp;
    </div>
</div>
    <div class="form-group">
        <label class="col-sm-3 control-label">驾驶员:</label>
        <div class="col-sm-5">
            <input type="text" class="form-control" id="carUser" name="carUser" value="${vo.carUser}">
        </div>
    </div>
    <div class="form-group">
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
    return false;
}
if (document.getElementById("carChexing").value.trim().length == 0) {
    alert("车型不能为空!");
    return false;
}
if (document.getElementById("carCheng").value.trim().length == 0) {
    alert("里程不能为空!");
    return false;
}
if (document.getElementById("carIndate").value.trim().length == 0) {
    alert("购买日期不能为空!");
    return false;
}
if (document.getElementById("carUser").value.trim().length == 0) {
    alert("驾驶员不能为空!");
    return false;
1
2
3
4
5
6
7
8
9
10
11
12
    <div class="col-sm-5" style="padding-top: 7px;">
        ${vo.carChexing}
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label">里程:</label>
    <div class="col-sm-5" style="padding-top: 7px;">
        ${vo.carCheng}
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label">购买日期:</label>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<td>${vo.carUser}</td>
<td>${vo.carPhone}</td>
<td>
    <button onclick="window.location.href='carEditPre?id=${vo.id}'"
            class="btn btn-pill btn-grad btn-info btn-xs"
            <c:if test="${loginUser.userType != '管理员'}">disabled="disabled" title="没有权限!!!"</c:if>
             >
        <span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>
        编辑
    </button>
    <button onclick="if(window.confirm('将要删除:${vo.carName}?'))window.location.href='carDelete?id=${vo.id}'"
            class="btn btn-pill btn-grad btn-default btn-xs"
            <c:if test="${loginUser.userType != '管理员'}">disabled="disabled" title="没有权限!!!"</c:if> >
        <span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
        删除
    </button>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label">品牌型号:</label>
    <div class="col-sm-5">
        <input type="text" class="form-control" id="carName" name="carName">
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label">车型:</label>
    <div class="col-sm-5">
        <input type="text" class="form-control" id="carChexing" name="carChexing">
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label">里程:</label>
    <div class="col-sm-5">
        <input type="text" class="form-control" id="carCheng" name="carCheng">
    </div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</ul>
<br/>
<form class="form-horizontal" role="form" action="#" method="post">
    <input type="hidden" class="form-control" id="id" name="id" value="${vo.id}"/>
    <div class="form-group">
        <label class="col-sm-3 control-label">车牌:</label>
        <div class="col-sm-5" style="padding-top: 7px;">
            ${vo.carPai}
        </div>
    </div>
    <div class="form-group">
        <label class="col-sm-3 control-label">品牌型号:</label>
        <div class="col-sm-5" style="padding-top: 7px;">
            ${vo.carName}
        </div>
    </div>
    <div class="form-group">
1
2
3
4
5
6
7
8
9
10
11
12
    <div class="col-sm-5">
        <input type="text" class="form-control" id="carPhone" name="carPhone">
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label">备注:</label>
    <div class="col-sm-5">
        <textarea rows="3" class="form-control" id="carText" name="carText" placeholder="请输入内容......"></textarea>
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label"></label>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
if (document.getElementById("carChexing").value.trim().length == 0) {
    alert("车型不能为空!");
    return false;
}
if (document.getElementById("carCheng").value.trim().length == 0) {
    alert("里程不能为空!");
    return false;
}
if (document.getElementById("carIndate").value.trim().length == 0) {
    alert("购买日期不能为空!");
    return false;
}
if (document.getElementById("carUser").value.trim().length == 0) {
    alert("驾驶员不能为空!");
    return false;
}
if (document.getElementById("carPhone").value.trim().length == 0) {
    alert("联系方式不能为空!");
    return false;
}
return true;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label">车型:</label>
    <div class="col-sm-5">
        <input type="text" class="form-control" id="carChexing" name="carChexing" value="${vo.carChexing}">
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label">里程:</label>
    <div class="col-sm-5">
        <input type="text" class="form-control" id="carCheng" name="carCheng" value="${vo.carCheng}">
    </div>
</div>
<div class="form-group">
    <label class="col-sm-3 control-label">购买日期:</label>
    <div class="col-sm-5">
        <input type="text" class="form-control" id="carIndate" name="carIndate" value="${vo.carIndate}">
    </div>
</div>

效果图

基于javaweb+jsp实现企业车辆管理系统

基于javaweb+jsp实现企业车辆管理系统

基于javaweb+jsp实现企业车辆管理系统

基于javaweb+jsp实现企业车辆管理系统

基于javaweb+jsp实现企业车辆管理系统

基于javaweb+jsp实现企业车辆管理系统

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开支付宝扫一扫,即可进行扫码打赏哦,您的支持,是我继续创作的动力。
点赞 (0)

中和威客保留所有权利,未经本站书面许可不得转载本站内容!文中观点不代表本站立场!

中和威客 Java 基于javaweb+jsp实现企业车辆管理系统 https://www.izhwk.com/archives/623

下一篇:

已经没有下一篇了!

常见问题
  • 您需要注册成为本站会员,然后再通过会员中心的升级VIP功能,方可成为本站的VIP会员。
查看详情
  • 首先您需要注册成为本站会员,然后到会员中心充值,充值后支付对应资源的查看金额即可查看付费内容。
查看详情

相关文章

评论
暂无评论
基于javaweb+jsp实现企业车辆管理系统-海报

分享本文封面