|
@@ -1,63 +1,442 @@
|
|
|
|
|
+<!--
|
|
|
|
|
+ * @Title:
|
|
|
|
|
+ * @Description:
|
|
|
|
|
+ * @Author: 893699165@qq.com
|
|
|
|
|
+ * @Date: 2022-08-24 10:49:21
|
|
|
|
|
+ * @LastEditors:
|
|
|
|
|
+ * @LastEditTime: 2022-08-24 10:49:21
|
|
|
|
|
+-->
|
|
|
<template>
|
|
<template>
|
|
|
<div>
|
|
<div>
|
|
|
<el-row>
|
|
<el-row>
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <third-register></third-register>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- </el-row>
|
|
|
|
|
- <el-row>
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <basic-container>
|
|
|
|
|
- </basic-container>
|
|
|
|
|
|
|
+ <el-col :span="5">
|
|
|
|
|
+ <div class="box">
|
|
|
|
|
+ <!-- <el-scrollbar>
|
|
|
|
|
+ <basic-container>
|
|
|
|
|
+ <avue-tree
|
|
|
|
|
+ :option="treeOption"
|
|
|
|
|
+ :data="treeData"
|
|
|
|
|
+ @node-click="nodeClick"
|
|
|
|
|
+ />
|
|
|
|
|
+ </basic-container>
|
|
|
|
|
+ </el-scrollbar> -->
|
|
|
|
|
+ </div>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- </el-row>
|
|
|
|
|
- <el-row>
|
|
|
|
|
- <el-col :span="16">
|
|
|
|
|
|
|
+ <el-col :span="19">
|
|
|
<basic-container>
|
|
<basic-container>
|
|
|
-
|
|
|
|
|
|
|
+ <avue-crud
|
|
|
|
|
+ :option="option"
|
|
|
|
|
+ :table-loading="loading"
|
|
|
|
|
+ :data="data"
|
|
|
|
|
+ ref="crud"
|
|
|
|
|
+ v-model="form"
|
|
|
|
|
+ :permission="permissionList"
|
|
|
|
|
+ @row-del="rowDel"
|
|
|
|
|
+ @row-update="rowUpdate"
|
|
|
|
|
+ @row-save="rowSave"
|
|
|
|
|
+ @search-change="searchChange"
|
|
|
|
|
+ @search-reset="searchReset"
|
|
|
|
|
+ @selection-change="selectionChange"
|
|
|
|
|
+ @current-change="currentChange"
|
|
|
|
|
+ @size-change="sizeChange"
|
|
|
|
|
+ @refresh-change="refreshChange"
|
|
|
|
|
+ @on-load="onLoad"
|
|
|
|
|
+ @before-open="beforeOpen"
|
|
|
|
|
+ >
|
|
|
|
|
+ <template slot="state" slot-scope="{ row }">
|
|
|
|
|
+ <el-button type="text" @click="openConfig(row)"> 正常 </el-button>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template slot-scope="{ row, index }" slot="menu">
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ type="text"
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ @click="$refs.crud.rowView(row, index)"
|
|
|
|
|
+ >预警配置
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-button type="text" size="small" @click="openInfo"
|
|
|
|
|
+ >预警信息
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ <el-button type="text" size="small" @click="openOrder"
|
|
|
|
|
+ >维修工单
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </avue-crud>
|
|
|
</basic-container>
|
|
</basic-container>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
|
|
- <el-row>
|
|
|
|
|
- <basic-container>
|
|
|
|
|
- </basic-container>
|
|
|
|
|
- </el-row>
|
|
|
|
|
- <el-row>
|
|
|
|
|
- <basic-container>
|
|
|
|
|
-
|
|
|
|
|
- </basic-container>
|
|
|
|
|
- </el-row>
|
|
|
|
|
-
|
|
|
|
|
- </el-col>
|
|
|
|
|
</el-row>
|
|
</el-row>
|
|
|
|
|
+ <el-dialog
|
|
|
|
|
+ title="预警配置"
|
|
|
|
|
+ :visible.sync="configDialog"
|
|
|
|
|
+ width="600px"
|
|
|
|
|
+ :before-close="handleClose"
|
|
|
|
|
+ :close-on-click-modal="false"
|
|
|
|
|
+ append-to-body
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-form label-width="120px">
|
|
|
|
|
+ <el-form-item label="预警总开关">
|
|
|
|
|
+ <el-switch
|
|
|
|
|
+ v-model="warningConfig.configSw"
|
|
|
|
|
+ active-color="#13ce66"
|
|
|
|
|
+ inactive-color="#ff4949"
|
|
|
|
|
+ active-text="开"
|
|
|
|
|
+ inactive-text="关"
|
|
|
|
|
+ >
|
|
|
|
|
+ </el-switch>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
|
|
+ <el-button @click="configDialog = false" size="small">取 消</el-button>
|
|
|
|
|
+ <el-button type="primary" @click="confirmConfig" size="small"
|
|
|
|
|
+ >确 定</el-button
|
|
|
|
|
+ >
|
|
|
|
|
+ </span>
|
|
|
|
|
+ </el-dialog>
|
|
|
|
|
+ <el-dialog
|
|
|
|
|
+ title="预警信息"
|
|
|
|
|
+ :visible.sync="infoDialog"
|
|
|
|
|
+ width="80%"
|
|
|
|
|
+ :close-on-click-modal="false"
|
|
|
|
|
+ append-to-body
|
|
|
|
|
+ >
|
|
|
|
|
+ <warningInfo :id="id" ref="warningInfo"></warningInfo>
|
|
|
|
|
+ </el-dialog>
|
|
|
|
|
+ <el-dialog
|
|
|
|
|
+ title="维修工单"
|
|
|
|
|
+ :visible.sync="orderDialog"
|
|
|
|
|
+ width="80%"
|
|
|
|
|
+ :close-on-click-modal="false"
|
|
|
|
|
+ append-to-body
|
|
|
|
|
+ >
|
|
|
|
|
+ <maintainOrder :id="id" ref="maintainOrder"></maintainOrder>
|
|
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
- import {mapGetters} from "vuex";
|
|
|
|
|
|
|
+import { getList, getDetail, add, update } from "@/api/workbench/monitoring";
|
|
|
|
|
+import { mapGetters } from "vuex";
|
|
|
|
|
+import warningInfo from "./warningInfo.vue";
|
|
|
|
|
+import maintainOrder from "./maintainOrder.vue";
|
|
|
|
|
+export default {
|
|
|
|
|
+ components: {
|
|
|
|
|
+ warningInfo,
|
|
|
|
|
+ maintainOrder,
|
|
|
|
|
+ },
|
|
|
|
|
+ data() {
|
|
|
|
|
+ return {
|
|
|
|
|
+ orderDialog: false,
|
|
|
|
|
+ warningConfig: {
|
|
|
|
|
+ configSw: false,
|
|
|
|
|
+ code: "",
|
|
|
|
|
+ },
|
|
|
|
|
+ infoDialog: false,
|
|
|
|
|
+ configDialog: false,
|
|
|
|
|
+ id: "",
|
|
|
|
|
+ editForm: {},
|
|
|
|
|
+ editDialog: false,
|
|
|
|
|
+ form: {},
|
|
|
|
|
+ selectionList: [],
|
|
|
|
|
+ query: {},
|
|
|
|
|
+ loading: true,
|
|
|
|
|
+ page: {
|
|
|
|
|
+ pageSize: 10,
|
|
|
|
|
+ currentPage: 1,
|
|
|
|
|
+ total: 0,
|
|
|
|
|
+ },
|
|
|
|
|
+ treeOption: {
|
|
|
|
|
+ nodeKey: "id",
|
|
|
|
|
+ lazy: true,
|
|
|
|
|
+ treeLoad: function (node, resolve) {
|
|
|
|
|
+ const parentId = node.level === 0 ? 0 : node.data.id;
|
|
|
|
|
+ getDeptLazyTree(parentId).then((res) => {
|
|
|
|
|
+ resolve(
|
|
|
|
|
+ res.data.data.map((item) => {
|
|
|
|
|
+ return {
|
|
|
|
|
+ ...item,
|
|
|
|
|
+ leaf: !item.hasChildren,
|
|
|
|
|
+ };
|
|
|
|
|
+ })
|
|
|
|
|
+ );
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ addBtn: false,
|
|
|
|
|
+ menu: false,
|
|
|
|
|
+ size: "small",
|
|
|
|
|
+ props: {
|
|
|
|
|
+ labelText: "标题",
|
|
|
|
|
+ label: "title",
|
|
|
|
|
+ value: "value",
|
|
|
|
|
+ children: "children",
|
|
|
|
|
+ },
|
|
|
|
|
+ },
|
|
|
|
|
+ option: {
|
|
|
|
|
+ labelWidth: 120,
|
|
|
|
|
+ viewLabelWidth: 100,
|
|
|
|
|
+ searchlabelWidth: 100,
|
|
|
|
|
+ height: "auto",
|
|
|
|
|
+ calcHeight: 30,
|
|
|
|
|
+ align: "center",
|
|
|
|
|
+ headerAlign: "center",
|
|
|
|
|
+ lazy: true,
|
|
|
|
|
+ tip: false,
|
|
|
|
|
+ simplePage: true,
|
|
|
|
|
+ searchShow: true,
|
|
|
|
|
+ searchMenuSpan: 6,
|
|
|
|
|
+ tree: true,
|
|
|
|
|
+ border: true,
|
|
|
|
|
+ index: true,
|
|
|
|
|
+ selection: true,
|
|
|
|
|
+ viewBtn: false,
|
|
|
|
|
+ viewTitle: "预警配置",
|
|
|
|
|
+ editBtn: false,
|
|
|
|
|
+ delBtn: false,
|
|
|
|
|
+ menuWidth: 220,
|
|
|
|
|
+ dialogType: "drawer",
|
|
|
|
|
+ dialogClickModal: false,
|
|
|
|
|
+ column: [
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "测站名称",
|
|
|
|
|
+ prop: "rtuName",
|
|
|
|
|
+ search: true,
|
|
|
|
|
+ span: 12,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "测站编码",
|
|
|
|
|
+ prop: "rtuCode",
|
|
|
|
|
+ span: 12,
|
|
|
|
|
+ search: true,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "所属机构",
|
|
|
|
|
+ prop: "orgId",
|
|
|
|
|
+ span: 12,
|
|
|
|
|
+ hide: true,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "最后上线时间",
|
|
|
|
|
+ prop: "orgId",
|
|
|
|
|
+ span: 12,
|
|
|
|
|
+ addDisplay: false,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "运行状态",
|
|
|
|
|
+ prop: "state",
|
|
|
|
|
+ span: 12,
|
|
|
|
|
+ addDisplay: false,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "项目名称",
|
|
|
|
|
+ prop: "projectName",
|
|
|
|
|
+
|
|
|
|
|
+ span: 12,
|
|
|
|
|
+ hide: true,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "SIM卡号",
|
|
|
|
|
+ prop: "simId",
|
|
|
|
|
+
|
|
|
|
|
+ span: 8,
|
|
|
|
|
+ hide: true,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "经度",
|
|
|
|
|
+ prop: "lng",
|
|
|
|
|
+ span: 8,
|
|
|
|
|
+ hide: true,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "纬度",
|
|
|
|
|
+ prop: "lat",
|
|
|
|
|
+ span: 8,
|
|
|
|
|
+ hide: true,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "测站类型",
|
|
|
|
|
+ prop: "rtuKinds",
|
|
|
|
|
+
|
|
|
|
|
+ span: 24,
|
|
|
|
|
|
|
|
- export default {
|
|
|
|
|
- name: "wel",
|
|
|
|
|
- data() {
|
|
|
|
|
|
|
+ type: "input",
|
|
|
|
|
+ hide: true,
|
|
|
|
|
+
|
|
|
|
|
+ // dicData: [
|
|
|
|
|
+ // {
|
|
|
|
|
+ // label: 1,
|
|
|
|
|
+ // value: 1,
|
|
|
|
|
+ // },
|
|
|
|
|
+ // ],
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: "备注说明",
|
|
|
|
|
+ prop: "remark",
|
|
|
|
|
+ span: 24,
|
|
|
|
|
+ type: "textarea",
|
|
|
|
|
+ },
|
|
|
|
|
+ ],
|
|
|
|
|
+ },
|
|
|
|
|
+ data: [],
|
|
|
|
|
+ };
|
|
|
|
|
+ },
|
|
|
|
|
+ computed: {
|
|
|
|
|
+ // ...mapGetters(["userInfo", "permission"]),
|
|
|
|
|
+ permissionList() {
|
|
|
return {
|
|
return {
|
|
|
- activeNames: ['1', '2', '3', '5'],
|
|
|
|
|
- logActiveNames: ['26']
|
|
|
|
|
|
|
+ // addBtn: this.vaildData(this.permission.docCategory_add, false),
|
|
|
|
|
+ // viewBtn: this.vaildData(this.permission.docCategory_view, false),
|
|
|
|
|
+ // delBtn: this.vaildData(this.permission.docCategory_delete, false),
|
|
|
|
|
+ // editBtn: this.vaildData(this.permission.docCategory_edit, false),
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
- computed: {
|
|
|
|
|
- ...mapGetters(["userInfo"]),
|
|
|
|
|
|
|
+ ids() {
|
|
|
|
|
+ let ids = [];
|
|
|
|
|
+ this.selectionList.forEach((ele) => {
|
|
|
|
|
+ ids.push(ele.id);
|
|
|
|
|
+ });
|
|
|
|
|
+ return ids.join(",");
|
|
|
|
|
+ },
|
|
|
|
|
+ },
|
|
|
|
|
+ mounted() {},
|
|
|
|
|
+ created() {},
|
|
|
|
|
+ methods: {
|
|
|
|
|
+ confirmConfig() {},
|
|
|
|
|
+ openConfig(item) {
|
|
|
|
|
+ this.configSw = item.configSw;
|
|
|
|
|
+ this.configDialog = true;
|
|
|
|
|
+ },
|
|
|
|
|
+ openInfo(item) {
|
|
|
|
|
+ this.id = item.id;
|
|
|
|
|
+ this.infoDialog = true;
|
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
|
+ this.$refs["warningInfo"].init();
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ openOrder(item) {
|
|
|
|
|
+ this.id = item.id;
|
|
|
|
|
+ this.orderDialog = true;
|
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
|
+ this.$refs["maintainOrder"].init();
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ rowSave(row, done, loading) {
|
|
|
|
|
+ add(row).then(
|
|
|
|
|
+ () => {
|
|
|
|
|
+ this.onLoad(this.page);
|
|
|
|
|
+ this.$message({
|
|
|
|
|
+ type: "success",
|
|
|
|
|
+ message: "操作成功!",
|
|
|
|
|
+ });
|
|
|
|
|
+ done();
|
|
|
|
|
+ },
|
|
|
|
|
+ (error) => {
|
|
|
|
|
+ window.console.log(error);
|
|
|
|
|
+ loading();
|
|
|
|
|
+ }
|
|
|
|
|
+ );
|
|
|
|
|
+ },
|
|
|
|
|
+ rowUpdate(row, index, done, loading) {
|
|
|
|
|
+ update(row).then(
|
|
|
|
|
+ () => {
|
|
|
|
|
+ this.onLoad(this.page);
|
|
|
|
|
+ this.$message({
|
|
|
|
|
+ type: "success",
|
|
|
|
|
+ message: "操作成功!",
|
|
|
|
|
+ });
|
|
|
|
|
+ done();
|
|
|
|
|
+ },
|
|
|
|
|
+ (error) => {
|
|
|
|
|
+ window.console.log(error);
|
|
|
|
|
+ loading();
|
|
|
|
|
+ }
|
|
|
|
|
+ );
|
|
|
|
|
+ },
|
|
|
|
|
+ rowDel(row) {
|
|
|
|
|
+ this.$confirm("确定将选择数据删除?", {
|
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
|
+ type: "warning",
|
|
|
|
|
+ })
|
|
|
|
|
+ .then(() => {
|
|
|
|
|
+ return remove(row.id);
|
|
|
|
|
+ })
|
|
|
|
|
+ .then(() => {
|
|
|
|
|
+ this.onLoad(this.page);
|
|
|
|
|
+ this.$message({
|
|
|
|
|
+ type: "success",
|
|
|
|
|
+ message: "操作成功!",
|
|
|
|
|
+ });
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ searchReset() {
|
|
|
|
|
+ this.query = {};
|
|
|
|
|
+ this.onLoad(this.page);
|
|
|
|
|
+ },
|
|
|
|
|
+ searchChange(params, done) {
|
|
|
|
|
+ this.query = params;
|
|
|
|
|
+ this.page.currentPage = 1;
|
|
|
|
|
+ this.onLoad(this.page, params);
|
|
|
|
|
+ done();
|
|
|
},
|
|
},
|
|
|
- methods: {
|
|
|
|
|
- handleChange(val) {
|
|
|
|
|
- window.console.log(val);
|
|
|
|
|
|
|
+ selectionChange(list) {
|
|
|
|
|
+ this.selectionList = list;
|
|
|
|
|
+ },
|
|
|
|
|
+ selectionClear() {
|
|
|
|
|
+ this.selectionList = [];
|
|
|
|
|
+ this.$refs.crud.toggleSelection();
|
|
|
|
|
+ },
|
|
|
|
|
+ handleDelete() {
|
|
|
|
|
+ if (this.selectionList.length === 0) {
|
|
|
|
|
+ this.$message.warning("请选择至少一条数据");
|
|
|
|
|
+ return;
|
|
|
}
|
|
}
|
|
|
|
|
+ this.$confirm("确定将选择数据删除?", {
|
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
|
+ type: "warning",
|
|
|
|
|
+ })
|
|
|
|
|
+ .then(() => {
|
|
|
|
|
+ return remove(this.ids);
|
|
|
|
|
+ })
|
|
|
|
|
+ .then(() => {
|
|
|
|
|
+ this.onLoad(this.page);
|
|
|
|
|
+ this.$message({
|
|
|
|
|
+ type: "success",
|
|
|
|
|
+ message: "操作成功!",
|
|
|
|
|
+ });
|
|
|
|
|
+ this.$refs.crud.toggleSelection();
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ beforeOpen(done, type) {
|
|
|
|
|
+ if (["edit", "view"].includes(type)) {
|
|
|
|
|
+ getDetail(this.form.id).then((res) => {
|
|
|
|
|
+ this.form = res.data.data;
|
|
|
|
|
+ });
|
|
|
|
|
+ }
|
|
|
|
|
+ done();
|
|
|
|
|
+ },
|
|
|
|
|
+ currentChange(currentPage) {
|
|
|
|
|
+ this.page.currentPage = currentPage;
|
|
|
},
|
|
},
|
|
|
- };
|
|
|
|
|
|
|
+ sizeChange(pageSize) {
|
|
|
|
|
+ this.page.pageSize = pageSize;
|
|
|
|
|
+ },
|
|
|
|
|
+ refreshChange() {
|
|
|
|
|
+ this.onLoad(this.page, this.query);
|
|
|
|
|
+ },
|
|
|
|
|
+ onLoad(page, params = {}) {
|
|
|
|
|
+ this.loading = true;
|
|
|
|
|
+ getList(
|
|
|
|
|
+ page.currentPage,
|
|
|
|
|
+ page.pageSize,
|
|
|
|
|
+ Object.assign(params, this.query)
|
|
|
|
|
+ ).then((res) => {
|
|
|
|
|
+ const data = res.data.data;
|
|
|
|
|
+ this.page.total = data.total;
|
|
|
|
|
+ this.data = data.records;
|
|
|
|
|
+ this.loading = false;
|
|
|
|
|
+ this.selectionClear();
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ },
|
|
|
|
|
+};
|
|
|
</script>
|
|
</script>
|
|
|
-
|
|
|
|
|
-<style>
|
|
|
|
|
- .el-font-size {
|
|
|
|
|
- font-size: 14px;
|
|
|
|
|
- }
|
|
|
|
|
-</style>
|
|
|
|
|
-
|
|
|