Skip to content

Commit 95e1528

Browse files
committed
feat(components): 设备管理
standard
1 parent 223c5d5 commit 95e1528

File tree

5 files changed

+64
-10
lines changed

5 files changed

+64
-10
lines changed

CHANGELOG.EN.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
1-
## [4.5.4](https://github.com/dgiot/dgiot-dashboard/compare/v5.0.0...v4.5.4) (2022-06-22)
1+
## [4.5.4](https://github.com/dgiot/dgiot-dashboard/compare/v4.5.5...v4.5.4) (2022-06-22)
2+
3+
4+
### Features
5+
6+
* **projects:** scripts ([d4566d9](https://github.com/dgiot/dgiot-dashboard/commit/d4566d90c7ca08ef84107f2a7ff3b8b8cf0da6e8))
7+
8+
9+
10+
## [4.5.5](https://github.com/dgiot/dgiot-dashboard/compare/v4.6.0...v4.5.5) (2022-06-22)
11+
12+
13+
14+
# [4.6.0](https://github.com/dgiot/dgiot-dashboard/compare/v5.0.0...v4.6.0) (2022-06-22)
15+
16+
17+
### Features
18+
19+
* **deps:** scripts ([3b7e869](https://github.com/dgiot/dgiot-dashboard/commit/3b7e869f3310e90f04bf9892c0ae9d00f10cbd7c))
20+
21+
22+
23+
# [5.0.0](https://github.com/dgiot/dgiot-dashboard/compare/v4.5.4...v5.0.0) (2022-06-22)
224

325

426
### Bug Fixes

CHANGELOG.ZH.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
1-
## [4.5.4](https://github.com/dgiot/dgiot-dashboard/compare/v5.0.0...v4.5.4) (2022-06-22)
1+
## [4.5.4](https://github.com/dgiot/dgiot-dashboard/compare/v4.5.5...v4.5.4) (2022-06-22)
2+
3+
4+
### Features
5+
6+
* **projects:** scripts ([d4566d9](https://github.com/dgiot/dgiot-dashboard/commit/d4566d90c7ca08ef84107f2a7ff3b8b8cf0da6e8))
7+
8+
9+
10+
## [4.5.5](https://github.com/dgiot/dgiot-dashboard/compare/v4.6.0...v4.5.5) (2022-06-22)
11+
12+
13+
14+
# [4.6.0](https://github.com/dgiot/dgiot-dashboard/compare/v5.0.0...v4.6.0) (2022-06-22)
15+
16+
17+
### Features
18+
19+
* **deps:** scripts ([3b7e869](https://github.com/dgiot/dgiot-dashboard/commit/3b7e869f3310e90f04bf9892c0ae9d00f10cbd7c))
20+
21+
22+
23+
# [5.0.0](https://github.com/dgiot/dgiot-dashboard/compare/v4.5.4...v5.0.0) (2022-06-22)
224

325

426
### Bug Fixes

CHANGELOG.md

+16-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,26 @@
1-
# Changelog
1+
## [4.5.4](https://github.com/dgiot/dgiot-dashboard/compare/v4.5.5...v4.5.4) (2022-06-22)
22

3-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
43

5-
### [4.5.5](https://github.com/dgiot/dgiot-dashboard/compare/v4.6.0...v4.5.5) (2022-06-22)
4+
### Features
5+
6+
* **projects:** scripts ([d4566d9](https://github.com/dgiot/dgiot-dashboard/commit/d4566d90c7ca08ef84107f2a7ff3b8b8cf0da6e8))
7+
8+
9+
10+
## [4.5.5](https://github.com/dgiot/dgiot-dashboard/compare/v4.6.0...v4.5.5) (2022-06-22)
11+
612

7-
## [5.0.0](https://github.com/dgiot/dgiot-dashboard/compare/v4.6.0...v5.0.0) (2022-06-22)
813

9-
## [4.6.0](https://github.com/dgiot/dgiot-dashboard/compare/v5.0.0...v4.6.0) (2022-06-22)
14+
# [4.6.0](https://github.com/dgiot/dgiot-dashboard/compare/v5.0.0...v4.6.0) (2022-06-22)
1015

1116

1217
### Features
1318

1419
* **deps:** scripts ([3b7e869](https://github.com/dgiot/dgiot-dashboard/commit/3b7e869f3310e90f04bf9892c0ae9d00f10cbd7c))
1520

16-
## [4.5.4](https://github.com/dgiot/dgiot-dashboard/compare/v5.0.0...v4.5.4) (2022-06-22)
21+
22+
23+
# [5.0.0](https://github.com/dgiot/dgiot-dashboard/compare/v4.5.4...v5.0.0) (2022-06-22)
1724

1825

1926
### Bug Fixes
@@ -79,3 +86,6 @@ ISSUES CLOSED: https://github.com/dgiot/dgiot/issues/486
7986

8087

8188
## 4.5.4 (2022-06-01)
89+
90+
91+

src/views/DeviceCloud/manage/devicelist.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@
10881088
},
10891089
async subAllDevice() {
10901090
let _this = this
1091-
await _this.$subscribe('$dg/user/devicestate/#')
1091+
// await _this.$subscribe('$dg/user/devicestate/#')
10921092
_this.$dgiotBus.$off(_this.$mqttInfo.topicKey)
10931093
_this.$dgiotBus.$on(_this.$mqttInfo.topicKey, (Msg) => {
10941094
const parseString = JSON.parse(Msg.payloadString)

src/views/DeviceCloud/manage/home_index.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1219,7 +1219,7 @@
12191219
},
12201220
async subAllDevice() {
12211221
let _this = this
1222-
await _this.$subscribe('$dg/user/devicestate/#')
1222+
// await _this.$subscribe('$dg/user/devicestate/#')
12231223
_this.$dgiotBus.$off(_this.$mqttInfo.topicKey)
12241224
_this.$dgiotBus.$on(_this.$mqttInfo.topicKey, (Msg) => {
12251225
const parseString = JSON.parse(Msg.payloadString)

0 commit comments

Comments
 (0)