renkang
昨天 4a99240038013c7d962040e6f8eabd2d72095fd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<template>
  <TableLayout :permissions="['business:ywconditionermeter:query']">
    <el-form ref="searchForm" slot="search-form" :model="searchForm" label-width="100px" inline>
      <el-form-item label="设备信息" prop="keyword">
        <el-input v-model="searchForm.keyword" placeholder="电表名称/地址" clearable @keypress.enter.native="search" />
      </el-form-item>
      <el-form-item label="网关MAC" prop="wgMacFilter">
        <el-input v-model="searchForm.wgMacFilter" placeholder="网关MAC" clearable @keypress.enter.native="search" />
      </el-form-item>
      <section>
        <el-button type="primary" icon="el-icon-search" @click="search">查询</el-button>
        <el-button icon="el-icon-refresh" @click="reset">重置</el-button>
      </section>
    </el-form>
    <template v-slot:table-wrap>
      <ul class="toolbar">
        <li>
          <el-button
            type="primary"
            :loading="isSyncing"
            v-permissions="['business:ywconditionermeter:sync']"
            @click="handleSync"
          >同步电表</el-button>
        </li>
      </ul>
      <el-table v-loading="isWorking.search" :data="tableData.list" stripe>
        <el-table-column prop="dbName" label="电表名称" min-width="130" align="center" show-overflow-tooltip />
        <el-table-column prop="dbAdr" label="表地址" min-width="120" align="center" show-overflow-tooltip />
        <el-table-column prop="wgMac" label="网关MAC" min-width="140" align="center" show-overflow-tooltip />
        <el-table-column label="多联机MAC" min-width="180" align="center" show-overflow-tooltip>
          <template slot-scope="{ row }">{{ formatNum(row.dljMac) }}</template>
        </el-table-column>
        <el-table-column label="波特率" min-width="80" align="center">
          <template slot-scope="{ row }">{{ formatNum(row.btl) }}</template>
        </el-table-column>
        <el-table-column label="是否校验" min-width="100" align="center">
          <template slot-scope="{ row }">{{ formatJy(row.jy) }}</template>
        </el-table-column>
        <el-table-column prop="dbBb" label="变比" min-width="80" align="center" />
        <el-table-column prop="xyName" label="协议" min-width="100" align="center" show-overflow-tooltip />
        <el-table-column prop="standbyShare" label="待机分摊" min-width="100" align="center" show-overflow-tooltip />
        <el-table-column prop="outdoorLoop" label="外机回路" min-width="90" align="center" />
        <el-table-column label="累计电能" min-width="110" align="center">
          <template slot-scope="{ row }">{{ formatNum(row.totalDl) }}</template>
        </el-table-column>
        <el-table-column label="操作" min-width="160" align="center" fixed="right">
          <template slot-scope="{ row }">
            <el-button
              type="text"
              :loading="operatingId === row.id && operateType === 'energy'"
              v-permissions="['business:ywconditionermeter:operate']"
              @click="queryEnergy(row)"
            >查电量</el-button>
            <el-button
              type="text"
              :loading="operatingId === row.id && operateType === 'power'"
              v-permissions="['business:ywconditionermeter:operate']"
              @click="queryPower(row)"
            >查功率</el-button>
          </template>
        </el-table-column>
      </el-table>
      <pagination
        @size-change="handleSizeChange"
        @current-change="handlePageChange"
        :pagination="tableData.pagination"
      />
    </template>
  </TableLayout>
</template>
 
<script>
import BaseTable from '@/components/base/BaseTable'
import TableLayout from '@/layouts/TableLayout'
import Pagination from '@/components/common/Pagination'
import * as meterApi from '@/api/business/ywconditionermeter'
 
export default {
  name: 'YwConditionerMeter',
  extends: BaseTable,
  components: { TableLayout, Pagination },
  data () {
    return {
      searchForm: {
        keyword: '',
        wgMacFilter: ''
      },
      isSyncing: false,
      operatingId: null,
      operateType: ''
    }
  },
  created () {
    this.api = meterApi
    this.module = '空调电表'
    this.configData['field.id'] = 'id'
    this.configData['field.main'] = 'dbName'
    this.search()
  },
  methods: {
    buildSearchModel () {
      const model = {}
      if (this.searchForm.keyword) model.keyword = this.searchForm.keyword
      if (this.searchForm.wgMacFilter) model.wgMacFilter = this.searchForm.wgMacFilter
      return model
    },
    handlePageChange (pageIndex) {
      this.tableData.pagination.pageIndex = pageIndex || this.tableData.pagination.pageIndex
      this.isWorking.search = true
      meterApi.fetchList({
        page: this.tableData.pagination.pageIndex,
        capacity: this.tableData.pagination.pageSize,
        model: this.buildSearchModel(),
        sorts: this.tableData.sorts
      })
        .then(data => {
          this.tableData.list = data.records || []
          this.tableData.pagination.total = data.total || 0
        })
        .catch(() => {})
        .finally(() => { this.isWorking.search = false })
    },
    reset () {
      this.searchForm = { keyword: '', wgMacFilter: '' }
      this.search()
    },
    formatNum (val) {
      if (val === null || val === undefined || val === '') return '-'
      return val
    },
    formatJy (val) {
      if (val === null || val === undefined || val === '') return '-'
      return Number(val) === 1 ? '1-校验' : '0-无校验'
    },
    handleSync () {
      this.$dialog.actionConfirm('确认从智精灵平台同步全部电表吗?', '同步电表')
        .then(() => {
          this.isSyncing = true
          meterApi.syncAll()
            .then(res => {
              this.$tip.apiSuccess(res || '同步成功')
              this.search()
            })
            .catch(e => this.$tip.apiFailed(e))
            .finally(() => { this.isSyncing = false })
        })
        .catch(() => {})
    },
    queryEnergy (row) {
      this.operatingId = row.id
      this.operateType = 'energy'
      meterApi.queryEnergy(row.id)
        .then(res => {
          this.$tip.apiSuccess(res || '查电量成功')
          this.search()
        })
        .catch(e => this.$tip.apiFailed(e))
        .finally(() => {
          this.operatingId = null
          this.operateType = ''
        })
    },
    queryPower (row) {
      this.operatingId = row.id
      this.operateType = 'power'
      meterApi.queryPower(row.id)
        .then(res => {
          this.$tip.apiSuccess(res || '查功率成功')
          this.search()
        })
        .catch(e => this.$tip.apiFailed(e))
        .finally(() => {
          this.operatingId = null
          this.operateType = ''
        })
    }
  }
}
</script>