123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <div id="bd-toolbar">
- 仓库:
- <input id="grainId" class="easyui-combobox bd-w-type grainId" name="grainId" editable="true" style="width:120px"> 
- 仓房1:<input id="houseId1" class="easyui-combobox houseId houseId1" editable="false" name="houseId1" style="width:100px">
- <select id="level1" class="easyui-combobox houseOne" name="level1" panelHeight="100" editable="false" style="width:100px">
- <option value="First">1层</option>
- <option value="Second">2层</option>
- <option value="Third">3层</option>
- <option value="Fourth">4层</option>
- </select> 
- 仓房2:<input id="houseId2" class="easyui-combobox houseId houseId2" name="houseId2" editable="false" style="width:100px">
- <select id="level2" class="easyui-combobox houseTwo" name="level2" panelHeight="100" editable="false" style="width:100px">
- <option value="First">1层</option>
- <option value="Second">2层</option>
- <option value="Third">3层</option>
- <option value="Fourth">4层</option>
- </select>
- <input class="easyui-datebox beignDate" id="beignDate" name="beginDate" editable="false" style="width:100px">-<input class="easyui-datebox endDate" id="endDate" name="endDate" editable="false" style="width:100px"> 
- <a href="javascript:;" class="easyui-linkbutton bd-add-s temp-search">对比</a>
- <a href="#" class="easyui-linkbutton bd-add-s clear-btn" plain="true">清空</a>
- </div>
- <div class="lineChart-wrap">
- <div class="lineChart-top">
- <a href="javascript:;" class="easyui-linkbutton bd-add-s temp-max">高温</a>
- <a href="javascript:;" class="easyui-linkbutton bd-add-s temp-min">低温</a>
- <a href="javascript:;" class="easyui-linkbutton bd-add-s temp-avg">平均温</a>
- </div>
- <div class="lineChart"></div>
- </div>
- <!-- <script id="statInfoecharts" type="text/html">
- option = {
- title: {
- text: '仓房层温对比分析'
- },
- legend: {
- data:['{{title1}}','{{title2}}']
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '3%',
- containLabel: true
- },
- toolbox: {
- feature: {
- saveAsImage: {}
- }
- },
- xAxis: {
- type: 'time',
- boundaryGap: false,
- data:
- [
- {{#xval}}
- {{.}},
- {{/xval}}
- ]
- },
- yAxis: {
- type: 'value',
- boundaryGap: false,
- splitLine: {
- show: false
- }
- },
- series: [
- {
- name:'{{title1}}',
- type:'line',
- stack: '总量',
- data:[
- {{#oney}}
- {{.}},
- {{/oney}}
- ]
- },
- {
- name:'{{title2}}',
- type:'line',
- stack: '总量',
- data:
- [
- {{#twoy}}
- {{.}},
- {{/twoy}}
- ]
- }
- ]
- };
- </script> -->
- <style type="text/css">
- .bif-con #bd-toolbar{
- height:50px;
- /*margin: 10px 0;*/
- }
- .bif-con .lineChart-wrap {
- width: 100%;
- height: 500px;
- border:1px solid #CCC;
- overflow: hidden;
- box-sizing: border-box;
- }
- .lineChart-top {
- display: none;
- height: 50px;
- box-sizing: border-box;
- padding-top: 10px;
- }
- .lineChart-top a {
- float: right;
- margin-right: 10px;
- }
- .bif-con .lineChart {
- width: 100%;
- height: 450px;
- overflow: hidden;
- }
- /* .charts{
- float: left;
- width: 33%;
- height: 100%;
- }*/
- </style>
|