123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!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" />
- <script type="text/javascript" src="js/huimv/tjt.js"></script>
- <title>小时采食次数统计图</title>
- <script type="text/javascript">
- $(function(){
- if ($("#lqid").val() > 0) {
- huimv.showProcessModel('查询数据中');
- jQuery.ajax({
- type : "get",
- url : "getQtXsscsTjt.htm",
- data : {"lqid" : $("#lqid").val(), "dbrq" : $("#dbrq").val(), "fwfb" : $("#fwfb").val()},
- dataType : "json",
- async : true,
- success : function(data) {
- huimv.hideProcessModel();
- if (data) {
- getHighchartTjt2(data);
- }
- }
- });
- }
- });
- function getFwfbGtxxList(xValue) {
- if (xValue != "") {
- var mcid = $("#mcid").val();
- var zsid = $("#zsid").val();
- var lqid = $("#lqid").val();
- var time = 0;
- var gjz = "drwfw";
- var min = "";
- var max = "";
- var str = xValue.split("-");
- if (str.length == 1) {
- min = 48;
- max = 9999;
- } else {
- min = parseInt(str[0]);
- max = parseInt(str[1]);
- }
- getGtxxList(mcid, zsid, lqid, gjz, min, max, time);
- }
- }
- </script>
- </head>
- <body>
- <input type="hidden" id="mcid" name="mcid" value="$!mcid" />
- <input type="hidden" id="zsid" name="zsid" value="$!zsid" />
- <input type="hidden" id="lqid" name="lqid" value="$!lqid" />
- <input type="hidden" id="dbrq" name="dbrq" value="$!dbrq" />
- <input type="hidden" id="fwfb" name="fwfb" value="$!fwfb" />
- <div>
- <div id="chartDiv" style="height: 100%; width: 100%;"></div>
- </div>
- </body>
- </html>
|