...
|
...
|
@@ -195,7 +195,9 @@ |
195
|
195
|
const handleVideoOut = () => {
|
196
|
196
|
if (unref(cameraList).length) {
|
197
|
197
|
unref(cameraList).forEach((item) => {
|
198
|
|
- outVideo(item.id);
|
|
198
|
+ if (item.accessMode === 1) {
|
|
199
|
+ outVideo(item.id);
|
|
200
|
+ }
|
199
|
201
|
});
|
200
|
202
|
}
|
201
|
203
|
};
|
...
|
...
|
|