Skip to content

Commit

Permalink
feat(dashboard): feat(equipmentCloud): konva
Browse files Browse the repository at this point in the history
修复konva界面无法通讯物模型
  • Loading branch information
h7ml committed Jun 30, 2022
1 parent 0685986 commit e693b48
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* **dashboard:** 新增百度统计 ([396c7be](https://github.com/dgiot/dgiot-dashboard/commit/396c7be11d010deae48bd915265a904202df0be2))
* **equipmentCloud:** 物模型是否展示 ([2b50100](https://github.com/dgiot/dgiot-dashboard/commit/2b50100a58ca61ca1cea563f816e412bb56fadd1))
* **equipmentCloud:** 修復設備列表查询条件更新后pagination组件不更新 ([28115a9](https://github.com/dgiot/dgiot-dashboard/commit/28115a982d253e11fbd2ec1cfd64b40409c5e122))
* **equipmentCloud:** konva ([20e1b10](https://github.com/dgiot/dgiot-dashboard/commit/20e1b10be36cf25ed2ca13b12127ab9c49daa90d))
* **projects:** 云压测 ([97a7f62](https://github.com/dgiot/dgiot-dashboard/commit/97a7f62e0b32949dc2bc4d1297a30befa76fe583))
* **projects:** scripts ([d4566d9](https://github.com/dgiot/dgiot-dashboard/commit/d4566d90c7ca08ef84107f2a7ff3b8b8cf0da6e8))

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* **dashboard:** 新增百度统计 ([396c7be](https://github.com/dgiot/dgiot-dashboard/commit/396c7be11d010deae48bd915265a904202df0be2))
* **equipmentCloud:** 物模型是否展示 ([2b50100](https://github.com/dgiot/dgiot-dashboard/commit/2b50100a58ca61ca1cea563f816e412bb56fadd1))
* **equipmentCloud:** 修復設備列表查询条件更新后pagination组件不更新 ([28115a9](https://github.com/dgiot/dgiot-dashboard/commit/28115a982d253e11fbd2ec1cfd64b40409c5e122))
* **equipmentCloud:** konva ([20e1b10](https://github.com/dgiot/dgiot-dashboard/commit/20e1b10be36cf25ed2ca13b12127ab9c49daa90d))
* **projects:** 云压测 ([97a7f62](https://github.com/dgiot/dgiot-dashboard/commit/97a7f62e0b32949dc2bc4d1297a30befa76fe583))
* **projects:** scripts ([d4566d9](https://github.com/dgiot/dgiot-dashboard/commit/d4566d90c7ca08ef84107f2a7ff3b8b8cf0da6e8))

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* **dashboard:** 新增百度统计 ([396c7be](https://github.com/dgiot/dgiot-dashboard/commit/396c7be11d010deae48bd915265a904202df0be2))
* **equipmentCloud:** 物模型是否展示 ([2b50100](https://github.com/dgiot/dgiot-dashboard/commit/2b50100a58ca61ca1cea563f816e412bb56fadd1))
* **equipmentCloud:** 修復設備列表查询条件更新后pagination组件不更新 ([28115a9](https://github.com/dgiot/dgiot-dashboard/commit/28115a982d253e11fbd2ec1cfd64b40409c5e122))
* **equipmentCloud:** konva ([20e1b10](https://github.com/dgiot/dgiot-dashboard/commit/20e1b10be36cf25ed2ca13b12127ab9c49daa90d))
* **projects:** 云压测 ([97a7f62](https://github.com/dgiot/dgiot-dashboard/commit/97a7f62e0b32949dc2bc4d1297a30befa76fe583))
* **projects:** scripts ([d4566d9](https://github.com/dgiot/dgiot-dashboard/commit/d4566d90c7ca08ef84107f2a7ff3b8b8cf0da6e8))

Expand Down
8 changes: 4 additions & 4 deletions src/views/DeviceCloud/manage/proddetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1355,10 +1355,10 @@
>
<template #default="{ row }">
<a-switch
:checked="row.isstorage"
:checked="row.isshow"
checked-children="展示"
un-checked-children="不展示"
@click="toggleStore(row)"
@click="toggleSwitch(row)"
/>
</template>
</el-table-column>
Expand All @@ -1370,10 +1370,10 @@
>
<template #default="{ row }">
<a-switch
:checked="row.isshow"
:checked="row.isstorage"
checked-children="存储"
un-checked-children="不存储"
@click="toggleSwitch(row)"
@click="toggleStore(row)"
/>
</template>
</el-table-column>
Expand Down

0 comments on commit e693b48

Please sign in to comment.