mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-24 05:57:49 +08:00
修复播放弹窗下的地址复制
This commit is contained in:
parent
198db8f684
commit
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
|
||||||
|
|
||||||
|
|||||||
@ -117,8 +117,8 @@ export default {
|
|||||||
width = (16 / 9) * height
|
width = (16 / 9) * height
|
||||||
}
|
}
|
||||||
|
|
||||||
this.$refs.playerBox.style.width = width + 'px'
|
this.$refs.container.style.width = width + 'px'
|
||||||
this.$refs.playerBox.style.height = height + 'px'
|
this.$refs.container.style.height = height + 'px'
|
||||||
this.playerWidth = width
|
this.playerWidth = width
|
||||||
this.playerHeight = height
|
this.playerHeight = height
|
||||||
if (this.playing) {
|
if (this.playing) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user