| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- import { ref } from 'vue';
- export const navList = ref([
- {
- title: '设备监测',
- pathName: 'deviceMonitor',
- isHover: false,
- },
- {
- title: '监测曲线',
- pathName: 'monitorChart',
- isHover: false,
- },
- {
- title: '历史查询',
- pathName: 'history',
- isHover: false,
- },
- {
- title: '视频监测',
- pathName: 'cameraMonitor',
- isHover: false,
- },
- ]);
- export const statusConfig = [{ value: true, label: '开启' }, { label: '关闭' }];
- /** 抽放泵列表配置项 */
- export const pumpListConfig = [
- { prop: 'activedPump', label: '电压' },
- { prop: 'activedPump', label: '电流' },
- { prop: 'activedPump', label: '电机前轴温度' },
- { prop: 'activedPump', label: '电机后轴温度' },
- { prop: 'activedPump', label: '泵前轴温度' },
- { prop: 'activedPump', label: '泵后轴温度' },
- { prop: 'activedPump', label: '垂直振幅' },
- { prop: 'activedPump', label: '水平振幅' },
- { prop: 'activedPump', label: '运行时间' },
- ];
- /** 泵站列表配置项 */
- export const pumpStationListConfig = [
- { prop: 'activedPump', label: '高位水池液位' },
- { prop: 'activedPump', label: '高位水池液温' },
- { prop: 'activedPump', label: '低位水池液位' },
- { prop: 'activedPump', label: '低位水池液温' },
- { prop: 'activedPump', label: '环境甲烷浓度' },
- { prop: 'activedPump', label: '泵站室内温度' },
- ];
- /** 抽采泵状态列表配置项 */
- export const pumpStatusConfig = [
- { prop: 'activedPump', label: '1#' },
- { prop: 'activedPump', label: '2#' },
- { prop: 'activedPump', label: '3#' },
- { prop: 'activedPump', label: '4#' },
- ];
- /** 水泵状态列表配置项 */
- export const waterPumpStatusConfig = [
- { prop: 'activedPump', label: '1#' },
- { prop: 'activedPump', label: '2#' },
- { prop: 'activedPump', label: '3#' },
- { prop: 'activedPump', label: '4#' },
- ];
- /** 高负压泵状态列表配置项 */
- export const HPumpStationListItems = [
- { prop: 'activedPump', label: '开度', span: 24, type: 'default' },
- { prop: 'activedPump', label: '1#进气阀' },
- { prop: 'activedPump', label: '2#进气阀' },
- { prop: 'activedPump', label: '3#进气阀' },
- { prop: 'activedPump', label: '4#进气阀' },
- ];
- /** 低负压泵状态列表配置项 */
- export const LPumpStationListItems = [
- { prop: 'activedPump', label: '开度', span: 24, type: 'default' },
- { prop: 'activedPump', label: '1#进气阀' },
- { prop: 'activedPump', label: '2#进气阀' },
- { prop: 'activedPump', label: '3#进气阀' },
- { prop: 'activedPump', label: '4#进气阀' },
- ];
- /** 高负压泵监测类别配置项 */
- export const HPumpCategoryConfig = [
- { prop: 'activedPump', label: '累积抽采率' },
- { prop: 'activedPump', label: 'CO浓度' },
- { prop: 'activedPump', label: '高负压浓度' },
- { prop: 'activedPump', label: '瞬时流量' },
- { prop: 'activedPump', label: '累计抽采时间' },
- ];
- /** 低负压泵监测类别配置项 */
- export const LPumpCategoryConfig = [
- { prop: 'activedPump', label: '累积抽采率' },
- { prop: 'activedPump', label: 'CO浓度' },
- { prop: 'activedPump', label: '低负压浓度' },
- { prop: 'activedPump', label: '瞬时流量' },
- { prop: 'activedPump', label: '累计抽采时间' },
- ];
- /** 累积抽采量图表配置项 */
- export const cumulativeExtractionChart = [
- {
- name: '高负压',
- prop: 'HPressure',
- },
- {
- name: '低负压',
- prop: 'LPressure',
- },
- ];
- /** CO浓度图表配置项 */
- export const coChart = [
- {
- name: '高负压',
- prop: 'HPressure',
- },
- {
- name: '低负压',
- prop: 'LPressure',
- },
- ];
- /** 负压浓度图表配置项 */
- export const negativePressureChart = [
- {
- name: '高负压',
- prop: 'HPressure',
- },
- {
- name: '低负压',
- prop: 'LPressure',
- },
- ];
- /** 瞬时流量图表配置项 */
- export const instantaneousFlowChart = [
- {
- name: '高负压',
- prop: 'HPressure',
- },
- {
- name: '低负压',
- prop: 'LPressure',
- },
- ];
|