小區後臺管理系統項目前端html頁面模板實現示例

登錄

小區管理系統主頁

小區管理菜單

房產管理菜單

業主信息管理菜單

停車位管理菜單

服務管理菜單

資產管理菜單

收費管理菜單

管理員管理菜單

系統設置

項目結構:

主要代碼展示:

登錄

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  <title>系統登錄</title>
  <link rel="stylesheet" href="css/login.css" rel="external nofollow"   >
  <script type="text/javascript" src="js/jquery.min.js"></script>
  <script src="./lib/layui/layui.js" charset="utf-8"></script>
</head>
<body class="login-bg">
    <div class="login">
        <div class="message">系統登錄</div>
        <div id="darkbannerwrap"></div>   
        <form method="post" class="layui-form" >
            <input name="username" placeholder="用戶名"  type="text" lay-verify="required" class="layui-input" >
            <hr class="hr15">
            <input name="password" lay-verify="required" placeholder="密碼"  type="password" class="layui-input">
            <hr class="hr15">
            <input value="登錄" lay-submit lay-filter="login" style="width:100%;" type="submit">
            <hr class="hr20" >
        </form>
    </div>
    <script>
            layui.use(['form'],
            function() {
                $ = layui.jquery;
                var form = layui.form(),
                layer = layui.layer;
                //監聽提交
                form.on('submit(login)',
                function(data) {
                    //alert(1);
                    /*console.log(data);*/
                    layer.alert(JSON.stringify(data.field), {
                      title: '點擊確定進入後臺'
                    },function  () {
                        location.href = "./index.html";
                    })
                    return false;

                });
            });
        </script>    
    <!-- 底部結束 -->    
</body>
</html>

小區列表

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>
        小區列表
    </title>
    <meta name="renderer" content="webkit">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <meta name="apple-mobile-web-app-status-bar-style" content="black">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="format-detection" content="telephone=no">
    <link rel="stylesheet" href="css/main.css" rel="external nofollow"    media="all">
    <script type="text/javascript" src="lib/loading/okLoading.js"></script>
    <link rel="stylesheet" href="css/bootstrap.css" rel="external nofollow"   >
</head>
<body>
<div class="x-nav">
            <span class="layui-breadcrumb">
              <a><cite>首頁</cite></a>
              <a><cite>小區管理</cite></a>
              <a><cite>小區列表</cite></a>
            </span>
    <a class="layui-btn layui-btn-small" style="line-height:1.6em;margin-top:3px;float:right"  href="javascript:location.replace(location.href);" rel="external nofollow"    title="刷新"><i class="layui-icon" style="line-height:30px">ဂ</i></a>
</div>
<div class="x-body">
    <form class="layui-form x-center" action="" style="width:80%">
        <div class="layui-form-pane" style="margin-top: 15px;">
            <div class="layui-form-item">
                <label class="layui-form-label">日期范圍</label>
                <div class="layui-input-inline">
                    <input class="layui-input" placeholder="開始日" id="LAY_demorange_s">
                </div>
                <div class="layui-input-inline">
                    <input class="layui-input" placeholder="截止日" id="LAY_demorange_e">
                </div>
                <div class="layui-input-inline">
                    <input type="text" name="username"  placeholder="請輸入登錄名" autocomplete="off" class="layui-input">
                </div>
                <div class="layui-input-inline" style="width:80px">
                    <button class="layui-btn"  lay-submit="" lay-filter="sreach"><i class="layui-icon"></i></button>
                </div>
            </div>
        </div>
    </form>
    <xblock>
        <button class="layui-btn layui-btn-danger" onclick="delAll()"><i class="layui-icon"></i>批量刪除</button>
        <button class="layui-btn" onclick="admin_add('添加','communityadd.html','1000','600')"><i class="layui-icon"></i>添加</button>
        <span class="x-right" style="line-height:40px">共有數據:<span class="layui-badge">2</span> 條</span>
    </xblock>
    <table class="layui-table">
        <thead>
        <tr>
            <th>
                <input type="checkbox" name="" value="">
            </th>
            <th>
                ID
            </th>

            <th>
                小區編號
            </th>
            <th>
                小區名稱
            </th>
            <th>
                坐落地址
            </th>
            <th>
                占地面積(m2)
            </th>
            <th>
                總棟數
            </th>
            <th>
                總戶數
            </th>
            <th>
                綠化率(%)
            </th>
            <th>
                縮略圖
            </th>
            <th>
                開發商名稱
            </th>
            <th>
                物業公司名稱
            </th>
            <th>
                創建時間
            </th>
            <th>
                狀態
            </th>
            <th>
                操作
            </th>
        </tr>
        </thead>
        <tbody id="x-img">
        <tr>
            <td>
                <input type="checkbox" value="1" name="">
            </td>
            <td>
                2                        </td>
            <td >
                XY20191210001                        </td>
            <td >
                金華萬府                        </td>
            <td >
                XXX市                        </td>
            <td >
                12000                        </td>
            <td >
                12                        </td>
            <td >
                200                        </td>
            <td >
                60                        </td>
            <td>
                <img src="./images/tx.jpg" width="50" height="30" alt="">
            </td>
            <td >
                XX市房產開發有限公司                        </td>
            <td >
                XXX市房產開發物業有限公司                        </td>
            <td >
                2019-12-10 19:17:04                        </td>
            <td class="td-status"> <span class="layui-btn layui-btn-normal " onclick="start(this,'2',0)"> 顯示 </span>
            </td>
            <td class="td-manage">
                <a style="text-decoration:none" onclick="admin_stop(this,'10001')" href="javascript:;" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"            title="停用">
                    <i class="layui-icon"></i>
                </a>
                <a title="編輯" href="javascript:;" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"            onclick="community_edit('編輯','communityadd.html','2','1000','600')"
                   class="ml-5" style="text-decoration:none">
                    <i class="layui-icon"></i>
                </a>
                <a title="刪除" href="javascript:;" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"            onclick="admin_del(this,'1')"
                   style="text-decoration:none">
                    <i class="layui-icon"></i>
                </a>
            </td>
        </tr>
        </tbody>
    </table>
    <div id="page"><ul class="pagination"><li class="disabled"><span>&laquo;</span></li> <li class="active"><span>1</span></li><li><a href="/xiyuan/Community/lst?page=2" rel="external nofollow"  rel="external nofollow"     >2</a></li> <li><a href="/xiyuan/Community/lst?page=2" rel="external nofollow"  rel="external nofollow"     >&raquo;</a></li></ul></div>
</div>
<script src="lib/layui/layui.js" charset="utf-8"></script>
<script src="js/x-layui.js" charset="utf-8"></script>
<script>
    layui.use(['laydate','element','laypage','layer'], function(){
        $ = layui.jquery;//jquery
        laydate = layui.laydate;//日期插件
        lement = layui.element();//面包導航
        laypage = layui.laypage;//分頁
        layer = layui.layer;//彈出層
        okLoading.close($);
        //以上模塊根據需要引入
        /*laypage({
          cont: 'page'
          ,pages: 100
          ,first: 1
          ,last: 100
          ,prev: '<em><</em>'
          ,next: '<em>></em>'
        }); */
        layer.ready(function(){ //為瞭layer.ext.js加載完畢再執行
            layer.photos({
                photos: '#x-img'
                //,shift: 5 //0-6的選擇,指定彈出圖片動畫類型,默認隨機
            });
        });
        var start = {
            min: laydate.now()
            ,max: '2099-06-16 23:59:59'
            ,istoday: false
            ,choose: function(datas){
                end.min = datas; //開始日選好後,重置結束日的最小日期
                end.start = datas //將結束日的初始值設定為開始日
            }
        };
        var end = {
            min: laydate.now()
            ,max: '2099-06-16 23:59:59'
            ,istoday: false
            ,choose: function(datas){
                start.max = datas; //結束日選好後,重置開始日的最大日期
            }
        };
        document.getElementById('LAY_demorange_s').onclick = function(){
            start.elem = this;
            laydate(start);
        }
        document.getElementById('LAY_demorange_e').onclick = function(){
            end.elem = this
            laydate(end);
        }
    });
    //批量刪除提交
    function delAll () {
        layer.confirm('確認要刪除嗎?',function(index){
            //捉到所有被選中的,發異步進行刪除
            layer.msg('刪除成功', {icon: 1});
        });
    }
    /*添加*/
    function admin_add(title,url,w,h){
        x_admin_show(title,url,w,h);
    }
    /*停用*/
    function admin_stop(obj,id){
        layer.confirm('確認要停用嗎?',function(index){
            //發異步把用戶狀態進行更改
            $(obj).parents("tr").find(".td-manage").prepend('<a style="text-decoration:none" onClick="admin_start(this,id)" href="javascript:;" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"            title="啟用"><i class="layui-icon"></i></a>');
            $(obj).parents("tr").find(".td-status").html('<span class="layui-btn layui-btn-disabled layui-btn-mini">已停用</span>');
            $(obj).remove();
            layer.msg('已停用!',{icon: 5,time:1000});
        });
    }
    /*啟用*/
    function admin_start(obj,id){
        layer.confirm('確認要啟用嗎?',function(index){
            //發異步把用戶狀態進行更改
            $(obj).parents("tr").find(".td-manage").prepend('<a style="text-decoration:none" onClick="admin_stop(this,id)" href="javascript:;" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"            title="停用"><i class="layui-icon"></i></a>');
            $(obj).parents("tr").find(".td-status").html('<span class="layui-btn layui-btn-normal layui-btn-mini">已啟用</span>');
            $(obj).remove();
            layer.msg('已啟用!',{icon: 6,time:1000});
        });
    }
    //編輯
    function community_edit (title,url,id,w,h) {
        url = url+"?id="+id;
        x_admin_show(title,url,w,h);
    }
    /*刪除*/
    function admin_del(obj,id){
        layer.confirm('確認要刪除嗎?',{icon:3,title:'提示信息'},function(index){
            $.ajax({
                type:"post",
                url:"/xiyuan/banner/banner_del.html",
                data:{id:id},
                dataType:"json",
                success:function(data){
                    //console.log(data);
                    if(data.status==1){
                        //發異步刪除數據
                        $(obj).parents("tr").remove();
                        layer.msg(data.info,{icon:6,time:1000});
                        setTimeout(function(){
                            window.location.reload();
                        },1000);return false;
                    } else{
                        layer.msg(data.info,{icon:5,time:1000});return false;
                    }
                }
            });
            //發異步刪除數據
            $(obj).parents("tr").remove();
            layer.msg('已刪除!',{icon:1,time:1000});
        });
    }
</script>
</body>
</html>

以上就是java開發小區後臺管理系統頁面模板項目示例的詳細內容,更多關於java開發小區後臺管理系統頁面模板的資料請關註WalkonNet其它相關文章!

推薦閱讀: