Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
abfb305181
|
@ -123,7 +123,6 @@
|
|||
<script lang="ts" setup>
|
||||
import { useInstanceStore } from '@/store/instance';
|
||||
import {
|
||||
getEdgeMap,
|
||||
saveEdgeMap,
|
||||
removeEdgeMap,
|
||||
edgeChannel,
|
||||
|
|
|
@ -89,6 +89,7 @@
|
|||
:key="i.key"
|
||||
>
|
||||
<PermissionButton
|
||||
v-if="i.key !== 'update' || detail.accessProvider === 'official-edge-gateway'"
|
||||
:disabled="i.disabled"
|
||||
:popConfirm="i.popConfirm"
|
||||
:tooltip="{
|
||||
|
@ -307,6 +308,9 @@ const closeBindDevice = (val: boolean) => {
|
|||
const closeChildSave = () => {
|
||||
childVisible.value = false;
|
||||
};
|
||||
onMounted(()=>{
|
||||
console.log(detail.value.accessProvider)
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="less">
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<j-radio-button value="mp4">MP4</j-radio-button>
|
||||
<j-radio-button value="flv">FLV</j-radio-button>
|
||||
<j-radio-button value="m3u8">HLS</j-radio-button>
|
||||
<j-radio-button value='rtc'>RTC</j-radio-button>
|
||||
<!-- <j-radio-button value='rtc'>RTC</j-radio-button> -->
|
||||
</j-radio-group>
|
||||
<div class="media-live-share" v-if="type !== 'share'">
|
||||
<j-button type="link" @click="onShare"
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
<j-radio-button value="mp4">MP4</j-radio-button>
|
||||
<j-radio-button value="flv">FLV</j-radio-button>
|
||||
<j-radio-button value="m3u8">HLS</j-radio-button>
|
||||
<j-radio-button value='rtc'>RTC</j-radio-button>
|
||||
</j-radio-group>
|
||||
<div class="media-live-share" v-if="type !== 'share'">
|
||||
<j-button type="link" @click="onShare"
|
||||
|
|
|
@ -96,7 +96,7 @@ export default defineConfig(({ mode}) => {
|
|||
// target: 'http://192.168.32.244:8881',
|
||||
// target: 'http://192.168.32.163:8844', //张季本地
|
||||
// target: 'http://120.77.179.54:8844', // 120测试
|
||||
target: 'http://192.168.32.5:8844', // 本地开发环境
|
||||
target: 'http://192.168.33.46:8844', // 本地开发环境
|
||||
ws: 'ws://192.168.33.46:8844',
|
||||
changeOrigin: true,
|
||||
rewrite: (path) => path.replace(/^\/api/, '')
|
||||
|
|
Loading…
Reference in New Issue