123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>设备管理(设备类型)</title>
- <link rel="shortcut icon" href="favicon.ico">
- <link rel="stylesheet" href="layui/css/layui.css" />
- <link rel="stylesheet" href="css/common.css" />
- <link rel="stylesheet" href="css/per-manage.css" />
- <script src="js/flexible.js"></script>
- </head>
- <body style="background-image:url(images/big-bg.png)">
- <section class="mainbox ">
- <div class="tit-box flex">
- <h2 class="title flex2">设备管理
- </h2>
- <h2 class="title flex10">详细列表</h2>
- </div>
- <div class="content-box flex">
- <div class="column column1 flex2">
- <ul>
- <li class="selected"><a href="pages/device-manage/deviceType.html" target="iframe">设备类型</a></li>
- <li><a href="pages/device-manage/deviceList.html" target="iframe">设备列表</a></li>
- <li><a href="pages/device-manage/deviceCommunicate.html" target="iframe">通信接口</a></li>
- <li><a href="pages/device-manage/deviceCheck.html" target="iframe">监测点位</a></li>
- <li><a href="pages/device-manage/deviceCheck-channel.html" target="iframe">监测通道</a></li>
- </ul>
- </div>
- <div class="column3 flex10">
- <iframe name="iframe" width="100%" height="100%" frameborder="0" src="pages/device-manage/deviceType.html"></iframe>
- </div>
- </div>
- </section>
- <script src="js/jquery.js"></script>
- <script>
- $(function() {
- $('ul li').click(function() {
- $(this).siblings().each(function() {
- $(this).removeClass('selected');
- })
- //当前选中
- $(this).addClass('selected')
- })
- })
- </script>
- </body>
- </html>
|