You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
4.6 KiB
PHP
98 lines
4.6 KiB
PHP
<?php
|
|
|
|
namespace app\index\controller;
|
|
|
|
use think\Controller;
|
|
use think\Db;
|
|
use think\Request;
|
|
|
|
class TbEpa2 extends Controller {
|
|
|
|
public function index() {
|
|
$edate = date("Y-m-d");
|
|
$sdate = date('Y-m-d', strtotime("$edate -1 month"));
|
|
if (!empty($_GET['stime'])) {
|
|
$sdate = $_GET['stime'];
|
|
}
|
|
if (!empty($_GET['etime'])) {
|
|
$edate = substr($_GET['etime'], 0, 10);
|
|
$edate = date("Y-m-d", strtotime("$edate +1 day"));
|
|
}
|
|
if (empty($_GET['id']))
|
|
die('无效的编号');
|
|
$id = $_GET['id'];
|
|
$warn = Db::table('warn_cfg')->where('eqmid', $id)->find();
|
|
session('warn', $warn);
|
|
$this->assign('warn', $warn);
|
|
$data = Db::table('data_epa_h')->field('d_Time,cmbugas,tmp,dew,mstppm')->where('eqmid', $id)->where('d_Time', 'between time', [$sdate, $edate])->order('d_Time desc')->paginate(10, false, ['query' => request()->param(),]);
|
|
$data1 = Db::table('data_epa_h')->field('d_Time,cmbugas,tmp,dew,mstppm')->where('eqmid', $id)->where('d_Time', 'between time', [$sdate, $edate])->select();
|
|
session('data', $data);
|
|
session('data1', $data1);
|
|
$this->assign('data', $data);
|
|
return $this->fetch('tb_epa2');
|
|
}
|
|
|
|
public function ExcelOne() {
|
|
$list = session('data');
|
|
$xlsCell = array(
|
|
array('d_Time', '时间'),
|
|
array('cmbugas', '总烃'),
|
|
array('tmp', '温度'),
|
|
array('dew', '湿度'),
|
|
array('mstppm', '微水含量')
|
|
);
|
|
$this->exportExcel("当前数据导出", $xlsCell, $list);
|
|
}
|
|
|
|
public function ExcelAll() {
|
|
$list = session('data1');
|
|
$xlsCell = array(
|
|
array('d_Time', '时间'),
|
|
array('cmbugas', '总烃'),
|
|
array('tmp', '温度'),
|
|
array('dew', '湿度'),
|
|
array('mstppm', '微水含量')
|
|
);
|
|
$this->exportExcel("全部数据导出", $xlsCell, $list);
|
|
}
|
|
|
|
public function exportExcel($expTitle, $expCellName, $expTableData) {
|
|
$xlsTitle = iconv('utf-8', 'gb2312', $expTitle);
|
|
$fileName = $expTitle . date('_YmdHis');
|
|
$cellNum = count($expCellName);
|
|
$dataNum = count($expTableData);
|
|
import('PhpExcel', EXTEND_PATH);
|
|
$objPHPExcel = new \PhpExcel();
|
|
$objWriter = new \PHPExcel_Writer_Excel5($objPHPExcel);
|
|
$cellName = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'AA', 'AB', 'AC', 'AD', 'AE', 'AF', 'AG', 'AH', 'AI', 'AJ', 'AK', 'AL', 'AM', 'AN', 'AO', 'AP', 'AQ', 'AR', 'AS', 'AT', 'AU', 'AV', 'AW', 'AX', 'AY', 'AZ');
|
|
$objPHPExcel->getActiveSheet(0)->mergeCells('A1:' . $cellName[$cellNum - 1] . '1');
|
|
for ($i = 0; $i < $cellNum; $i++) {
|
|
$objPHPExcel->getActiveSheet(0)->getColumnDimension($cellName[$i])->setWidth(18);
|
|
$objPHPExcel->setActiveSheetIndex(0)->setCellValue($cellName[$i] . '2', $expCellName[$i][1]);
|
|
}
|
|
for ($i = 0; $i < $dataNum; $i++) {
|
|
for ($j = 0; $j < $cellNum; $j++) {
|
|
if ($expTableData[$i]['cmbugas'] < session('warn.warnmin1') || $expTableData[$i]['cmbugas'] > session('warn.warnmax1')) {
|
|
$objPHPExcel->getActiveSheet(0)->getStyle('B' . ($i + 3))->getFont()->getColor()->setARGB('FFFF0000');
|
|
}
|
|
if ($expTableData[$i]['tmp'] < session('warn.warnmin2') || $expTableData[$i]['tmp'] > session('warn.warnmax2')) {
|
|
$objPHPExcel->getActiveSheet(0)->getStyle('C' . ($i + 3))->getFont()->getColor()->setARGB('FFFF0000');
|
|
}
|
|
if ($expTableData[$i]['dew'] < session('warn.warnmin3') || $expTableData[$i]['dew'] > session('warn.warnmax3')) {
|
|
$objPHPExcel->getActiveSheet(0)->getStyle('D' . ($i + 3))->getFont()->getColor()->setARGB('FFFF0000');
|
|
}
|
|
if ($expTableData[$i]['mstppm'] < session('warn.warnmin4') || $expTableData[$i]['mstppm'] > session('warn.warnmax4')) {
|
|
$objPHPExcel->getActiveSheet(0)->getStyle('E' . ($i + 3))->getFont()->getColor()->setARGB('FFFF0000');
|
|
}
|
|
$objPHPExcel->getActiveSheet(0)->setCellValue($cellName[$j] . ($i + 3), $expTableData[$i][$expCellName[$j][0]]);
|
|
}
|
|
}
|
|
header('Content-Type: application/vnd.ms-excel');
|
|
header('Content-Disposition: attachment;filename="' . $xlsTitle . '.xls"');
|
|
header('Cache-Control: max-age=0');
|
|
$objWriter->save('php://output');
|
|
exit;
|
|
}
|
|
|
|
}
|