suerprisePlus
2024-05-30 d4c810f9803aa13d806724a5f4f71fe85abac38e
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
<template>
  <div style="padding: 6px">
    <el-card style="margin-bottom: 6px">
      <el-form :model="queryParams" ref="queryForm" :inline="true" label-width="75px" style="margin-bottom: -20px">
        <el-form-item label="设备名称" prop="deviceName">
          <el-input v-model="queryParams.deviceName" placeholder="请输入设备名称" clearable size="small"
            @keyup.enter.native="handleQuery" style="width: 150px" />
        </el-form-item>
        <el-form-item label="设备编号" prop="serialNumber">
          <el-input v-model="queryParams.serialNumber" placeholder="请输入设备编号" clearable size="small"
            @keyup.enter.native="handleQuery" style="width: 150px" />
        </el-form-item>
        <el-form-item label="设备状态" prop="status">
          <el-select v-model="queryParams.status" placeholder="请选择设备状态" clearable size="small" style="width: 150px">
            <el-option v-for="dict in dict.type.iot_device_status" :key="dict.value" :label="dict.label"
              :value="dict.value" />
          </el-select>
        </el-form-item>
        <el-form-item label="我的分组">
          <el-select v-model="queryParams.groupId" placeholder="请选择我的分组" clearable size="small" style="width: 150px">
            <el-option v-for="group in myGroupList" :key="group.groupId" :label="group.groupName"
              :value="group.groupId" />
          </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-item style="float: right">
          <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleEditDevice(0)"
            v-hasPermi="['iot:device:add']">新增</el-button>
          <el-button type="primary" plain icon="el-icon-s-grid" size="mini" @click="handleChangeShowType"
            v-hasPermi="['iot:device:add']">切换</el-button>
        </el-form-item>
      </el-form>
    </el-card>
 
    <el-card style="padding-bottom: 100px" v-if="showType == 'list'">
      <el-table v-loading="loading" :data="deviceList" border>
        <el-table-column label="编号" align="center" header-align="center" prop="deviceId" width="50" />
        <el-table-column label="设备名称" align="center" header-align="center" prop="deviceName" min-width="120" />
        <el-table-column label="设备编号" align="center" prop="serialNumber" min-width="130" />
        <el-table-column label="所属产品" align="center" prop="productName" min-width="120" />
        <el-table-column label="协议" align="center" prop="transport" min-width="50" />
        <el-table-column label="通讯协议" align="center" prop="protocolCode" min-width="100" />
        <el-table-column label="子设备数" align="center" prop="subDeviceCount" width="80">
          <template slot-scope="scope">
            {{ scope.row.subDeviceCount }}
          </template>
        </el-table-column>
        <el-table-column label="设备影子" align="center" prop="isShadow" width="80">
          <template slot-scope="scope">
            <el-tag type="success" size="small" v-if="scope.row.isShadow == 1">启用</el-tag>
            <el-tag type="info" size="small" v-else>禁用</el-tag>
          </template>
        </el-table-column>
        <el-table-column label="状态" align="center" prop="status" width="80">
          <template slot-scope="scope">
            <dict-tag :options="dict.type.iot_device_status" :value="scope.row.status" size="small" />
          </template>
        </el-table-column>
        <el-table-column label="信号" align="center" prop="rssi" width="60">
          <template slot-scope="scope">
            <svg-icon v-if="scope.row.status == 3 && scope.row.rssi >= '-55'" icon-class="wifi_4" />
            <svg-icon v-else-if="scope.row.status == 3 && scope.row.rssi >= '-70' && scope.row.rssi < '-55'"
              icon-class="wifi_3" />
            <svg-icon v-else-if="scope.row.status == 3 && scope.row.rssi >= '-85' && scope.row.rssi < '-70'"
              icon-class="wifi_2" />
            <svg-icon v-else-if="scope.row.status == 3 && scope.row.rssi >= '-100' && scope.row.rssi < '-85'"
              icon-class="wifi_1" />
            <svg-icon v-else icon-class="wifi_0" />
          </template>
        </el-table-column>
        <el-table-column label="定位方式" align="center" prop="locationWay">
          <template slot-scope="scope">
            <dict-tag :options="dict.type.iot_location_way" :value="scope.row.locationWay" size="small" />
          </template>
        </el-table-column>
        <el-table-column label="固件版本" align="center" prop="firmwareVersion">
          <template slot-scope="scope">
            <el-tag size="mini" type="info">Ver {{ scope.row.firmwareVersion }}</el-tag>
          </template>
        </el-table-column>
        <el-table-column label="激活时间" align="center" prop="activeTime">
          <template slot-scope="scope">
            <span>{{ parseTime(scope.row.activeTime, '{y}-{m}-{d}') }}</span>
          </template>
        </el-table-column>
        <el-table-column label="创建时间" align="center" prop="createTime">
          <template slot-scope="scope">
            <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
          </template>
        </el-table-column>
 
        <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
          <template slot-scope="scope">
            <el-button type="danger" size="small" style="padding: 5px" icon="el-icon-delete"
              @click="handleDelete(scope.row)" v-hasPermi="['iot:device:remove']">删除</el-button>
            <el-button type="primary" size="small" style="padding: 5px" icon="el-icon-view"
              @click="handleEditDevice(scope.row)" v-hasPermi="['iot:device:add']">查看</el-button>
            <el-button type="primary" size="small" style="padding: 5px" @click="openSummaryDialog(scope.row)"
              v-if="form.deviceId != 0">二维码</el-button>
          </template>
        </el-table-column>
      </el-table>
      <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
        :pageSizes="[12, 24, 36, 60]" @pagination="getList" />
 
    </el-card>
 
    <el-card style="padding-bottom: 100px" v-if="showType == 'card'">
      <el-row :gutter="30" v-loading="loading">
        <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="6" v-for="(item, index) in deviceList" :key="index"
          style="margin-bottom: 30px; text-align: center">
          <el-card :body-style="{ padding: '20px' }" shadow="always" class="card-item">
            <el-row type="flex" :gutter="10" justify="space-between">
              <el-col :span="20" style="text-align: left">
                <el-link type="" :underline="false" @click="handleEditDevice(item)"
                  style="font-weight: bold; font-size: 16px; line-height: 32px">
                  <el-tooltip class="item" effect="dark" content="分享的设备" placement="top-start">
                    <svg-icon icon-class="share" style="font-size: 20px" v-if="item.isOwner != 1" />
                  </el-tooltip>
                  <svg-icon icon-class="device" v-if="item.isOwner == 1" />
                  <span style="margin: 0 5px">{{ item.deviceName }}</span>
                  <!-- <el-tag size="mini" type="info">Ver {{item.firmwareVersion}}</el-tag>-->
                  <!-- <el-text v-if="item.protocolCode" type="info" size="mini" style="font-size: 14px; color: #ccc">{{ item.protocolCode }}</el-text> -->
                </el-link>
              </el-col>
              <el-col :span="1.5" style="font-size: 20px; padding-top: 5px; cursor: pointer">
                <svg-icon icon-class="qrcode" @click="openSummaryDialog(item)" />
              </el-col>
              <el-col :span="3">
                <div style="font-size: 28px; color: #ccc">
                  <svg-icon v-if="item.status == 3 && item.rssi >= '-55'" icon-class="wifi_4" />
                  <svg-icon v-else-if="item.status == 3 && item.rssi >= '-70' && item.rssi < '-55'" icon-class="wifi_3" />
                  <svg-icon v-else-if="item.status == 3 && item.rssi >= '-85' && item.rssi < '-70'" icon-class="wifi_2" />
                  <svg-icon v-else-if="item.status == 3 && item.rssi >= '-100' && item.rssi < '-85'"
                    icon-class="wifi_1" />
                  <svg-icon v-else icon-class="wifi_0" />
                </div>
              </el-col>
            </el-row>
            <el-row :gutter="10">
              <el-col :span="17">
                <div style="text-align: left; line-height: 40px; white-space: nowrap">
                  <dict-tag :options="dict.type.iot_device_status" :value="item.status" size="small"
                    style="display: inline-block" />
                  <span style="display: inline-block; margin: 0 10px">
                    <!-- <el-tag type="success" size="small" v-if="item.isShadow == 1">影子</el-tag>
                    <el-tag type="info" size="small" v-else>影子</el-tag> -->
                    <el-tag type="primary" size="small" v-if="item.protocolCode">{{ item.protocolCode }}</el-tag>
                  </span>
                  <el-tag type="primary" size="small" v-if="item.transport">{{ item.transport }}</el-tag>
                  <!-- <dict-tag :options="dict.type.iot_location_way" :value="item.locationWay" size="small" style="display:inline-block;" /> -->
                  <!-- <dict-tag :options="dict.type.iot_transport_type" :value="item.transport" size="small" style="display: inline-block" /> -->
                </div>
                <el-descriptions :column="1" size="mini" style="white-space: nowrap">
                  <el-descriptions-item label="编号">
                    {{ item.serialNumber }}
                  </el-descriptions-item>
                  <el-descriptions-item label="产品">
                    {{ item.productName }}
                  </el-descriptions-item>
                  <el-descriptions-item label="激活时间">
                    {{ parseTime(item.activeTime, '{y}-{m}-{d}') }}
                  </el-descriptions-item>
                </el-descriptions>
              </el-col>
              <el-col :span="7">
                <div style="margin-top: 10px">
                  <el-image style="width: 100%; height: 100px; border-radius: 10px" lazy
                    :preview-src-list="[baseUrl + item.imgUrl]" :src="baseUrl + item.imgUrl" fit="cover"
                    v-if="item.imgUrl != null && item.imgUrl != ''"></el-image>
                  <el-image style="width: 100%; height: 100px; border-radius: 10px"
                    :preview-src-list="[require('@/assets/images/gateway.png')]"
                    :src="require('@/assets/images/gateway.png')" fit="cover" v-else-if="item.deviceType == 2"></el-image>
                  <el-image style="width: 100%; height: 100px; border-radius: 10px"
                    :preview-src-list="[require('@/assets/images/video.png')]" :src="require('@/assets/images/video.png')"
                    fit="cover" v-else-if="item.deviceType == 3"></el-image>
                  <el-image style="width: 100%; height: 100px; border-radius: 10px"
                    :preview-src-list="[require('@/assets/images/product.png')]"
                    :src="require('@/assets/images/product.png')" fit="cover" v-else></el-image>
                </div>
              </el-col>
            </el-row>
            <el-button-group style="margin-top: 15px">
              <el-button type="danger" size="mini" style="padding: 5px 10px" icon="el-icon-delete"
                @click="handleDelete(item)" v-hasPermi="['iot:device:remove']">删除</el-button>
              <el-button type="primary" size="mini" style="padding: 5px 15px" icon="el-icon-view"
                @click="handleEditDevice(item, 'basic')" v-hasPermi="['iot:device:add']">查看</el-button>
              <el-button type="success" size="mini" style="padding: 5px 15px" icon="el-icon-odometer"
                @click="handleRunDevice(item)" v-hasPermi="['iot:device:add']">运行状态</el-button>
            </el-button-group>
          </el-card>
        </el-col>
      </el-row>
      <el-empty description="暂无数据,请添加设备" v-if="total == 0"></el-empty>
      <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
        :pageSizes="[12, 24, 36, 60]" @pagination="getList" />
    </el-card>
    <!-- 二维码 -->
    <el-dialog :visible.sync="openSummary" width="300px" append-to-body>
      <div style="border: 1px solid #ccc; width: 220px; text-align: center; margin: 0 auto; margin-top: -15px">
        <vue-qr :text="qrText" :size="200"></vue-qr>
        <div style="padding-bottom: 10px">设备二维码</div>
      </div>
    </el-dialog>
  </div>
</template>
 
<script>
import vueQr from 'vue-qr';
import { listDeviceShort, delDevice } from '@/api/iot/device';
import { listGroup } from '@/api/iot/group';
 
export default {
  name: 'Device',
  dicts: ['iot_device_status', 'iot_is_enable', 'iot_location_way', 'iot_transport_type'],
  components: {
    vueQr,
  },
  data() {
    return {
      // 二维码内容
      qrText: 'fastbee',
      // 打开设备配置对话框
      openSummary: false,
      // 展示方式
      showType: 'card',
      // 遮罩层
      loading: true,
      // 总条数
      total: 0,
      // 设备列表数据
      deviceList: [],
      // 我的分组列表数据
      myGroupList: [],
      // 根路径
      baseUrl: process.env.VUE_APP_BASE_API,
      // 查询参数
      queryParams: {
        pageNum: 1,
        pageSize: 12,
        deviceName: null,
        productId: null,
        groupId: null,
        productName: null,
        userId: null,
        userName: null,
        tenantId: null,
        tenantName: null,
        serialNumber: null,
        status: null,
        networkAddress: null,
        activeTime: null,
      },
      // 表单参数
      form: {
        productId: 0,
        status: 1,
        locationWay: 1,
        firmwareVersion: 1.0,
        serialNumber: '',
        deviceType: 1,
        isSimulate: 0,
      },
      isSubDev: false,
    };
  },
  created() {
    // 产品筛选
    let productId = this.$route.query.productId;
    if (productId != null) {
      this.queryParams.productId = Number(productId);
      this.queryParams.groupId = null;
      this.queryParams.serialNumber = null;
    }
    // 分组筛选
    let groupId = this.$route.query.groupId;
    if (groupId != null) {
      this.queryParams.groupId = Number(groupId);
      this.queryParams.productId = null;
      this.queryParams.serialNumber = null;
    }
    // 设备编号筛选
    let sn = this.$route.query.sn;
    if (sn != null) {
      this.queryParams.serialNumber = sn;
      this.queryParams.productId = null;
      this.queryParams.groupId = null;
    }
    this.connectMqtt();
  },
  activated() {
    const time = this.$route.query.t;
    if (time != null && time != this.uniqueId) {
      this.uniqueId = time;
      // 页码筛选
      let pageNum = this.$route.query.pageNum;
      if (pageNum != null) {
        this.queryParams.pageNum = Number(pageNum);
      }
      // 产品筛选
      let productId = this.$route.query.productId;
      if (productId != null) {
        this.queryParams.productId = Number(productId);
        this.queryParams.groupId = null;
        this.queryParams.serialNumber = null;
      }
      // 分组筛选
      let groupId = this.$route.query.groupId;
      if (groupId != null) {
        this.queryParams.groupId = Number(groupId);
        this.queryParams.productId = null;
        this.queryParams.serialNumber = null;
      }
      // 设备编号筛选
      let sn = this.$route.query.sn;
      if (sn != null) {
        this.queryParams.serialNumber = sn;
        this.queryParams.productId = null;
        this.queryParams.groupId = null;
      }
      this.getList();
    }
  },
  methods: {
    /* 连接Mqtt消息服务器 */
    async connectMqtt() {
      if (this.$mqttTool.client == null) {
        await this.$mqttTool.connect();
      }
      this.mqttCallback();
      this.getList();
    },
    /* Mqtt回调处理  */
    mqttCallback() {
      this.$mqttTool.client.on('message', (topic, message, buffer) => {
        let topics = topic.split('/');
        let productId = topics[1];
        let deviceNum = topics[2];
        message = JSON.parse(message.toString());
        if (!message) {
          return;
        }
        if (topics[3] == 'status') {
          console.log('接收到【设备状态】主题:', topic);
          console.log('接收到【设备状态】内容:', message);
          // 更新列表中设备的状态
          for (let i = 0; i < this.deviceList.length; i++) {
            if (this.deviceList[i].serialNumber == deviceNum) {
              this.deviceList[i].status = message.status;
              this.deviceList[i].isShadow = message.isShadow;
              this.deviceList[i].rssi = message.rssi;
              return;
            }
          }
        }
      });
    },
    openSummaryDialog(row) {
      let json = {
        type: 1, // 1=扫码关联设备
        deviceNumber: row.serialNumber,
        productId: row.productId,
        productName: row.productName,
      };
      this.qrText = JSON.stringify(json);
      this.openSummary = true;
    },
    /* 订阅消息 */
    mqttSubscribe(list) {
      // 订阅当前页面设备状态和实时监测
      let topics = [];
      for (let i = 0; i < list.length; i++) {
        let topicStatus = '/' + '+' + '/' + list[i].serialNumber + '/status/post';
        topics.push(topicStatus);
      }
      this.$mqttTool.subscribe(topics);
    },
    /** 查询设备分组列表 */
    getGroupList() {
      this.loading = true;
      let queryParams = {
        pageSize: 30,
        pageNum: 1,
        userId: this.$store.state.user.userId,
      };
      listGroup(queryParams).then((response) => {
        this.myGroupList = response.rows;
      });
    },
    /** 查询所有简短设备列表 */
    getList() {
      this.loading = true;
      this.queryParams.params = {};
      this.getGroupList();
      listDeviceShort(this.queryParams).then((response) => {
        this.deviceList = response.rows;
        this.total = response.total;
        // 订阅消息
        if (this.deviceList && this.deviceList.length > 0) {
          this.mqttSubscribe(this.deviceList);
        }
        this.loading = false;
      });
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNum = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.queryParams.productId = null;
      this.queryParams.groupId = null;
      this.queryParams.serialNumber = null;
      this.resetForm('queryForm');
      this.handleQuery();
    },
    /** 切换显示方式 */
    handleChangeShowType() {
      this.showType = this.showType == 'card' ? 'list' : 'card';
    },
    /** 修改按钮操作 */
    handleEditDevice(row, activeName) {
      let deviceId = 0;
      let isSubDev = 0;
      if (row != 0) {
        deviceId = row.deviceId || this.ids;
        isSubDev = row.subDeviceCount > 0 ? 1 : 0;
      }
      this.$router.push({
        path: '/iot/device-edit',
        query: {
          deviceId: deviceId,
          isSubDev: isSubDev,
          pageNum: this.queryParams.pageNum,
          activeName: activeName,
        },
      });
    },
    /** 运行状态按钮操作 */
    handleRunDevice(row) {
      let deviceId = 0;
      let isSubDev = 0;
      if (row != 0) {
        deviceId = row.deviceId || this.ids;
        isSubDev = row.subDeviceCount > 0 ? 1 : 0;
      }
      if (row.deviceType === 3) {
        this.$router.push({
          path: '/iot/device-edit',
          query: {
            deviceId: deviceId,
            isSubDev: isSubDev,
            pageNum: this.queryParams.pageNum,
            activeName: 'sipChannel',
          },
        });
      } else {
        this.$router.push({
          path: '/iot/device-edit',
          query: {
            deviceId: deviceId,
            isSubDev: isSubDev,
            pageNum: this.queryParams.pageNum,
            activeName: 'runningStatus',
          },
        });
      }
    },
    /** 删除按钮操作 */
    handleDelete(row) {
      const deviceIds = row.deviceId || this.ids;
      this.$modal
        .confirm('是否确认删除设备编号为"' + deviceIds + '"的数据项?')
        .then(function () {
          if (row.deviceType === 3) {
            delSipDeviceBySipId(row.serialNumber);
          }
          return delDevice(deviceIds);
        })
        .then(() => {
          this.getList();
          this.$modal.msgSuccess('删除成功');
        })
        .catch(() => { });
    },
    /** 未启用设备影子*/
    shadowUnEnable(device, thingsModel) {
      // 1-未激活,2-禁用,3-在线,4-离线
      if (device.status != 3 && device.isShadow == 0) {
        return true;
      }
      if (thingsModel.isReadonly) {
        return true;
      }
      return false;
    },
  },
};
</script>
 
<style scoped>
.card-item {
  border-radius: 15px;
}
</style>