123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <%@page language="java" pageEncoding="UTF-8"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>仓库物资统计</title>
- <!--框架必需start-->
- <%@include file="../../../../include.jsp" %>
- <!--框架必需end-->
- <script type="text/javascript" src="../../../../../scripts/business/am/resource/warehouse/warehouse_poll.js"></script>
- <script type="text/javascript" src="/nwyj/page/cockpit/echarts-2.2.7/build/dist/echarts-all.js"></script>
- <style type="text/css">
- .l-grid-hd-cell{
- /* //height: 34px; */
- background-color: #5582b9;
- height: 40px;
- }
- .l-grid-hd-cell-text{
- font-weight:bold;
- color:white
- }
-
- .bd{
- width: 978px;
- margin-top:10px
- }
- .title{
- height: 50px;
- /* background: #F8F8F8; */
- border-style:solid;
- border-width:1px;
- border-right:1px;
- border-left:1px;
- border-top:1px;
- border-color:#cdcaca;
- }
- .title_font{
- font-weight: bold;
- font-size: 24px;
- line-height: 45px;
- color:#3e62a0;
- }
- .button_jl{
- margin:0px 20px 10px 0px;
- float:right;
- }
- .td-move{
- padding: 10px 5px 0px 0px;
- }
- .back{
- margin:10px 0px 10px 15px;
- }
-
- </style>
- <script type="text/javascript">
- $(function(){
- $("#back").hover(function(){
- $(this).attr("src","/nwyj/images/temp/back_hover.png");
- },function(){
- $(this).attr("src","/nwyj/images/temp/back.png");
- });
- });
- </script>
- </head>
- <body class="bd" align="center" >
-
- <div id="searchPanel" style="border: 1px solid #cdcaca;background: white;">
-
- <div class="title" align="center">
- <a href="javascript:;"><img id="back" class="back" onclick="goBack()" align="left" alt="返回" title="返回" src="/nwyj/images/temp/back.png" /></a>
- <font class="title_font">应急物资仓库汇总</font>
- </div>
-
- <br />
- <div style="margin:0px 20px 10px 20px;">
- <div id="maingrid"></div>
- </div>
-
- <fieldset style="border-color:#cdcaca;margin:10px 20px 20px 20px">
- <div style="height:500px">
- <div class="basicTab" >
- <div name="柱状图" style="width:100%;height:100%;">
- <div id="main1" style="height:400px;"></div>
- </div>
- <div name="折线图" style="width:100%;height:100%;">
- <div id="main2" style="height:400px;"></div>
- </div>
- <div name="饼图" style="width:100%;height:100%;">
- <div id="main3" style="height:400px;"></div>
- </div>
- </div>
- </div>
- </fieldset>
- </div>
- </body>
- </html>
|