tableParameters.js 3.78 KB
// 故障报告 报警超40分钟
var faultReportTable = [
    {
        label: '项目(本周超40分钟故障)',
        prop: 'ProjectName',
        with: 200,
    },
    {
        label: '设备名称',
        prop: 'EquipmentName',
        with: 160,
    },
    {
        label: '故障內容',
        prop: 'Alarm',
        with: 600,
    },
    {
        label: '故障总时间(分)',
        prop: 'ErrorDuration',
        with: 120,
    },
    {
        label: '故障原因方',
        prop: 'Reason',
        with: 150,
    },
    {
        label: '防范对策',
        prop: 'HandleInfo',
        with: 300,
    },
    {
        label: '负责人',
        prop: 'HandleUser',
        with: 160,
    },
    {
        label: '故障原因(导出Excel用户自己补充)',
        prop: 'AlarmReason',
        with: 250,
    },
]
// 故障报告弹出框表格
var faultReportTableDialog = [
    {
        label: '设备名称',
        prop: 'EquipmentName',
        with: 155,
    },
    {
        label: '故障内容',
        prop: 'Alarm',
        with: 400,
    },
    {
        label: '故障时间(分)',
        prop: 'timeVal',
        with: 115,
    },
    {
        label: '开始日期',
        prop: 'created',
        with: 170,
    },
    {
        label: '结束日期',
        prop: 'updated',
        with: 170,
    }
]
//故障分析 表格
var faultAnalysis = [
    {
        label: '项目名称',
        prop: 'ProjectName',
        with: 210,
    },
    {
        label: '设备名称',
        prop: 'EquipmentName',
        with: 200,
    },
    {
        label: '故障内容',
        prop: 'Alarm',
        with: 350,
    }, {
        label: '故障原因方',
        prop: 'Reason',
        with: 150,
    },
    {
        label: '开始时间',
        prop: 'CreateTime',
        with: 180,
    }, {
        label: '结束时间',
        prop: 'UpdateTime',
        with: 180,
    }, {
        label: '停机时间(分)',
        prop: 'ErrorDuration',
        with: 140,
    },
    {
        label: '故障原因及维修方法',
        prop: 'HandleInfo',
        with: 270,
    }, {
        label: '维修人员',
        prop: 'HandleUser',
        with: 100,
    },
    {
        label: '确认时间',
        prop: 'UserHandleTime',
        with: 180,
    }]
//故障月份对比、故障次数天每小时对比
var faultStatisti = [
    {
        label: '设备编码',
        prop: 'EquipmentCode',
        with: 220,
    },
    {
        label: '设备名称',
        prop: 'EquipmentName',
        with: 180,
    },

    {
        label: '故障内容',
        prop: 'AlarmMessage',
        with: 350,
    }, {
        label: '开始时间',
        prop: 'CreateTime',
        with: 180,
    },
    {
        label: '结束时间',
        prop: 'UpdateTime',
        with: 180,
    },
    {
        label: '持续时间/min',
        prop: 'ErrorDuration',
        with: 120,
    },
    {
        label: '备注',
        prop: 'Remark',
        with: 350,
    },
    {
        label: '处理时间',
        prop: 'UserHandleTime',
        with: 180,
    },
    {
        label: '处理记录',
        prop: 'HandleInfo',
        with: 120,
    },
    {
        label: '处理人',
        prop: 'HandleUser',
        with: 350,
    },
    {
        label: '原因方',
        prop: 'Reason',
        with: 180,
    }]

//故障重复对比
var faultNumberRepeat = [
    {
        label: '设备名称',
        prop: 'equipmentName',
        with: 220,
    },
    {
        label: '设备类型',
        prop: 'equipmentTypeName',
        with: 200,
    },
    {
        label: '故障内容',
        prop: 'alarmMessage',
        with: 600,
    }, {
        label: '重复次数(>5变色)',
        prop: 'alarmCount',
        with: 180,
    }]

// export { pickup, optTablePlan };