成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

基于javaweb+jsp的醫(yī)院信息管理系統(tǒng)

_DangJin / 3498人閱讀

摘要:基于的醫(yī)院信息管理系統(tǒng)部分代碼實(shí)現(xiàn)科室添加科室列表添加名稱科室列表編輯

基于javaweb+jsp的醫(yī)院信息管理系統(tǒng)

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

部分代碼實(shí)現(xiàn)JSP

<%@ 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="DeptServlet?action=list">科室 列表a>li>        <li class="active"><a href="#">添加a>li>    ul>    <br/>    <form class="form-horizontal" role="form" action="DeptServlet?action=add" method="post" onsubmit="return check()">        <div class="form-group">            <label class="col-sm-3 control-label">名稱:label>
    <%@ include file="include/head.jsp" %>head><body><div class="container-fluid">    <ul class="nav nav-tabs">        <li><a href="DeptServlet?action=list">科室 列表a>li>        <li class="active"><a href="#">編輯a>li>    ul>    <br/>    <form class="form-horizontal" role="form" action="DeptServlet?action=edit" 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="deptName" name="deptName" value="${vo.deptName}">                div>            div>        <div class="form-group">            <label class="col-sm-3 control-label">是否掛號(hào):label>
        <tr>            <th>名稱th>            <th>是否掛號(hào)th>            <th>操作th>        tr>        thead>        <tbody>        <c:forEach items="${list}" var="vo">            <tr>                <td><a href="DeptServlet?action=get&id=${vo.id}">${vo.deptName}a>td>                <td>${vo.deptGuahao}td>                <td>                    <button onclick="window.location.href="DeptServlet?action=editPre&id=${vo.id}""                            class="btn btn-pill btn-success btn-xs"                            if test="${loginUser.userType != "管理員"}">disabled="disabled" title="沒(méi)有權(quán)限?。?!"c:if>                             >                        <span class="glyphicon glyphicon-pencil" aria-hidden="true">span>                        編輯                    button>                    
                                                                        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="deptText" name="deptText" placeholder="請(qǐng)輸入內(nèi)容......">${vo.deptText}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-info btn-sm" value="保存">                <input type="button" class="btn btn-pill btn-info btn-sm" value="返回" onclick="javascript:history.back(-1);">            div>        div>
                        <span class="glyphicon glyphicon-remove" aria-hidden="true">span>                        刪除                    button>                td>            tr>        c:forEach>        tbody>    table>    <div style="float: right;padding-right: 10px;color: #515151;"><jsp:include page="split.jsp"/>div>div>body>
    <ul class="nav nav-tabs">        <li class="active"><a href="DeptServlet?action=list">科室 列表a>li>        <c:if test="${loginUser.userType == "管理員"}"><li><a href="dept_add.jsp">添加a>li>c:if>    ul>    <br/>    <form class="form-inline" id="searchForm" action="DeptServlet?action=list" method="post">        <div class="form-group">            <input type="text" class="form-control" name="keyword" id="keyword" placeholder="名稱">            <input type="hidden" id="searchColumn" name="searchColumn" value="dept_name"/>        div>        <button class="btn btn-pill btn-success btn-sm"><span class="glyphicon glyphicon-search" aria-hidden="true">span>查詢        button>    form>    <br/>    <table class="table table-hover table-bordered">
            div>        div>    form>div>body>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>body><script type="text/javascript">    //提交之前進(jìn)行檢查,如果return false,則不允許提交    function check() {        //根據(jù)ID獲取值        if (document.getElementById("deptName").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" %>
    function check() {        //根據(jù)ID獲取值        if (document.getElementById("deptName").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">
            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-info btn-sm" value="保存">                <input type="button" class="btn btn-pill btn-info btn-sm" value="返回" onclick="javascript:history.back(-1);">            div>        div>    form>div>body><script type="text/javascript">
                ${vo.deptGuahao}            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="deptText" name="deptText" disabled="disabled">${vo.deptText}textarea>            div>        div>        <div class="form-group">            <label class="col-sm-3 control-label">label>            
                 
               
              

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/124709.html

相關(guān)文章

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<