Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
bosscheng authored Dec 16, 2020
2 parents 3ffb586 + c4a54d7 commit 8154d85
Show file tree
Hide file tree
Showing 10 changed files with 6,820 additions and 6,386 deletions.
3,178 changes: 0 additions & 3,178 deletions ui/dist/plugin-gb28181.common.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion ui/dist/plugin-gb28181.common.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion ui/dist/plugin-gb28181.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3,188 changes: 0 additions & 3,188 deletions ui/dist/plugin-gb28181.umd.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion ui/dist/plugin-gb28181.umd.js.map

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions ui/dist/plugin-gb28181.umd.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion ui/dist/plugin-gb28181.umd.min.js.map

Large diffs are not rendered by default.

24 changes: 10 additions & 14 deletions ui/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,22 +52,18 @@
</div>
<div class="tabpanel" v-if="$parent.titleTabActive === 1">
<div class="search">
<i-select v-model="channelSelectedList" multiple>
<Option
v-for="(channel, index) in channelList"
:value="channel"
:label="channel.DeviceID + '(' + channel.Name + ')'"
:key="index"
>
</Option>
</i-select>
<i-select v-model="channelSelectedList" multiple>
<i-option v-for="(channel,index) in channelList"
:value="channel"
:label="channel.DeviceID + '(' + channel.Name + ')'"
:key="index">
</i-option>
</i-select>
</div>
<div class="flex-box">
<template v-for="(channel, index) in channelSelectedList">
<div class="flex-item" :key="index" v-if="channel.ID">
<webrtc-player2
:stream-path="'gb28181/' + channel.ID"
></webrtc-player2>
<template v-for="(channel,index) in channelSelectedList">
<div class="flex-item" :key="index" v-if="channel.DeviceID">
<webrtc-player2 :stream-path="'gb28181/'+channel.DeviceID"></webrtc-player2>
</div>
</template>
</div>
Expand Down
Loading

0 comments on commit 8154d85

Please sign in to comment.