修复播放弹窗下的地址复制
This commit is contained in:
@@ -70,8 +70,6 @@ public class RegisterRequestProcessor extends SIPRequestProcessorParent implemen
|
||||
|
||||
/**
|
||||
* 收到注册请求 处理
|
||||
*
|
||||
* @param evt
|
||||
*/
|
||||
@Override
|
||||
public void process(RequestEvent evt) {
|
||||
|
||||
@@ -14,8 +14,8 @@
|
||||
"test:ci": "npm run lint && npm run test:unit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wchbrad/vue-easy-tree": "^1.0.13",
|
||||
"@femessage/log-viewer": "^1.5.0",
|
||||
"@wchbrad/vue-easy-tree": "^1.0.13",
|
||||
"axios": "^0.24.0",
|
||||
"core-js": "3.6.5",
|
||||
"dayjs": "^1.11.13",
|
||||
@@ -31,6 +31,7 @@
|
||||
"strip-ansi": "^7.1.0",
|
||||
"v-charts": "^1.19.0",
|
||||
"vue": "2.6.10",
|
||||
"vue-clipboard2": "^0.3.3",
|
||||
"vue-clipboards": "^1.3.0",
|
||||
"vue-contextmenujs": "^1.4.11",
|
||||
"vue-router": "3.0.6",
|
||||
|
||||
@@ -16,7 +16,8 @@ import '@/icons' // icon
|
||||
import '@/permission' // permission control
|
||||
|
||||
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
|
||||
@@ -34,6 +35,7 @@ if (process.env.NODE_ENV === 'production') {
|
||||
Vue.use(ElementUI)
|
||||
Vue.use(VueClipboards)
|
||||
Vue.use(Contextmenu)
|
||||
Vue.use(VueClipboard)
|
||||
|
||||
Vue.config.productionTip = false
|
||||
|
||||
|
||||
@@ -117,8 +117,8 @@ export default {
|
||||
width = (16 / 9) * height
|
||||
}
|
||||
|
||||
this.$refs.playerBox.style.width = width + 'px'
|
||||
this.$refs.playerBox.style.height = height + 'px'
|
||||
this.$refs.container.style.width = width + 'px'
|
||||
this.$refs.container.style.height = height + 'px'
|
||||
this.playerWidth = width
|
||||
this.playerHeight = height
|
||||
if (this.playing) {
|
||||
|
||||
Reference in New Issue
Block a user