Commit 45f6f343 authored by 张牧越's avatar 张牧越

bugfix

parent bf948081
...@@ -589,11 +589,11 @@ export default { ...@@ -589,11 +589,11 @@ export default {
} }
.side-area { .side-area {
min-width: 400px; min-width: 400px;
width: calc(25% - 6px); width: 25%;
height: 100%; height: 100%;
} }
.mid-area { .mid-area {
width: calc(50% - 12px); width: calc(50% - 24px);
height: 100%; height: 100%;
} }
.divider { .divider {
......
...@@ -284,7 +284,10 @@ export default { ...@@ -284,7 +284,10 @@ export default {
}, },
closeAll() { closeAll() {
this.cameraList.map((item) => { this.cameraList.map((item) => {
item.player.dispose(); item.id = "";
item.live_address_url = "";
item.player && item.player.dispose();
item.player = null;
}); });
this.cameraList = []; this.cameraList = [];
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment