| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- <?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/chart.html.php';?>
- <?php js::import($jsRoot . 'echarts/echarts.common.min.js');?>
- <?php js::import($jsRoot . 'echarts/timeline.min.js');?>
- <?php js::set('executions', $executions);?>
- <?php js::set('burnXUnit', $lang->execution->burnXUnit);?>
- <?php js::set('burnYUnit', $lang->execution->burnYUnit);?>
- <?php js::set('workHour', $lang->execution->workHour);?>
- <?php js::set('workHourUnit', $lang->execution->workHourUnit);?>
- <div class='header'>
- <div class='img-header'>
- <h2 class='title'><?php echo $screen->name;?></h2>
- <span class='time'><?php echo '更新时间:' . $date;?></span>
- </div>
- </div>
- <div class='content'>
- <?php if(!empty($executions)):?>
- <div class='burn'>
- <?php foreach($executions as $executionID => $execution):?>
- <div class="container" id="<?php echo 'burn' . $executionID;?>">
- </div>
- <?php endforeach;?>
- </div>
- <?php else:?>
- <div class="table-empty-tip">
- <p>
- <span class="text-muted"><?php echo $lang->screen->noData;?></span>
- </p>
- </div>
- <?php endif;?>
- </div>
- <script>
- function initBurnChar()
- {
- console.log(executions);
- Object.values(executions).forEach(function(execution)
- {
- var chartDom = document.getElementById('burn' + execution.id);
- var myChart = echarts.init(chartDom);
- var title = truncateCustomString(execution.name, 36);
- var option = {
- title: {
- text: title,
- top: 10,
- textStyle: {
- color: '#a1c4e9',
- fontSize: 15
- }
- },
- tooltip: {
- trigger: 'axis',
- valueFormatter: (value) => (value == undefined ? 0 : value) + ' ' + workHour + '/' + workHourUnit
- },
- legend: {
- data: ["<?php echo $lang->execution->charts->burn->graph->actuality;?>","<?php echo $lang->execution->charts->burn->graph->reference;?>"],
- textStyle:{
- color: '#dee0e4',
- fontSize: 14
- },
- top: 10,
- right: 0
- },
- color: ['#42526a', '#2567cf', 'red'],
- grid: {
- left: '3%',
- right: '4%',
- top: 65,
- bottom: '3%',
- containLabel: true
- },
- toolbox: {
- feature: {
- saveAsImage: {}
- }
- },
- xAxis: {
- type: 'category',
- name: burnXUnit,
- nameTextStyle:{
- padding: [20, 0, 0, -40],
- verticalAlign: "top"
- },
- boundaryGap: false,
- axisLabel: {
- show: true,
- textStyle: {
- color: '#dee0e4'
- }
- },
- data: execution.chartData['labels']
- },
- yAxis: {
- type: 'value',
- name: burnYUnit,
- nameTextStyle:{
- padding: [0, 0, -40, -45]
- },
- axisLabel: {
- show: true,
- textStyle: {
- color: '#dee0e4'
- }
- },
- axisLine: {
- show: true
- },
- splitLine: {
- show: true,
- lineStyle:{
- color: ['#182a43'],
- width: 2,
- type: 'solid'
- }
- },
- },
- series: [
- {
- name: "<?php echo $lang->execution->charts->burn->graph->reference;?>",
- symbol: 'circle',
- symbolSize: 4,
- type: 'line',
- areaStyle: {color: '#2667cf00'},
- lineStyle: {
- "width": 2,
- "type": "solid"
- },
- data: execution.chartData['baseLine']
- },
- {
- name: "<?php echo $lang->execution->charts->burn->graph->actuality;?>",
- symbol: 'circle',
- symbolSize: 4,
- type: 'line',
- areaStyle: {
- "opacity": 0.8,
- "color": {
- "colorStops": [
- {
- "offset": 0,
- "color": "rgba(73, 146, 255, 0.5)"
- },
- {
- "offset": 1,
- "color": "rgba(73, 146, 255, 0.1)"
- }
- ],
- "x": 0,
- "y": 0,
- "x2": 0,
- "y2": 1,
- "type": "linear",
- "global": false
- }
- },
- lineStyle: {
- "width": 2,
- "type": "solid"
- },
- data: execution.chartData['burnLine']
- },
- ]
- };
- if(execution.chartData['delayLine'])
- {
- var delaySets =
- {
- name: "<?php echo $lang->execution->charts->burn->graph->delay;?>",
- symbol: 'circle',
- symbolSize: 4,
- type: 'line',
- areaStyle: {color: '#2667cf00'},
- lineStyle: {
- "width": 2,
- "type": "solid"
- },
- data: execution.chartData['delayLine']
- }
- option.title.subtext = '已延期';
- option.title.subtextStyle = {color:"red", fontSize: 15};
- option.series.push(delaySets);
- }
- myChart.setOption(option);
- });
- }
- </script>
- <?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>
|