污染过程统计 easyUI

easyUI

/**
 * 污染过程统计
 */

$(function () {
	tableData();

});

var data2Arr
function initBgData(data2Arr) {

	zkyt.datagrid($("#data"), null, {
		// url : '/sjtj/cszhfx/getKqzldjfbb',

		// url : '/airQuality/Analysis/getWrgctj',   //上线打开
		// url: 'http://10.82.121.26:8060/airQuality/Analysis/getWrgctj',
		columns: getColumnHeader(),
		queryParams: {
			// kssj: '2020-11',
			// jssj: '2020-11',
			// wrlx: 3,
			/*	'sf': $("#sf").val(),
				'ds': $("#ds").val(),
				'qx': $("#qx").val(),
				'startTime': setDate(new Date(), true),
				'endTime': setDate(new Date(), false)*/
		},
		data: data2Arr,

		autoRowHeight: true,
		nowarp: true,
		// fitColumns : true,
		fitColumns: false,  //我修改后
		fit: true,

	}, false);
}


//初始化Options


function getColumnHeader() {
	return [
		[
			{ field: 'xzqhbm', title: '行政区代码', width: 100, align: 'center', rowspan: 2 },
			{ field: 'wrrqfw', title: '污染日期范围', width: 200, align: 'center', rowspan: 2 },
			{ field: 'cxwrts', title: '持续污染天数', width: 100, align: 'center', rowspan: 2 },
			{ field: 'sywrw', title: '首要污染物', width: 100, align: 'center', rowspan: 2 },
			{ title: 'CO', align: 'center', colspan: 3 },
			{ title: 'PM10', align: 'center', colspan: 3 },
			{ title: 'PM25', align: 'center', colspan: 3 },
			{ title: 'NO2', align: 'center', colspan: 3 },
			{ title: 'O3', align: 'center', colspan: 3 },
			{ title: 'SO2', align: 'center', colspan: 3 },
			{ field: 'wd', title: '温度', width: 150, align: 'center', rowspan: 2 },
			{ field: 'fs', title: '风速', width: 150, align: 'center', rowspan: 2 },
			{ field: 'sd', title: '湿度', width: 150, align: 'center', rowspan: 2 },
			{ field: 'fx', title: '风向', width: 150, align: 'center', rowspan: 2 },
		],
		[

			{ field: 'COFz', title: 'CO峰值', width: 100, align: 'center' },
			{ field: 'COJz', title: 'CO均值', width: 100, align: 'center' },
			{ field: 'COGx', title: 'CO贡献值', width: 100, align: 'center' },

			{ field: 'PM10Fz', title: 'PM10峰值', width: 100, align: 'center' },
			{ field: 'PM10Jz', title: 'PM10均值', width: 100, align: 'center' },
			{ field: 'PM10Gx', title: 'PM10贡献值', width: 100, align: 'center' },

			{ field: 'PM25Jz', title: 'PM25峰值', width: 100, align: 'center' },
			{ field: 'PM25Jz', title: 'PM25均值', width: 100, align: 'center' },
			{ field: 'PM25Gx', title: 'PM25贡献值', width: 100, align: 'center' },

			{ field: 'NO2Jz', title: 'NO2均值', width: 100, align: 'center' },
			{ field: 'NO2Fz', title: 'NO2峰值', width: 100, align: 'center' },
			{ field: 'NO2Gx', title: 'NO2贡献值', width: 100, align: 'center' },

			{ field: 'O3Fz', title: 'O3峰值', width: 100, align: 'center' },
			{ field: 'O3Jz', title: 'O3均值', width: 100, align: 'center' },
			{ field: 'O3Gx', title: 'O3贡献值', width: 100, align: 'center' },

			{ field: 'SO2Fz', title: 'SO2峰值', width: 100, align: 'center' },
			{ field: 'SO2Jz', title: 'SO2均值', width: 100, align: 'center' },
			{ field: 'SO2Gx', title: 'SO2贡献值', width: 100, align: 'center' },
		]
	];
}

function tableData() {
	$.ajax({
		type: 'post',
		url: 'http://10.82.121.26:8060/airQuality/Analysis/getWrgctj',
		data: {
			kssj: '2020-11',
			jssj: '2020-12',
			wrlx: 3,
		},
		success: function (res) {
			initBgData(res.content.data2)

		}
	})
}

/**
 * 标准日数据查询,
 * 点击搜索按钮触发
 */
function bzrsjSearch() {


	// 列表条件重置
	function resetSelect() {
		$('#tableForm').form('clear');
		// 初始化为默认参数
		startDatBind();
	}
	//初始化列表查询参数
	function startDatBind() {
		//加载省、市、县下来列表
		// zkyt.comboboxThreeM($("#sf"),$("#ds"),$("#qx"),user.sssf,user.sscs,user.ssqx);
		/*var sf=$("#sf").val();
		if(sf!=""){
			$("#sf").combobox("readonly",true);
		}
		var ds=$("#ds").val();
		if(ds!=""){
			$("#ds").combobox("readonly",true);
		}
		var qx=$("#qx").val();
		if(qx!=""){
			$("#qx").combobox("readonly",true);
		}*/
		//默认当前日期
		$('#startTime').datebox('setValue', setDate(new Date(), true));
		//默认当前日期
		$('#endTime').datebox('setValue', setDate(new Date(), false));
		$('#zsxs').combobox({
			data: [{ "id": 1, "text": "分布表" }, { "id": 2, "text": "柱状图" }, { "id": 3, "text": "饼状图" }],
			valueField: 'id',
			textField: 'text',
			width: 100,
			onChange: function () {
				initDataBind();
			}
		});
	}

	//格式化日期
	function setDate(date, flag) {
		var newDate = new Date(date);
		if (flag) {//ture 为开始时间前7天
			newDate.setDate(date.getDate() - 7);
		}
		y = newDate.getFullYear();
		m = newDate.getMonth() + 1;
		d = newDate.getDate();
		m = m < 10 ? "0" + m : m;
		d = d < 10 ? "0" + d : d;
		if (flag) {
			return y + "-" + m + "-" + d;
		} else {
			return y + "-" + m + "-" + d;
		}
	}
}
weixin073智慧旅游平台开发微信小程序+ssm后端毕业源码案例设计 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。
python017基于Python贫困生资助管理系统带vue前后端分离毕业源码案例设计 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值