| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429 |
- <!--
- * @Title:
- * @Description: 实时数据监测
- * @Author: swp
- * @Date: 2022-08-24 10:49:21
- * @LastEditors:
- * @LastEditTime: 2022-08-24 10:49:21
- -->
- <template>
- <div>
- <el-row>
- <el-col :span="4">
- <div class="box">
- <el-scrollbar>
- <basic-container>
- <avue-tree :option="treeOption" :data="treeData" @node-click="nodeClick">
- <span class="el-tree-node__label" slot-scope="{ node, data }">
- <span>
- <i class="el-icon-office-building"></i>
- {{ (node || {}).label }}
- </span>
- </span>
- </avue-tree>
- </basic-container>
- </el-scrollbar>
- </div>
- </el-col>
- <el-col :span="20">
- <basic-container>
- <avue-crud :option="option" :table-loading="loading" :page.sync="page" :data="data" ref="crud"
- v-model="form" :permission="permissionList" @search-change="searchChange"
- @search-reset="searchReset" @selection-change="selectionChange" @current-change="currentChange"
- @size-change="sizeChange" @refresh-change="refreshChange" @on-load="onLoad"
- @before-open="beforeOpen" @sort-change="sortChange" @cell-click="cellClick">
- <template slot="runStatusId" slot-scope="row">
- <div v-if="row.row.runStatusId == 0" style="color: blue;">
- 正常
- </div>
- <div v-else-if="row.row.runStatusId == 1"
- style="color: red;cursor:pointer;text-decoration-line: underline;"
- @click="openWarningInfo(row.row)">
- 异常
- </div>
- <div v-else>
- </div>
- </template>
- <template slot-scope="{ row, index }" slot="menu">
- <el-button type="text" size="small" @click="toHistroyData(row)" icon="el-icon-s-data">历史数据
- </el-button>
- </template>
- </avue-crud>
- </basic-container>
- </el-col>
- </el-row>
- <el-drawer :visible.sync="historyDataDialog" v-if="historyDataDialog" title="历史信息" direction="rtl" size="60%"
- append-to-body="true">
- <div slot="title" class="header-title">
- <span class="name">{{ dialogTitle }}</span>
- </div>
- <waterflowratehistorylistvue :mpcd="mpcd" ref="waterflowratehistorylist"></waterflowratehistorylistvue>
- </el-drawer>
- </div>
- </template>
- <script>
- import { getPage, getDetail } from "@/api/business/monitor/waterflowrate.js";
- import { getTree } from "@/api/baseinfo/org";
- import { mapGetters } from "vuex";
- import waterflowratehistorylistvue from "./waterflowratehistorylist.vue"
- export default {
- components: {
- waterflowratehistorylistvue
- },
- data() {
- return {
- id: "",
- historyDataDialog: false,
- dialogTitle: "",
- mpcd: '',
- form: {},
- selectionList: [],
- query: {},
- sort: {},
- loading: true,
- page: {
- pageSize: 10,
- currentPage: 1,
- total: 0,
- },
- treeCode: '',
- treeParentCode: '',
- treeData: [],
- treeOption: {
- nodeKey: "id",
- defaultExpandedKeys: [],
- lazy: false,
- // treeLoad: function (node, resolve) {
- // const parentCode = (node.level === 0) ? "" : node.data.id;
- // getLazyDeptTree(parentCode, {}).then(res => {
- // resolve(res.data.data.map(item => {
- // return {
- // ...item,
- // leaf: !item.hasChildren
- // }
- // }))
- // });
- // },
- addBtn: false,
- menu: true,
- size: "small",
- props: {
- labelText: "标题",
- label: "title",
- value: "value",
- children: "children",
- },
- },
- option: {
- labelWidth: 160,
- viewLabelWidth: 160,
- searchLabelWidth: 160,
- height: "auto",
- calcHeight: 80,
- align: "center",
- headerAlign: "center",
- tip: false,
- simplePage: true,
- searchShow: true,
- searchMenuSpan: 6,
- tree: true,
- border: true,
- index: true,
- selection: false,
- viewBtn: true,
- editBtn: false,
- delBtn: false,
- addBtn: false,
- menuWidth: 160,
- menu: true,
- dialogType: "drawer",
- dialogClickModal: false,
- columnBtn: false,
- column: [
- {
- label: "监测点状态",
- prop: "runStatusId",
- span: 24,
- width: 110,
- viewDisplay: false,
- },
- {
- label: "监测点编码",
- prop: "mpcd",
- span: 24,
- search: true,
- width: 130,
- },
- {
- label: "监测点名称",
- prop: "mpnm",
- search: true,
- span: 24,
- },
- {
- label: "上次报文时间",
- prop: "tm",
- span: 24,
- width: 150,
- sortable: 'custom',
- },
- {
- label: "监测站名称",
- prop: "wiustNm",
- span: 24,
- },
- {
- label: "取用水户名称",
- prop: "wiuNm",
- span: 24,
- },
- {
- label: '监测项目',
- prop: 'mpItem',
- type: 'select',
- hide: true,
- editDisplay: false,
- addDisplay: false,
- props: {
- label: 'name',
- value: 'code'
- },
- span: 24,
- dicData: [{
- name: '水位',
- code: '1'
- }, {
- name: '流量',
- code: '2'
- }]
- },
- {
- label: '监测类型',
- prop: 'isAuto',
- type: 'select',
- hide: true,
- editDisplay: false,
- addDisplay: false,
- props: {
- label: 'name',
- value: 'code'
- },
- span: 24,
- dicData: [{
- name: '间接推算',
- code: '0'
- }, {
- name: '直接监测',
- code: '1'
- }]
- },
- {
- label: "监测点地址",
- prop: "mpAddr",
- span: 24,
- hide: true,
- editDisplay: false,
- addDisplay: false,
- },
- {
- label: "经度",
- prop: "lng",
- span: 24,
- hide: true,
- editDisplay: false,
- addDisplay: false,
- },
- {
- label: "纬度",
- prop: "lat",
- span: 24,
- hide: true,
- editDisplay: false,
- addDisplay: false,
- },
- {
- label: "监测站名称",
- prop: "wiustNm",
- span: 24,
- hide: true,
- },
- {
- label: "取用水户名称",
- prop: "wiuNm",
- span: 24,
- hide: true,
- },
- {
- label: "瞬时流量",
- prop: "mpq",
- span: 24,
- width: 120,
- },
- {
- label: "累计流量",
- prop: "accw",
- span: 24,
- width: 120,
- },
- {
- label: "上小时累计流量",
- prop: "hourw",
- span: 24,
- width: 140,
- },
- ],
- },
- data: [],
- };
- },
- computed: {
- ...mapGetters(["userInfo", "permission"]),
- permissionList() {
- return {
- addBtn: false,
- viewBtn: true,
- delBtn: false,
- editBtn: false,
- };
- },
- ids() {
- let ids = [];
- this.selectionList.forEach((ele) => {
- ids.push(ele.id);
- });
- return ids.join(",");
- },
- },
- mounted() { },
- created() {
- this.initTree();
- },
- methods: {
- initTree() {
- this.treeData = [];
- getTree().then(res => {
- this.treeData = res.data.data.map(item => {
- return {
- ...item,
- leaf: !item.hasChildren
- }
- })
- this.treeOption.defaultExpandedKeys.push(this.treeData[0].id);
- this.treeCode = this.treeData[0].id;
- this.query = {};
- this.query['orgId'] = this.treeCode;
- });
- },
- nodeClick(data) {
- this.treeCode = data.id;
- this.excludeCode = data.exclude;
- this.treeParentCode = data.parentId;
- this.query = {};
- this.query['orgId'] = this.treeCode;
- this.page.currentPage = 1;
- var params = {};
- this.onLoad(this.page, params);
- },
- sortChange(val) {
- //console.log(JSON.stringify(val))
- //prop":"tm","order":"ascending" descending
- let prop = val.prop;
- if (prop === 'tm') {
- this.page.currentPage = 1;
- var params = {};
- let order = val.order;
- if (order) {
- params['order'] = order;
- params['prop'] = prop;
- this.sort = {};
- Object.assign(this.sort, params)
- } else {
- this.sort = {};
- }
- this.onLoad(this.page);
- }
- },
- cellClick(row, column, cell, event) {
- if (event.isTrusted) {
- // this.rtuCode = row.rtuCode;
- // if (column.label === 'RTU更换时间') {
- // if (row.rtuReplaceDate) {
- // this.dialogTitle = row.rtuName + 'RTU更换信息';
- // this.rtureplacelistDialog = true;
- // this.$nextTick(() => {
- // this.$refs["rtureplacelist"].init();
- // });
- // }
- // }
- }
- },
- toHistroyData(row) {
- this.dialogTitle = "历史数据[" + row.mpnm + row.mpcd + "]";
- this.mpcd = row.mpcd;
- this.historyDataDialog = true;
- this.$nextTick(() => {
- this.$refs["waterflowratehistorylist"].init();
- });
- },
- searchReset() {
- this.query = {};
- this.query['adCode'] = this.treeCode;
- this.page.currentPage = 1;
- this.onLoad(this.page);
- },
- searchChange(params, done) {
- this.query = {};
- this.query['adCode'] = this.treeCode;
- Object.assign(this.query, params)
- this.page.currentPage = 1;
- this.onLoad(this.page, params);
- done();
- },
- selectionChange(list) {
- this.selectionList = list;
- },
- selectionClear() {
- this.selectionList = [];
- this.$refs.crud.toggleSelection();
- },
- beforeOpen(done, type) {
- if (["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() {
- var params = {};
- this.onLoad(this.page, params);
- },
- onLoad(page, params = {}) {
- this.loading = true;
- getPage(
- page.currentPage,
- page.pageSize,
- Object.assign(params, this.sort, this.query)
- ).then((res) => {
- const data = res.data.data;
- //console.log(JSON.stringify(data))
- this.page.total = data.total;
- this.data = data.records;
- this.loading = false;
- this.selectionClear();
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped></style>
|