選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

117 行
3.4 KiB

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Steven
  5. * Date: 2017/6/16
  6. * Time: 18:33
  7. */
  8. use yii\helpers\Html;
  9. use yii\helpers\ArrayHelper;
  10. use common\components\zActiveForm;
  11. use backend\modules\motorcade\assets\motorcadeUIAsset;
  12. motorcadeUIAsset::register($this);
  13. motorcadeUIAsset::addScript($this, '/charts/js/highcharts.js');
  14. motorcadeUIAsset::addScript($this, '/charts/js/exporting.js');
  15. $param = $data['param'];
  16. $model = $data['detail'];
  17. $data_for_chart['param'] = $data['param'];
  18. $data_for_chart['model'] = $data['model'];
  19. $chart_data = json_encode($data_for_chart);
  20. ?>
  21. <!DOCTYPE HTML>
  22. <html>
  23. <head>
  24. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  25. <style type="text/css">
  26. #container {
  27. min-width: 310px;
  28. max-width: 1000px;
  29. height: 300px;
  30. margin: 0 auto
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <?php
  36. echo "<input id='data' type='hidden' value='{$chart_data}'>";
  37. motorcadeUIAsset::addScript($this, '/js/oilDetail.js?v=1.11');
  38. ?>
  39. <div style="padding: 20px 20px 0 20px;">
  40. <div class="panel panel-default">
  41. <div class="panel-heading">油耗明细图表</div>
  42. <div class="panel-body">
  43. <div id="container"></div>
  44. </div>
  45. </div>
  46. </div>
  47. <div style="padding: 20px 20px 0 20px;">
  48. <?=
  49. $dp1 = \common\components\zGridView:: widget([
  50. 'id' => 'grid-view-list',
  51. 'dataProvider' => $model,
  52. 'tableOptions' => ['class' => 'table table-striped table-hover'],
  53. 'emptyText' => '没有匹配的记录',
  54. 'showPageSummary' => false,
  55. 'showEmpty' => true,
  56. 'summary' => '',
  57. 'pagerFixed' => true,
  58. 'columns' => [
  59. [
  60. 'width' => '55px',
  61. 'class' => 'kartik\grid\CheckboxColumn',
  62. 'rowSelectedClass' => '',
  63. ],
  64. [
  65. // 'width' => '8%',
  66. 'label' => '日期',
  67. 'attribute' => 'run_date',
  68. ],
  69. [
  70. // 'width' => '16%',
  71. 'label' => '行驶里程',
  72. 'attribute' => 'Mileage',
  73. ],
  74. [
  75. // 'width' => '10%',
  76. 'label' => '标准耗油量(升)',
  77. 'attribute' => 'oil_per',
  78. 'value' => function ($model) {
  79. return number_format($model['Mileage'] * ($model['oil_per']/100), 2);
  80. },
  81. ],
  82. [
  83. // 'width' => '10%',
  84. 'label' => '实际加油量(升)',
  85. 'attribute' => 'ActualOil',
  86. 'value' => function ($model) {
  87. return number_format($model['ActualOil'], 2);
  88. }
  89. ],
  90. [
  91. // 'width' => '10%',
  92. 'label' => '油耗量差(升)',
  93. 'attribute' => 'Mileage',
  94. 'value' => function ($model) {
  95. return number_format($model['ActualOil'] - $model['Mileage'] * ($model['oil_per']/100), 2);
  96. },
  97. ],
  98. [
  99. // 'width' => '10%',
  100. 'label' => '油耗(升 / 百公里)',
  101. 'attribute' => 'oil_per',
  102. 'value' => function ($model) {
  103. return $model['Mileage'] == 0 ? '-' : number_format(($model['ActualOil'] / $model['Mileage']) * 100, 2);
  104. }
  105. ]
  106. ]
  107. ]);
  108. ?>
  109. </div>
  110. </body>
  111. </html>