|
@@ -0,0 +1,301 @@
|
|
|
+<!-- 预警通知 -->
|
|
|
+<template>
|
|
|
+ <div class="app-container warningNotice">
|
|
|
+ <div class="page-container warningNoticePage" v-if="pageType === 1">
|
|
|
+ <div class="page-form-title-box">
|
|
|
+ <el-form :model="queryParams" class="form-box" ref="queryForm"
|
|
|
+ :inline="true" style="width:100%;">
|
|
|
+ <el-form-item label="关键字" prop="queryParamsData1">
|
|
|
+ <el-input
|
|
|
+ maxLength="30"
|
|
|
+ v-model="queryParams.queryParamsData1"
|
|
|
+ placeholder="实验室/房间号/预警事件/姓名/联系方式"
|
|
|
+ style="width: 300px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="学院" prop="queryParamsData2">
|
|
|
+ <el-select v-model="queryParams.queryParamsData2" placeholder="请选择" style="width: 140px">
|
|
|
+ <el-option
|
|
|
+ v-for="item in deptOptions"
|
|
|
+ :key="item.deptId"
|
|
|
+ :label="item.deptName"
|
|
|
+ :value="item.deptId"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="楼栋楼层" prop="queryParamsData3">
|
|
|
+ <el-cascader style="width: 140px"
|
|
|
+ placeholder="请选择"
|
|
|
+ :props="{value: 'id', label: 'name',children:'buildFloorVoList'}"
|
|
|
+ v-model="queryParams.queryParamsData3"
|
|
|
+ :options="buildFloorOptions">
|
|
|
+ </el-cascader>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="预警类型" prop="queryParamsData4">
|
|
|
+ <el-select v-model="queryParams.queryParamsData4" placeholder="请选择" style="width: 140px">
|
|
|
+ <el-option
|
|
|
+ v-for="dict in optionList"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="报警时间" prop="state">
|
|
|
+ <el-date-picker
|
|
|
+ :clearable="false"
|
|
|
+ v-model="dateRange"
|
|
|
+ size="small"
|
|
|
+ style="width: 220px"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ type="daterange"
|
|
|
+ range-separator="-"
|
|
|
+ start-placeholder="开始日期"
|
|
|
+ end-placeholder="结束日期"
|
|
|
+ ></el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ <p class="page-inquire-common-style-button" @click="handleQuery">查询</p>
|
|
|
+ <p class="page-reset-common-style-button" @click="resetQuery">重置</p>
|
|
|
+ <p class="page-submit-common-style-button"
|
|
|
+ style="float: right;"
|
|
|
+ @click="tableButton(1)"
|
|
|
+ v-hasPermiRouter="['demo:demo:add']"
|
|
|
+ >预警配置</p>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ <div class="page-content-box">
|
|
|
+ <el-table class="table-box" v-loading="loading" border :data="dataList">
|
|
|
+ <el-table-column label="报警时间" prop="createTime" width="180" fixed show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="预警类型" prop="content" width="200" fixed show-overflow-tooltip/>
|
|
|
+ <el-table-column label="预警事件" prop="name" width="625" show-overflow-tooltip/>
|
|
|
+ <el-table-column label="学院" prop="content" width="200" show-overflow-tooltip/>
|
|
|
+ <el-table-column label="楼栋楼层" prop="content" width="200" show-overflow-tooltip/>
|
|
|
+ <el-table-column label="实验室" prop="content" width="200" show-overflow-tooltip/>
|
|
|
+ <el-table-column label="安全员" prop="content" width="200" show-overflow-tooltip/>
|
|
|
+ <el-table-column label="操作" width="100" show-overflow-tooltip v-if="tableButtonType">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div class="table-button-box">
|
|
|
+ <p class="table-button-null"></p>
|
|
|
+ <p class="table-button-p"
|
|
|
+ @click="tableButton(2,scope.row)"
|
|
|
+ v-hasPermiRouter="['demo:demo:detail']"
|
|
|
+ >处理</p>
|
|
|
+ <p class="table-button-p"
|
|
|
+ @click="tableButton(3,scope.row)"
|
|
|
+ v-hasPermiRouter="['demo:demo:edit']"
|
|
|
+ >详情</p>
|
|
|
+ <p class="table-button-null"></p>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <pagination :page-sizes="[20, 30, 40, 50]"
|
|
|
+ v-show="total>0"
|
|
|
+ :total="total"
|
|
|
+ :page.sync="queryParams.page"
|
|
|
+ :limit.sync="queryParams.pageSize"
|
|
|
+ @pagination="getList"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <forewarning-config v-if="pageType === 2"></forewarning-config>
|
|
|
+ <!--<add-page :propsData="propsData" v-if="pageType === 2"></add-page>-->
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script>
|
|
|
+ //import { getDicts } from "@/api/commonality/noPermission";
|
|
|
+ //import { systemUserSelect } from "@/api/commonality/permission";
|
|
|
+ //import { getInfo } from "@/api/basicsModules/index";
|
|
|
+ //import addPage from "./addPage.vue";
|
|
|
+ import forewarningConfig from "./forewarningConfig.vue"
|
|
|
+ import { getDeptDropList,systemBuildingGetTreeList,} from "@/api/commonality/permission";
|
|
|
+ export default {
|
|
|
+ name: 'index',
|
|
|
+ components: {
|
|
|
+ forewarningConfig
|
|
|
+ },
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ tableButtonType:this.hasPermiDom(['demo:demo:detail','demo:demo:edit','demo:demo:del',]),
|
|
|
+ //页面状态
|
|
|
+ pageType:2,
|
|
|
+ //页面遮罩
|
|
|
+ loading:false,
|
|
|
+ //学院
|
|
|
+ deptOptions:[],
|
|
|
+ //楼栋楼层
|
|
|
+ buildFloorOptions:[],
|
|
|
+ //预警类型
|
|
|
+ optionList:[
|
|
|
+ { label:"化学品预警", value:"1"},{ label:"气瓶预警", value:"2"},{ label:"算法预警", value:"3"}
|
|
|
+ ],
|
|
|
+ //查询条件
|
|
|
+ queryParams:{
|
|
|
+ page:1,
|
|
|
+ pageSize:20,
|
|
|
+ queryParamsData1:"",
|
|
|
+ queryParamsData2 :null,
|
|
|
+ },
|
|
|
+ //时间数据
|
|
|
+ dateRange:[],
|
|
|
+ //列表数据
|
|
|
+ dataList:[
|
|
|
+ {},{}
|
|
|
+ ],
|
|
|
+ //数据数量
|
|
|
+ total:0,
|
|
|
+ //组件传参
|
|
|
+ propsData:{},
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created () {
|
|
|
+
|
|
|
+ },
|
|
|
+ mounted () {
|
|
|
+ this.getDeptDropList();
|
|
|
+ this.systemBuildingGetTreeList();
|
|
|
+ //this.getList();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ //查询按钮
|
|
|
+ handleQuery(){
|
|
|
+ this.$set(this.queryParams,'page',1);
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ //重置按钮
|
|
|
+ resetQuery(){
|
|
|
+ this.$set(this,'dateRange',[])
|
|
|
+ this.$set(this,'queryParams',{
|
|
|
+ page:1,
|
|
|
+ pageSize:20,
|
|
|
+ queryParamsData1:"",
|
|
|
+ queryParamsData2 :null,
|
|
|
+ });
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ //获取数据列表
|
|
|
+ getList(){
|
|
|
+ // this.$set(this,'loading',true);
|
|
|
+ // let obj = JSON.parse(JSON.stringify(this.queryParams))
|
|
|
+ // if(this.dateRange[0]){
|
|
|
+ // obj.startTime = this.dateRange[0]+'T00:00:00'
|
|
|
+ // obj.endTime = this.dateRange[1]+'T23:59:59'
|
|
|
+ // }else{
|
|
|
+ // obj.startTime = "";
|
|
|
+ // obj.endTime = "";
|
|
|
+ // }
|
|
|
+ // getListFunction(obj).then(response => {
|
|
|
+ // this.$set(this,'loading',false);
|
|
|
+ // this.$set(this,'dataList',response.data.records);
|
|
|
+ // this.$set(this,'total',response.data.total);
|
|
|
+ // });
|
|
|
+ },
|
|
|
+ //操作按钮
|
|
|
+ tableButton(type,row){
|
|
|
+ let self = this;
|
|
|
+ if(type == 1){
|
|
|
+ //新增
|
|
|
+ this.$set(this,'pageType',2);
|
|
|
+ this.$set(this,'propsData',{});
|
|
|
+ }else if(type == 2){
|
|
|
+ //详情
|
|
|
+ this.$set(this,'pageType',2);
|
|
|
+ let obj = JSON.parse(JSON.stringify(row))
|
|
|
+ obj.showType = true;
|
|
|
+ this.$set(this,'propsData',obj);
|
|
|
+ }else if(type == 3){
|
|
|
+ //编辑
|
|
|
+ this.$set(this,'pageType',2);
|
|
|
+ let obj = JSON.parse(JSON.stringify(row))
|
|
|
+ obj.showType = false;
|
|
|
+ this.$set(this,'propsData',obj);
|
|
|
+ }else if(type == 4){
|
|
|
+ //删除
|
|
|
+ this.$confirm('是否确认删除?', "警告", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(function() {
|
|
|
+ }).then(() => {
|
|
|
+ deleteFunction({id:row.id}).then(response => {
|
|
|
+ self.msgSuccess(response.message)
|
|
|
+ self.getList();
|
|
|
+ });
|
|
|
+ }).catch(() => {});
|
|
|
+ }else if(type == 5){
|
|
|
+ //启用&停用
|
|
|
+ let text = row.state ? "停用" : "启用";
|
|
|
+ this.$confirm('是否确认' + text + '?', "警告", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(function() {
|
|
|
+ }).then(() => {
|
|
|
+ stateFunction({id:row.id,state:!row.state,}).then(response => {
|
|
|
+ self.msgSuccess(response.message)
|
|
|
+ self.getList();
|
|
|
+ });
|
|
|
+ }).catch(() => {});
|
|
|
+ }else if(type == 6){
|
|
|
+ //返回并刷新
|
|
|
+ this.$set(this,'pageType',1);
|
|
|
+ this.getList();
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ //查询学院列表
|
|
|
+ getDeptDropList(){
|
|
|
+ getDeptDropList({deptName:"",level:2,deptType:1}).then(response => {
|
|
|
+ this.$set(this, 'deptOptions', response.data)
|
|
|
+ });
|
|
|
+ },
|
|
|
+ //查询楼栋楼层
|
|
|
+ systemBuildingGetTreeList(){
|
|
|
+ systemBuildingGetTreeList({}).then(response => {
|
|
|
+ if (response.data[0]) {
|
|
|
+ let list = this.forBuildFloor(response.data);
|
|
|
+ let newList = [];
|
|
|
+ for(let i=0;i<list.length;i++){
|
|
|
+ if(list[i].buildFloorVoList){
|
|
|
+ for(let o=0;o<list[i].buildFloorVoList.length;o++){
|
|
|
+ if(list[i].buildFloorVoList[o].buildFloorVoList){
|
|
|
+ newList.push(list[i].buildFloorVoList[o])
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ console.log('newList========>',newList);
|
|
|
+ this.$set(this, 'buildFloorOptions', newList)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ //处理楼栋楼层数据
|
|
|
+ forBuildFloor(list){
|
|
|
+ let self = this;
|
|
|
+ for(let i=0;i<list.length;i++){
|
|
|
+ if(list[i].buildFloorVoList){
|
|
|
+ if(list[i].buildFloorVoList[0]){
|
|
|
+ list[i].buildFloorVoList = self.forBuildFloor(list[i].buildFloorVoList);
|
|
|
+ }else{
|
|
|
+ delete list[i].buildFloorVoList;
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ delete list[i].buildFloorVoList;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return list
|
|
|
+ },
|
|
|
+ },
|
|
|
+ }
|
|
|
+</script>
|
|
|
+<style scoped lang="scss">
|
|
|
+ .warningNotice{
|
|
|
+ .warningNoticePage{
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+</style>
|