diff --git a/src/views/water/drinking-water/statistic/colums/base.js b/src/views/water/drinking-water/statistic/colums/base.js index 0c49c9c..0c7624e 100644 --- a/src/views/water/drinking-water/statistic/colums/base.js +++ b/src/views/water/drinking-water/statistic/colums/base.js @@ -137,10 +137,10 @@ const tableColumns = [ { title: "省份代码", dataIndex: "provinceCode", sorter: true, }, { title: "城市名称", dataIndex: "city", sorter: true, }, { title: "城市代码", dataIndex: "cityCode", sorter: true, }, - { title: "重点城市区分", dataIndex: "keyCity", sorter: true, }, - { title: "南北方城市", dataIndex: "cityOrientation", sorter: true, }, + { title: "县域名称", dataIndex: "keyCity", sorter: true, }, + { title: "县域代码", dataIndex: "cityOrientation", sorter: true, }, { title: "断面名称", dataIndex: "sectionName", sorter: true, }, - { title: "断面代码", dataIndex: "sectionCode", sorter: true, }, + // { title: "断面代码", dataIndex: "sectionCode", sorter: true, }, { title: "水源名称", dataIndex: "sourceWaterName", sorter: true, }, { title: "所属水系", dataIndex: "subordinateWater", sorter: true, }, { title: "水源地性质", dataIndex: "waterSourceProperty", sorter: true, }, @@ -148,10 +148,11 @@ const tableColumns = [ { title: "取水点纬度", dataIndex: "latitude", sorter: true, }, { title: "本月取水量", dataIndex: "waterWithdrawal", sorter: true, }, // { title: "采样时间", dataIndex: "reportTime", sorter: true, customRender: ({text}) => moment(text, "YYYY/MM/DD HH:mm:ss").format("YYYY/MM/DD")}, - { title: "采样时间", dataIndex: "reportTime", sorter: true,}, + { title: "水期代码", dataIndex: "waterPhaseCode",sorter: true, slots:{customRender:'waterCode' } }, + { title: "采样时间", dataIndex: "reportTime", sorter: true,}, { title: "水温", dataIndex: "waterTemperature", sorter: true, }, // {title: "采样时间",dataIndex: "monitorTime",sorter: true,}, { title: "pH(无量纲)", dataIndex: "ph", sorter: true, }, @@ -263,24 +264,28 @@ const tableColumns = [ { title: "钛", dataIndex: "ti", sorter: true, }, { title: "铊", dataIndex: "tl", sorter: true, }, - { title: "六价铬", dataIndex: "cr6", sorter: true, }, - { title: "邻二氯苯", dataIndex: "odcb", sorter: true, }, - { title: "对二氯苯", dataIndex: "pdcp", sorter: true, }, + // { title: "六价铬", dataIndex: "cr6", sorter: true, }, + // { title: "邻二氯苯", dataIndex: "odcb", sorter: true, }, + // { title: "对二氯苯", dataIndex: "pdcp", sorter: true, }, - { title: "苯并(a)芘", dataIndex: "bap", sorter: true, }, - { title: "苯并(b)荧蒽", dataIndex: "bbfa", sorter: true, }, - { title: "磷酸盐", dataIndex: "phosphate", sorter: true, }, - { title: "急性毒性", dataIndex: "acuteToxicity", sorter: true, }, - { title: "余氯", dataIndex: "residualChlorine", sorter: true, }, - { title: "六六六", dataIndex: "c6h6cl6666", sorter: true, }, - { title: "2,4,6-三氯酚", dataIndex: "c6h3cl3o246", sorter: true, }, + // { title: "苯并(a)芘", dataIndex: "bap", sorter: true, }, + // { title: "苯并(b)荧蒽", dataIndex: "bbfa", sorter: true, }, + // { title: "磷酸盐", dataIndex: "phosphate", sorter: true, }, + // { title: "急性毒性", dataIndex: "acuteToxicity", sorter: true, }, + // { title: "余氯", dataIndex: "residualChlorine", sorter: true, }, + // { title: "六六六", dataIndex: "c6h6cl6666", sorter: true, }, + // { title: "2,4,6-三氯酚", dataIndex: "c6h3cl3o246", sorter: true, }, //新增 - { title: "叶绿素(mg/m3)", dataIndex: "chlorophyll", sorter: true, }, { title: "透明度(cm)", dataIndex: "transparency", sorter: true, }, - { title: "总α放射性", dataIndex: "totalAlphaRadioactivity", sorter: true, }, - { title: "总β放射性", dataIndex: "totalBetaRadioactivity", sorter: true, }, - { title: "1,1,1-三氯乙烷(mg/L)", dataIndex: "c2h3cl3_111", sorter: true, }, - { title: "1,1,2-三氯乙烷(mg/L)", dataIndex: "c2h3cl3_112", sorter: true, }, + { title: "叶绿素(mg/m3)", dataIndex: "chlorophyll", sorter: true, }, + + // { title: "总α放射性", dataIndex: "totalAlphaRadioactivity", sorter: true, }, + // { title: "总β放射性", dataIndex: "totalBetaRadioactivity", sorter: true, }, + // { title: "1,1,1-三氯乙烷(mg/L)", dataIndex: "c2h3cl3_111", sorter: true, }, + // { title: "1,1,2-三氯乙烷(mg/L)", dataIndex: "c2h3cl3_112", sorter: true, }, + + { title: "备注", dataIndex: "remark", sorter: true, }, + // { title: "系统编码", dataIndex: "regionCode", sorter: true, }, ]; export { tableColumns }