You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
307 lines
10 KiB
Vue
307 lines
10 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
<el-form-item label="异常类型" prop="alarmType">
|
|
<el-select
|
|
v-model="queryParams.alarmType"
|
|
placeholder="异常类型"
|
|
clearable
|
|
style="width: 240px"
|
|
>
|
|
<el-option
|
|
v-for="dict in dict.type.alarm_type"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="异常状态" prop="alarmStatus">
|
|
<el-select
|
|
v-model="queryParams.alarmStatus"
|
|
placeholder="异常状态"
|
|
clearable
|
|
style="width: 240px"
|
|
>
|
|
<el-option
|
|
v-for="dict in dict.type.alarmStatus"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<!-- <el-col :span="1.5">-->
|
|
<!-- <el-button-->
|
|
<!-- type="warning"-->
|
|
<!-- plain-->
|
|
<!-- icon="el-icon-download"-->
|
|
<!-- size="mini"-->
|
|
<!-- @click="handleExport"-->
|
|
<!-- v-hasPermi="['energy:data:export']"-->
|
|
<!-- >导出</el-button>-->
|
|
<!-- </el-col>-->
|
|
<!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="dataList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column label="自增标识" align="center" prop="objId" v-if="false"/>
|
|
<el-table-column label="计量设备名称" align="center" prop="monitorName" min-width="110"/>
|
|
<el-table-column label="采集设备编号" align="center" prop="collectDeviceId" min-width="110"/>
|
|
<el-table-column label="记录时间" align="center" prop="collectTime" width="180">
|
|
<!-- <template slot-scope="scope">-->
|
|
<!-- <span>{{ parseTime(scope.row.collectTime, '{y}-{m}-{d}') }}</span>-->
|
|
<!-- </template>-->
|
|
</el-table-column>
|
|
<el-table-column label="异常类型" align="center" prop="alarmType" >
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.alarm_type" :value="scope.row.alarmType"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="异常状态" align="center" prop="alarmStatus" >
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.alarmStatus" :value="scope.row.alarmStatus"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="异常数据" align="center" prop="alarmData" />
|
|
<el-table-column label="操作人员" align="center" prop="operationName" />
|
|
<el-table-column label="操作时间" align="center" prop="operationTime" width="180">
|
|
<!-- <template slot-scope="scope">-->
|
|
<!-- <span>{{ parseTime(scope.row.operationTime, '{y}-{m}-{d}') }}</span>-->
|
|
<!-- </template>-->
|
|
</el-table-column>
|
|
<el-table-column label="备注" align="center" prop="cause" />
|
|
<!-- <el-table-column label="通知用户" align="center" prop="notifyUser" v-if="true"/>-->
|
|
</el-table>
|
|
|
|
<pagination
|
|
v-show="total>0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
|
|
<!-- 添加或修改异常数据记录对话框 -->
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="auto">
|
|
<el-form-item label="计量设备编号" prop="monitorId">
|
|
<el-input v-model="form.monitorId" placeholder="请输入计量设备编号" />
|
|
</el-form-item>
|
|
<el-form-item label="采集设备编号" prop="collectDeviceId">
|
|
<el-input v-model="form.collectDeviceId" placeholder="请输入采集设备编号" />
|
|
</el-form-item>
|
|
<el-form-item label="记录时间" prop="collectTime">
|
|
<el-date-picker clearable
|
|
v-model="form.collectTime"
|
|
type="date"
|
|
value-format="yyyy-MM-dd"
|
|
placeholder="请选择记录时间">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item label="异常数据" prop="alarmData">
|
|
<el-input v-model="form.alarmData" placeholder="请输入异常数据" />
|
|
</el-form-item>
|
|
<el-form-item label="操作人员" prop="operationName">
|
|
<el-input v-model="form.operationName" placeholder="请输入操作人员" />
|
|
</el-form-item>
|
|
<el-form-item label="操作时间" prop="operationTime">
|
|
<el-date-picker clearable
|
|
v-model="form.operationTime"
|
|
type="date"
|
|
value-format="yyyy-MM-dd"
|
|
placeholder="请选择操作时间">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item label="备注" prop="cause">
|
|
<el-input v-model="form.cause" placeholder="请输入备注" />
|
|
</el-form-item>
|
|
<el-form-item label="通知用户" prop="notifyUser">
|
|
<el-input v-model="form.notifyUser" placeholder="请输入通知用户" />
|
|
</el-form-item>
|
|
<el-form-item label="权限标识" prop="deptId">
|
|
<el-input v-model="form.deptId" placeholder="请输入权限标识" />
|
|
</el-form-item>
|
|
<el-form-item label="权限标识" prop="userId">
|
|
<el-input v-model="form.userId" placeholder="请输入权限标识" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
<el-button @click="cancel">取 消</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { listData, getData, delData, addData, updateData } from "@/api/ems/base/exception/data";
|
|
|
|
export default {
|
|
name: "Data",
|
|
dicts: ['alarm_type','alarmStatus'],
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 异常数据记录表格数据
|
|
dataList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
monitorId: null,
|
|
collectDeviceId: null,
|
|
collectTime: null,
|
|
alarmType: null,
|
|
alarmStatus: null,
|
|
alarmData: null,
|
|
operationName: null,
|
|
operationTime: null,
|
|
cause: null,
|
|
notifyUser: null,
|
|
deptId: null,
|
|
userId: null
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
}
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 查询异常数据记录列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listData(this.queryParams).then(response => {
|
|
this.dataList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
objId: null,
|
|
monitorId: null,
|
|
collectDeviceId: null,
|
|
collectTime: null,
|
|
alarmType: null,
|
|
alarmStatus: null,
|
|
alarmData: null,
|
|
operationName: null,
|
|
operationTime: null,
|
|
cause: null,
|
|
createBy: null,
|
|
createTime: null,
|
|
updateBy: null,
|
|
updateTime: null,
|
|
notifyUser: null,
|
|
deptId: null,
|
|
userId: null
|
|
};
|
|
this.resetForm("form");
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.handleQuery();
|
|
},
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
this.ids = selection.map(item => item.objId)
|
|
this.single = selection.length!==1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加异常数据记录";
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset();
|
|
const objId = row.objId || this.ids
|
|
getData(objId).then(response => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改异常数据记录";
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
if (this.form.objId != null) {
|
|
updateData(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
addData(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const objIds = row.objId || this.ids;
|
|
this.$modal.confirm('是否确认删除异常数据记录编号为"' + objIds + '"的数据项?').then(function() {
|
|
return delData(objIds);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download('ems/record/alarmData/export', {
|
|
...this.queryParams
|
|
}, `data_${new Date().getTime()}.xlsx`)
|
|
}
|
|
}
|
|
};
|
|
</script>
|