城市内湖框架页面
This commit is contained in:
138
src/views/water/lake/statistic/inner/component/raw-colums.js
Normal file
138
src/views/water/lake/statistic/inner/component/raw-colums.js
Normal file
@@ -0,0 +1,138 @@
|
||||
const innerFilterColumns = [
|
||||
{title: "pH值", dataIndex: "ph", sorter: true,},
|
||||
{title: "透明度(cm)", dataIndex: "transparency", sorter: true,},
|
||||
{title: "溶解氧饱和度(﹪)", dataIndex: "dissolvedOxygenSaturation", sorter: true,},
|
||||
{title: "溶解氧", dataIndex: "dissolvedOxygen", sorter: true,},
|
||||
{title: "高锰酸盐指数", dataIndex: "permanganateIndex", sorter: true,},
|
||||
{title: "五日生化需氧量", dataIndex: "fiveDayBod", sorter: true,},
|
||||
{title: "总氮 ", dataIndex: "totalNitrogen", sorter: true,},
|
||||
{title: "氨氮", dataIndex: "ammonia", sorter: true,},
|
||||
{title: "挥发酚", dataIndex: "volatilePhenol", sorter: true,},
|
||||
{title: "砷(mg/L)", dataIndex: "as", sorter: true,},
|
||||
{title: "汞 (mg/L)", dataIndex: "hg", sorter: true,},
|
||||
{title: "六价铬 (mg/L)", dataIndex: "cr6", sorter: true,},
|
||||
{title: "铅 (mg/L)", dataIndex: "pb", sorter: true,},
|
||||
{title: "镉 (mg/L)", dataIndex: "cd", sorter: true,},
|
||||
{title: "总磷", dataIndex: "totalPhosphorus", sorter: true,},
|
||||
{title: "石油类", dataIndex: "petro", sorter: true,},
|
||||
{title: "粪大肠菌群(MPN/L)", dataIndex: "fecalColiforms", sorter: true,},
|
||||
{title: "化学需氧量", dataIndex: "cod", sorter: true,},
|
||||
{title: "叶绿素a (mg/L)", dataIndex: "chlA", sorter: true,},
|
||||
{title: "阴离子表面活性剂(mg/L)", dataIndex: "anSaa", sorter: true,},
|
||||
{title: "硫化物(mg/L) ", dataIndex: "s", sorter: true,},
|
||||
{title: "氧化还原电位(mV)", dataIndex: "oxidationReductionPotential", sorter: true,}
|
||||
]
|
||||
|
||||
const innerTableColumns = [
|
||||
{title: "监测时间", dataIndex: "monitorTime", sorter: true,},
|
||||
{title: "断面名称", dataIndex: "pointName", sorter: true,},
|
||||
{title: "水温(℃)", dataIndex: "waterTemperature", sorter: true,},
|
||||
{title: "pH值", dataIndex: "ph", sorter: true,},
|
||||
{title: "透明度(cm)", dataIndex: "transparency", sorter: true,},
|
||||
{title: "溶解氧饱和度(﹪)", dataIndex: "dissolvedOxygenSaturation", sorter: true,},
|
||||
{title: "溶解氧", dataIndex: "dissolvedOxygen", sorter: true,},
|
||||
{title: "高锰酸盐指数", dataIndex: "permanganateIndex", sorter: true,},
|
||||
{title: "五日生化需氧量", dataIndex: "fiveDayBod", sorter: true,},
|
||||
{title: "总氮 ", dataIndex: "totalNitrogen", sorter: true,},
|
||||
{title: "氨氮", dataIndex: "ammonia", sorter: true,},
|
||||
{title: "挥发酚", dataIndex: "volatilePhenol", sorter: true,},
|
||||
{title: "砷(mg/L)", dataIndex: "as", sorter: true,},
|
||||
{title: "汞 (mg/L)", dataIndex: "hg", sorter: true,},
|
||||
{title: "六价铬 (mg/L)", dataIndex: "cr6", sorter: true,},
|
||||
{title: "铅 (mg/L)", dataIndex: "pb", sorter: true,},
|
||||
{title: "镉 (mg/L)", dataIndex: "cd", sorter: true,},
|
||||
{title: "总磷", dataIndex: "totalPhosphorus", sorter: true,},
|
||||
{title: "石油类", dataIndex: "petro", sorter: true,},
|
||||
{title: "粪大肠菌群(MPN/L)", dataIndex: "fecalColiforms", sorter: true,},
|
||||
{title: "化学需氧量", dataIndex: "cod", sorter: true,},
|
||||
{title: "叶绿素a (mg/L)", dataIndex: "chlA", sorter: true,},
|
||||
{title: "阴离子表面活性剂(mg/L)", dataIndex: "anSaa", sorter: true,},
|
||||
{title: "硫化物(mg/L) ", dataIndex: "s", sorter: true,},
|
||||
{title: "氧化还原电位(mV)", dataIndex: "oxidationReductionPotential", sorter: true,}
|
||||
// {title: "备注", dataIndex: "remark", sorter: true,},
|
||||
];
|
||||
|
||||
const averageTableColumns = [
|
||||
{title: "监测时间", dataIndex: "monitorTime", sorter: true,},
|
||||
{title: "断面名称", dataIndex: "pointName", sorter: true,},
|
||||
{title: "水温(℃)", dataIndex: "waterTemperature", sorter: true,},
|
||||
{title: "pH值", dataIndex: "ph", sorter: true,},
|
||||
{title: "透明度(cm)", dataIndex: "transparency", sorter: true,},
|
||||
{title: "溶解氧饱和度(﹪)", dataIndex: "dissolvedOxygenSaturation", sorter: true,},
|
||||
{title: "溶解氧", dataIndex: "dissolvedOxygen", sorter: true,},
|
||||
{title: "高锰酸盐指数", dataIndex: "permanganateIndex", sorter: true,},
|
||||
{title: "五日生化需氧量", dataIndex: "fiveDayBod", sorter: true,},
|
||||
{title: "总氮 ", dataIndex: "totalNitrogen", sorter: true,},
|
||||
{title: "氨氮", dataIndex: "ammonia", sorter: true,},
|
||||
{title: "挥发酚", dataIndex: "volatilePhenol", sorter: true,},
|
||||
{title: "砷(mg/L)", dataIndex: "as", sorter: true,},
|
||||
{title: "汞 (mg/L)", dataIndex: "hg", sorter: true,},
|
||||
{title: "六价铬 (mg/L)", dataIndex: "cr6", sorter: true,},
|
||||
{title: "铅 (mg/L)", dataIndex: "pb", sorter: true,},
|
||||
{title: "镉 (mg/L)", dataIndex: "cd", sorter: true,},
|
||||
{title: "总磷", dataIndex: "totalPhosphorus", sorter: true,},
|
||||
{title: "石油类", dataIndex: "petro", sorter: true,},
|
||||
{title: "粪大肠菌群(MPN/L)", dataIndex: "fecalColiforms", sorter: true,},
|
||||
{title: "化学需氧量", dataIndex: "cod", sorter: true,},
|
||||
{title: "叶绿素a (mg/L)", dataIndex: "chlA", sorter: true,},
|
||||
{title: "阴离子表面活性剂(mg/L)", dataIndex: "anSaa", sorter: true,},
|
||||
{title: "硫化物(mg/L) ", dataIndex: "s", sorter: true,},
|
||||
{title: "氧化还原电位(mV)", dataIndex: "oxidationReductionPotential", sorter: true,}
|
||||
];
|
||||
|
||||
|
||||
const specialFilterColumns = [
|
||||
{title: "浊度(NTU)", dataIndex: "turbidity", sorter: true,},
|
||||
{title: "水温(℃)", dataIndex: "wTemp", sorter: true,},
|
||||
{title: "水位(m)", dataIndex: "wd", sorter: true,},
|
||||
{title: "pH值", dataIndex: "ph", sorter: true,},
|
||||
{title: "电导率(ms/m)", dataIndex: "wCond", sorter: true,},
|
||||
{title: "透明度(cm)", dataIndex: "transp", sorter: true,},
|
||||
{title: "溶解氧 (mg/L)", dataIndex: "dissolvedOxygen", sorter: true,},
|
||||
{title: "高锰酸盐指数 (mg/L)", dataIndex: "codmn", sorter: true,},
|
||||
{title: "氨氮 (mg/L)", dataIndex: "nh4N", sorter: true,},
|
||||
{title: "石油类 (mg/L)", dataIndex: "oils", sorter: true,},
|
||||
{title: "总氮 (mg/L)", dataIndex: "nTotal", sorter: true,},
|
||||
{title: "总磷 (mg/L)", dataIndex: "pTotal", sorter: true,},
|
||||
{title: "叶绿素 (mg/L)", dataIndex: "chlA", sorter: true,},
|
||||
{title: "挥发酚 (mg/L)", dataIndex: "vPhen", sorter: true,},
|
||||
{title: "汞 (mg/L)", dataIndex: "wHg", sorter: true,},
|
||||
{title: "铅 (mg/L)", dataIndex: "wPb", sorter: true,},
|
||||
{title: "化学需氧量 (mg/L)", dataIndex: "codcr", sorter: true,},
|
||||
{title: "铜 (mg/L)", dataIndex: "wCu", sorter: true,},
|
||||
{title: "锌 (mg/L)", dataIndex: "wZn", sorter: true,},
|
||||
{title: "氟化物 (mg/L)", dataIndex: "f", sorter: true,},
|
||||
{title: "硒 (mg/L)", dataIndex: "se", sorter: true,},
|
||||
{title: "砷 (mg/L)", dataIndex: "as", sorter: true,},
|
||||
{title: "镉 (mg/L)", dataIndex: "cd", sorter: true,},
|
||||
{title: "六价铬 (mg/L)", dataIndex: "cr6", sorter: true,},
|
||||
{title: "氰化物 (mg/L)", dataIndex: "cnTotal", sorter: true,},
|
||||
{title: "阴离子表面活性剂 (mg/L)", dataIndex: "anSaa", sorter: true,},
|
||||
{title: "硫化物 (mg/L)", dataIndex: "s", sorter: true,},
|
||||
{title: "粪大肠菌群 (mg/L)", dataIndex: "coloOrg", sorter: true,},
|
||||
{title: "硫酸盐 (mg/L)", dataIndex: "so4", sorter: true,},
|
||||
{title: "氯化物 (mg/L)", dataIndex: "cl", sorter: true,},
|
||||
{title: "硝酸盐 (mg/L)", dataIndex: "no3N", sorter: true,},
|
||||
{title: "铁 (mg/L)", dataIndex: "wFe", sorter: true,},
|
||||
{title: "锰 (mg/L)", dataIndex: "wMn", sorter: true,}
|
||||
]
|
||||
|
||||
const specialTableColumns = [
|
||||
{title: "监测时间", dataIndex: "monitorTime", sorter: true,},
|
||||
{title: "测站名称", dataIndex: "stationName", sorter: true,},
|
||||
{title: "测站代码", dataIndex: "stationCode", sorter: true,},
|
||||
{title: "湖库名称", dataIndex: "lakeLibraryName", sorter: true,},
|
||||
{title: "湖库代码", dataIndex: "lakeLibraryCode", sorter: true,},
|
||||
{title: "断面名称", dataIndex: "sectionName", sorter: true,},
|
||||
{title: "断面代码", dataIndex: "sectionCode", sorter: true,},
|
||||
{title: "控制属性", dataIndex: "controlAttributes", sorter: true,},
|
||||
{title: "所属流域", dataIndex: "watershed", sorter: true,},
|
||||
{title: "水期代码", dataIndex: "waterPeriodCode", sorter: true,},
|
||||
|
||||
...specialFilterColumns,
|
||||
|
||||
{title: "水质类别", dataIndex: "waterQualityCategory", sorter: true,},
|
||||
{title: "系统编码", dataIndex: "systemCode", sorter: true,},
|
||||
{title: "备注", dataIndex: "remark", sorter: true,},
|
||||
];
|
||||
export {innerTableColumns, specialTableColumns, innerFilterColumns, specialFilterColumns, averageTableColumns}
|
||||
Reference in New Issue
Block a user