mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-25 22:47:49 +08:00
Compare commits
4 Commits
ed0295f426
...
8cfa5902be
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8cfa5902be | ||
|
|
49f4306bb3 | ||
|
|
c2c44daca6 | ||
|
|
f1fb046774 |
@ -70,8 +70,6 @@ public class RegisterRequestProcessor extends SIPRequestProcessorParent implemen
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 收到注册请求 处理
|
* 收到注册请求 处理
|
||||||
*
|
|
||||||
* @param evt
|
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void process(RequestEvent evt) {
|
public void process(RequestEvent evt) {
|
||||||
|
|||||||
@ -14,8 +14,8 @@
|
|||||||
"test:ci": "npm run lint && npm run test:unit"
|
"test:ci": "npm run lint && npm run test:unit"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@wchbrad/vue-easy-tree": "^1.0.13",
|
|
||||||
"@femessage/log-viewer": "^1.5.0",
|
"@femessage/log-viewer": "^1.5.0",
|
||||||
|
"@wchbrad/vue-easy-tree": "^1.0.13",
|
||||||
"axios": "^0.24.0",
|
"axios": "^0.24.0",
|
||||||
"core-js": "3.6.5",
|
"core-js": "3.6.5",
|
||||||
"dayjs": "^1.11.13",
|
"dayjs": "^1.11.13",
|
||||||
@ -31,6 +31,7 @@
|
|||||||
"strip-ansi": "^7.1.0",
|
"strip-ansi": "^7.1.0",
|
||||||
"v-charts": "^1.19.0",
|
"v-charts": "^1.19.0",
|
||||||
"vue": "2.6.10",
|
"vue": "2.6.10",
|
||||||
|
"vue-clipboard2": "^0.3.3",
|
||||||
"vue-clipboards": "^1.3.0",
|
"vue-clipboards": "^1.3.0",
|
||||||
"vue-contextmenujs": "^1.4.11",
|
"vue-contextmenujs": "^1.4.11",
|
||||||
"vue-router": "3.0.6",
|
"vue-router": "3.0.6",
|
||||||
|
|||||||
@ -16,7 +16,8 @@ import '@/icons' // icon
|
|||||||
import '@/permission' // permission control
|
import '@/permission' // permission control
|
||||||
|
|
||||||
import VueClipboards from 'vue-clipboards'
|
import VueClipboards from 'vue-clipboards'
|
||||||
import Contextmenu from "vue-contextmenujs"
|
import Contextmenu from 'vue-contextmenujs'
|
||||||
|
import VueClipboard from 'vue-clipboard2'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If you don't want to use mock-server
|
* If you don't want to use mock-server
|
||||||
@ -34,6 +35,7 @@ if (process.env.NODE_ENV === 'production') {
|
|||||||
Vue.use(ElementUI)
|
Vue.use(ElementUI)
|
||||||
Vue.use(VueClipboards)
|
Vue.use(VueClipboards)
|
||||||
Vue.use(Contextmenu)
|
Vue.use(Contextmenu)
|
||||||
|
Vue.use(VueClipboard)
|
||||||
|
|
||||||
Vue.config.productionTip = false
|
Vue.config.productionTip = false
|
||||||
|
|
||||||
|
|||||||
@ -244,6 +244,17 @@ export const constantRoutes = [
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/play/wasm/:url',
|
||||||
|
name: 'wasmPlayer',
|
||||||
|
hidden: true,
|
||||||
|
component: () => import('@/views/common/jessibuca.vue')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/play/rtc/:url',
|
||||||
|
name: 'rtcPlayer',
|
||||||
|
component: () => import('@/views/common/rtcPlayer.vue')
|
||||||
|
},
|
||||||
// 404 page must be placed at the end !!!
|
// 404 page must be placed at the end !!!
|
||||||
{ path: '*', redirect: '/404', hidden: true }
|
{ path: '*', redirect: '/404', hidden: true }
|
||||||
]
|
]
|
||||||
|
|||||||
@ -116,9 +116,6 @@ export default {
|
|||||||
height = clientHeight
|
height = clientHeight
|
||||||
width = (16 / 9) * height
|
width = (16 / 9) * height
|
||||||
}
|
}
|
||||||
|
|
||||||
this.$refs.playerBox.style.width = width + 'px'
|
|
||||||
this.$refs.playerBox.style.height = height + 'px'
|
|
||||||
this.playerWidth = width
|
this.playerWidth = width
|
||||||
this.playerHeight = height
|
this.playerHeight = height
|
||||||
if (this.playing) {
|
if (this.playing) {
|
||||||
|
|||||||
@ -111,10 +111,10 @@
|
|||||||
<el-input v-model="getPlayerShared.sharedUrl" :disabled="true">
|
<el-input v-model="getPlayerShared.sharedUrl" :disabled="true">
|
||||||
<template slot="append">
|
<template slot="append">
|
||||||
<i
|
<i
|
||||||
v-clipboard="getPlayerShared.sharedUrl"
|
|
||||||
class="cpoy-btn el-icon-document-copy"
|
class="cpoy-btn el-icon-document-copy"
|
||||||
title="点击拷贝"
|
title="点击拷贝"
|
||||||
@success="$message({type:'success', message:'成功拷贝到粘贴板'})"
|
style="cursor: pointer"
|
||||||
|
@click="copyUrl(getPlayerShared.sharedUrl)"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</el-input>
|
</el-input>
|
||||||
@ -124,10 +124,10 @@
|
|||||||
<el-input v-model="getPlayerShared.sharedIframe" :disabled="true">
|
<el-input v-model="getPlayerShared.sharedIframe" :disabled="true">
|
||||||
<template slot="append">
|
<template slot="append">
|
||||||
<i
|
<i
|
||||||
v-clipboard="getPlayerShared.sharedIframe"
|
|
||||||
class="cpoy-btn el-icon-document-copy"
|
class="cpoy-btn el-icon-document-copy"
|
||||||
title="点击拷贝"
|
title="点击拷贝"
|
||||||
@success="$message({type:'success', message:'成功拷贝到粘贴板'})"
|
style="cursor: pointer"
|
||||||
|
@click="copyUrl(getPlayerShared.sharedIframe)"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</el-input>
|
</el-input>
|
||||||
@ -137,10 +137,10 @@
|
|||||||
<el-input v-model="getPlayerShared.sharedRtmp" :disabled="true">
|
<el-input v-model="getPlayerShared.sharedRtmp" :disabled="true">
|
||||||
<el-button
|
<el-button
|
||||||
slot="append"
|
slot="append"
|
||||||
v-clipboard="getPlayerShared.sharedRtmp"
|
|
||||||
icon="el-icon-document-copy"
|
icon="el-icon-document-copy"
|
||||||
title="点击拷贝"
|
title="点击拷贝"
|
||||||
@success="$message({type:'success', message:'成功拷贝到粘贴板'})"
|
style="cursor: pointer"
|
||||||
|
@click="copyUrl(getPlayerShared.sharedIframe)"
|
||||||
/>
|
/>
|
||||||
<el-dropdown v-if="streamInfo" slot="prepend" trigger="click" @command="copyUrl">
|
<el-dropdown v-if="streamInfo" slot="prepend" trigger="click" @command="copyUrl">
|
||||||
<el-button>
|
<el-button>
|
||||||
@ -362,7 +362,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import elDragDialog from '@/directive/el-drag-dialog'
|
import elDragDialog from '@/directive/el-drag-dialog'
|
||||||
import crypto from 'crypto'
|
import crypto from 'crypto'
|
||||||
import rtcPlayer from '../dialog/rtcPlayer.vue'
|
import rtcPlayer from '../common/rtcPlayer.vue'
|
||||||
import jessibucaPlayer from '../common/jessibuca.vue'
|
import jessibucaPlayer from '../common/jessibuca.vue'
|
||||||
import PtzPreset from '../common/ptzPreset.vue'
|
import PtzPreset from '../common/ptzPreset.vue'
|
||||||
import PtzCruising from '../common/ptzCruising.vue'
|
import PtzCruising from '../common/ptzCruising.vue'
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user