| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!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>
- <script type="text/javascript" src="js/huimv/tjt.js"></script>
- <script type="text/javascript">
- $(function(){
- if ($("#lqid").val() > 0) {
- jQuery.ajax({
- type : "get",
- url : "getTzfbTjt.htm",
- data : {"lqid" : $("#lqid").val(), "dbrq" : $("#dbrq").val(), "yweb" : $("#yweb").val() },
- dataType : "json",
- async : true,
- success : function(data) {
- if (data) {
- getHighchartTjt2(data);
- }
- }
- });
- }
- });
- function getTzfbGtxxList(xValue) {
- if (xValue != "") {
- var mcid = $("#mcid").val();
- var zsid = $("#zsid").val();
- var lqid = $("#lqid").val();
- var time = $("#time").val();
- var gjz = "tzfb";
- var min = parseInt(xValue) - 0.50;
- var max = parseInt(xValue) + 0.49;
- 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="yweb" name="yweb" value="$!yweb" />
- <input type="hidden" id="time" name="time" value="$!time" />
- <div>
- <div id="chartDiv" style="height: 100%; width: 100%;"></div>
- </div>
- </body>
- </html>
|