feat: mpoint form添加关联环保字段2

This commit is contained in:
caoqianming 2024-05-06 09:46:42 +08:00
parent 97dd1431ea
commit baa46135fb
1 changed files with 24 additions and 1 deletions

View File

@ -117,4 +117,27 @@ export const mpointGatherStateEnum = new EnumFactory({
"0": { text: '正常', type: 'success' }, "0": { text: '正常', type: 'success' },
"-1": { text: '错误', type: 'danger' }, "-1": { text: '错误', type: 'danger' },
"-2": { text: '无', type: 'info' }, "-2": { text: '无', type: 'info' },
}, parseInt) }, parseInt)
export const enpfieldEnum = new EnumFactory({
'running_state': '运行状态',
'dust_rtd': '颗粒物实测(mg/m3)',
'dust_zs': '颗粒物折算(mg/m3)',
'temperature': '温度(℃)',
'pressure': '压力(kPa)',
'speed': '流速(m/s)',
'humidity': '湿度(%)',
'flux': '流量(m3/h)',
'pm25': 'PM2.5(ug/m3)',
'pm10': 'PM10(ug/m3)',
'tsp': 'TSP(ug/m3)',
'wind_direction': '风向',
'wind_speed': '风速(m/s)',
'so2_rtd': '风向',
'so2_rtd': '二氧化硫实测(mg/m3)',
'so2_zs': '二氧化硫折算(mg/m3)',
'nox_rtd': '氮氧化物实测(mg/m3)',
'nox_zs': '氮氧化物折算(mg/m3)',
'o2': '含氧量(%)',
})