Compare commits

...

5 Commits

Author SHA1 Message Date
阿斌
8cfa5902be
Pre Merge pull request !36 from 阿斌/N/A 2025-05-12 09:29:58 +00:00
lin
49f4306bb3 支持直接播放页面 2025-05-12 17:29:45 +08:00
lin
c2c44daca6 修复播放地址复制和分屏播放布局BUG 2025-05-12 16:33:16 +08:00
lin
f1fb046774 修复播放弹窗下的地址复制 2025-05-12 16:10:24 +08:00
阿斌
da98101aac
update src/main/resources/civilCode.csv.
行政规划错误。江苏南通海门市,修改为海门区,浙江杭州删除下城区、江干区,新增钱塘区,临平区

Signed-off-by: 阿斌 <38912748@qq.com>
2024-12-15 08:58:42 +00:00
8 changed files with 26 additions and 17 deletions

View File

@ -70,8 +70,6 @@ public class RegisterRequestProcessor extends SIPRequestProcessorParent implemen
/**
* 收到注册请求 处理
*
* @param evt
*/
@Override
public void process(RequestEvent evt) {

View File

@ -861,7 +861,7 @@
320623,如东县,3206
320681,启东市,3206
320682,如皋市,3206
320684,海门,3206
320684,海门,3206
320685,海安市,3206
3207,连云港市,32
320703,连云区,3207
@ -918,8 +918,6 @@
33,浙江省,
3301,杭州市,33
330102,上城区,3301
330103,下城区,3301
330104,江干区,3301
330105,拱墅区,3301
330106,西湖区,3301
330108,滨江区,3301
@ -927,6 +925,8 @@
330110,余杭区,3301
330111,富阳区,3301
330112,临安区,3301
330113,临平区,3301
330114,钱塘区,3301
330122,桐庐县,3301
330127,淳安县,3301
330182,建德市,3301

1 编号 名称 上级
861 320623 如东县 3206
862 320681 启东市 3206
863 320682 如皋市 3206
864 320684 海门市 海门区 3206
865 320685 海安市 3206
866 3207 连云港市 32
867 320703 连云区 3207
918 33 浙江省
919 3301 杭州市 33
920 330102 上城区 3301
330103 下城区 3301
330104 江干区 3301
921 330105 拱墅区 3301
922 330106 西湖区 3301
923 330108 滨江区 3301
925 330110 余杭区 3301
926 330111 富阳区 3301
927 330112 临安区 3301
928 330113 临平区 3301
929 330114 钱塘区 3301
930 330122 桐庐县 3301
931 330127 淳安县 3301
932 330182 建德市 3301

View File

@ -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",

View File

@ -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

View File

@ -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 !!!
{ path: '*', redirect: '/404', hidden: true }
]

View File

@ -116,9 +116,6 @@ export default {
height = clientHeight
width = (16 / 9) * height
}
this.$refs.playerBox.style.width = width + 'px'
this.$refs.playerBox.style.height = height + 'px'
this.playerWidth = width
this.playerHeight = height
if (this.playing) {

View File

@ -111,10 +111,10 @@
<el-input v-model="getPlayerShared.sharedUrl" :disabled="true">
<template slot="append">
<i
v-clipboard="getPlayerShared.sharedUrl"
class="cpoy-btn el-icon-document-copy"
title="点击拷贝"
@success="$message({type:'success', message:'成功拷贝到粘贴板'})"
style="cursor: pointer"
@click="copyUrl(getPlayerShared.sharedUrl)"
/>
</template>
</el-input>
@ -124,10 +124,10 @@
<el-input v-model="getPlayerShared.sharedIframe" :disabled="true">
<template slot="append">
<i
v-clipboard="getPlayerShared.sharedIframe"
class="cpoy-btn el-icon-document-copy"
title="点击拷贝"
@success="$message({type:'success', message:'成功拷贝到粘贴板'})"
style="cursor: pointer"
@click="copyUrl(getPlayerShared.sharedIframe)"
/>
</template>
</el-input>
@ -137,10 +137,10 @@
<el-input v-model="getPlayerShared.sharedRtmp" :disabled="true">
<el-button
slot="append"
v-clipboard="getPlayerShared.sharedRtmp"
icon="el-icon-document-copy"
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-button>
@ -362,7 +362,7 @@
<script>
import elDragDialog from '@/directive/el-drag-dialog'
import crypto from 'crypto'
import rtcPlayer from '../dialog/rtcPlayer.vue'
import rtcPlayer from '../common/rtcPlayer.vue'
import jessibucaPlayer from '../common/jessibuca.vue'
import PtzPreset from '../common/ptzPreset.vue'
import PtzCruising from '../common/ptzCruising.vue'