| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 | <!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0"/>    <meta name="format-detection" content="telephone=no,email=no,date=no,address=no">    <meta http-equiv="X-UA-Compatible" content="ie=edge">    <link rel="stylesheet" href="../../css/api.css">    <!--<link rel="stylesheet" href="../../css/aui.css">-->    <link rel="stylesheet" href="../../css/projeck.css">    <title></title>    <style>        .aui-searchbar{            width: 86%;            height: 50px;            margin-left: 40px;            background-color: transparent;        }        .aui-searchbar .aui-searchbar-btn{            color: #fff;        }        #search-input::placeholder{            color: #fff;        }        .search_ico{            width: 16px;            height: 16px;            display: block;            position: absolute;            background: url("../../image/seacrh001.png") no-repeat;            background-size: cover;            top: 7px;            left: 17px;        }        .backBtn{            margin-left: 5px;        }        .aui-searchbar-btn{            font-size: 14px!important;        }        #search-input{          font-size: 14px;        }    </style></head><body>    <div class="api_layout">        <header class="header-login">            <img class="backBtn" src="../../image/btn_back.png" alt="" onclick="backIndex()">            <p class="api_text">视频监控</p>        </header>    </div>    <script src="../../script/api.js"></script>    <script src="../../script/fastclick.min.js"></script>    <script src="../../script/config.js"></script>    <script>        apiready = function(){            $api.fixStatusBar( $api.dom('header'));            openFrameFun();            // fnInitUIInput();        };        function openFrameFun() {          api.openFrame({              name: 'monitorList',              url: 'monitorList.html',              rect: {                  x: 0,                  y: $api.dom('header').offsetHeight,                  w: 'auto',                  h: 'auto'              },              pageParam: {                  name: 'test'              },              bounces: false,              bgColor: 'rgba(0,0,0,0)',              vScrollBarEnabled: true,              hScrollBarEnabled: false,              scrollEnabled:false,          });        };        function backIndex() {          api.closeWin();        }    </script></body></html>
 |