18 lines
1.0 KiB
JavaScript
18 lines
1.0 KiB
JavaScript
const tableColumns = [
|
||
{title: "编号",dataIndex: "code",sorter: true,},
|
||
{title: "降水类型",dataIndex: "precipitationType",sorter: true,},
|
||
{title: "降雨量(mm)",dataIndex: "precipitation",sorter: true,},
|
||
{title: "pH值(无量纲)",dataIndex: "ph",sorter: true,},
|
||
{title: "电导率(mS/m)",dataIndex: "conductivity",sorter: true,},
|
||
{title: "氟离子",dataIndex: "fluorine",sorter: true,},
|
||
{title: "氯离子",dataIndex: "chlorine",sorter: true,},
|
||
{title: "硫酸根离子",dataIndex: "sulfateRadical",sorter: true,},
|
||
{title: "硝酸根离子",dataIndex: "nitrate",sorter: true,},
|
||
{title: "钠离子",dataIndex: "na",sorter: true,},
|
||
{title: "铵根离子",dataIndex: "ammoniumRadical",sorter: true,},
|
||
{title: "钾离子",dataIndex: "k",sorter: true,},
|
||
{title: "镁离子",dataIndex: "mg",sorter: true,},
|
||
{title: "钙离子",dataIndex: "ca",sorter: true,},
|
||
{title: "备注",dataIndex: "remark",sorter: true,},
|
||
];
|
||
export {tableColumns} |