statInfo.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <div id="bd-toolbar">
  2. 仓库:
  3. <input id="grainId" class="easyui-combobox bd-w-type grainId" editable="true" name="grainId">&emsp;
  4. <!-- 日期:
  5. <input class="easyui-datebox startDate" type="text" name="startDate" value="">-<input class="easyui-datebox endDate" name="endDate" value="">&emsp; -->
  6. <a href="#" class="easyui-linkbutton bd-add-s bd-search">查询</a>
  7. <a href="#" class="easyui-linkbutton bd-add-s clear-btn" plain="true">清空</a>
  8. </div>
  9. <div class="table-wrap">
  10. <div class="charts" id="tempchart"></div>
  11. <div class="charts" id="pestchart"></div>
  12. <div class="charts" id="workchart"></div>
  13. </div>
  14. <div class="pieChart-div">
  15. <!-- <a href="javascript:;" class="easyui-linkbutton bd-add-s pieChart-contrast" style="float: right;margin: 10px">对比</a> -->
  16. <table class="pieChart-table"></table>
  17. </div>
  18. <!-- <script id="statInfoecharts" type="text/html">
  19. option = {
  20. title : {
  21. text: '{{title}}',
  22. x:'center'
  23. },
  24. tooltip : {
  25. trigger: 'item',
  26. formatter: "{a} <br/>{b} : {c} ({d}%)"
  27. },
  28. series : [
  29. {
  30. name: '访问来源',
  31. type: 'pie',
  32. radius : '55%',
  33. center: ['50%', '60%'],
  34. data:[
  35. {{#arr}}
  36. {value:{{value}}, name:'{{name}}'},
  37. {{/arr}}
  38. ],
  39. itemStyle: {
  40. emphasis: {
  41. shadowBlur: 10,
  42. shadowOffsetX: 0,
  43. shadowColor: 'rgba(0, 0, 0, 0.5)'
  44. }
  45. }
  46. }
  47. ]
  48. };
  49. </script> -->
  50. <style type="text/css">
  51. .bif-con #bd-toolbar{
  52. height:50px;
  53. /*margin: 10px 0;*/
  54. }
  55. .bif-con .table-wrap {
  56. width: 100%;
  57. height: 450px;
  58. border:1px solid #CCC;
  59. overflow: hidden;
  60. box-sizing: border-box;
  61. padding: 30px 0;
  62. }
  63. .charts{
  64. float: left;
  65. width: 33%;
  66. height: 100%;
  67. text-align: center;
  68. line-height: 388px;
  69. }
  70. </style>