This commit is contained in:
weicw
2021-09-10 10:14:44 +08:00
parent 185c21eb73
commit 03815d04b6
54 changed files with 228 additions and 2974 deletions

View File

@@ -0,0 +1,50 @@
const exportColumns = [
{title: "断面编码",dataIndex: "sectionCode",sorter: true,},
{title: "断面名称",dataIndex: "sectionName",sorter: true,},
{title: "考核省份",dataIndex: "evaluationProvince",sorter: true,},
{title: "断面类型",dataIndex: "sectionType",sorter: true,},
{title: "断面属性",dataIndex: "sectionAttributes",sorter: true,},
{title: "流域",dataIndex: "watershed",sorter: true,},
{title: "水系",dataIndex: "waterSystem",sorter: true,},
// {title: "监测时间",dataIndex: "monitorTime",sorter: true,},
{title: "所在水体",dataIndex: "waterBody",sorter: true,},
{title: "汇入水体 ",dataIndex: "intoWaterBody",sorter: true,},
{title: "河流级别",dataIndex: "riverLevel",sorter: true,},
{title: "监测年份",dataIndex: "monitoringYear",sorter: true,},
{title: "监测月份",dataIndex: "monitoringMonth",sorter: true,},
{title: "水质类别",dataIndex: "waterQualityCategory",sorter: true,},
{title: "电导率(ms/m)",dataIndex: "conductivity",sorter: true,},
{title: "水温(℃)",dataIndex: "waterTemperature",sorter: true,},
{title: "pH值",dataIndex: "ph",sorter: true,},
{title: "溶解氧(mg/L)",dataIndex: "dissolvedOxygen",sorter: true,},
{title: "透明度(cm)",dataIndex: "transparency",sorter: true,},
{title: "盐度(‰)",dataIndex: "salinity",sorter: true,},
{title: "COD Mn(mg/L)",dataIndex: "codMn",sorter: true,},
{title: "COD Cr(mg/L)",dataIndex: "codCr",sorter: true,},
{title: "NH₃-N(mg/L)",dataIndex: "nh3N",sorter: true,},
{title: "T-P(mg/L)",dataIndex: "tP",sorter: true,},
{title: "T-N(mg/L)",dataIndex: "tN",sorter: true,},
{title: "Cu(mg/L)",dataIndex: "cu",sorter: true,},
{title: "Zn(mg/L)",dataIndex: "zn",sorter: true,},
{title: "Pb(mg/L)",dataIndex: "pb",sorter: true,},
{title: "Cd(mg/L)",dataIndex: "cd",sorter: true,},
{title: "BOD5(mg/L)",dataIndex: "bod5",sorter: true,},
{title: "T-As(mg/L)",dataIndex: "tAs",sorter: true,},
{title: "T-Se(mg/L)",dataIndex: "tSe",sorter: true,},
{title: "T-Hg(mg/L)",dataIndex: "tHg",sorter: true,},
{title: "Cr6+(mg/L)",dataIndex: "cr6",sorter: true,},
{title: "F-(mg/L)",dataIndex: "f",sorter: true,},
{title: "CN-(mg/L)",dataIndex: "cn",sorter: true,},
{title: "挥发酚(mg/L)",dataIndex: "volatilePhenol",sorter: true,},
{title: "石油类(mg/L)",dataIndex: "petro",sorter: true,},
{title: "LAS(mg/L)",dataIndex: "las",sorter: true,},
{title: "S2-(mg/L)",dataIndex: "s2",sorter: true,},
{title: "Chla(mg/L)",dataIndex: "chla",sorter: true,},
{title: "NO₃-(mg/L)",dataIndex: "no3",sorter: true,},
{title: "NO₂-(mg/L)",dataIndex: "no2",sorter: true,},
{title: "流量(m³/s)",dataIndex: "flow",sorter: true,},
{title: "水位",dataIndex: "waterLevel",sorter: true,},
{title: "备注",dataIndex: "remark",sorter: true,},
];
export {exportColumns}