修复目录订阅通道删除,修复多wvp鉴权信息不共用导致鉴权失败的BUG

This commit is contained in:
lin
2025-11-04 21:38:39 +08:00
parent 6ced304143
commit c507709690
11 changed files with 26 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div id="addUser" v-loading="isLoging">
<div id="buildPushStreamUrl">
<el-dialog
v-el-drag-dialog
title="构建推流地址"

View File

@@ -5,8 +5,9 @@
<el-page-header content="编辑推流信息" @back="close" />
</div>
</div>
<el-tabs tab-position="top" style="padding: 1rem 0">
<el-tab-pane label="推流信息编辑" style="background-color: #FFFFFF; padding: 1rem">
<el-tabs tab-position="top" style="padding-top: 1rem;">
<el-tab-pane label="推流信息编辑" style="background-color: #FFFFFF; padding: 1rem; height: calc(-218px + 100vh);
overflow: auto;">
<el-divider content-position="center">基础信息</el-divider>
<el-form ref="streamPushForm" v-loading="locading" status-icon label-width="160px" class="channel-form">
<el-form-item label="应用名">

View File

@@ -93,6 +93,12 @@
</template>
</el-table-column>
<el-table-column prop="gbDeviceId" label="国标编码" min-width="200" />
<el-table-column label="国标状态" min-width="100">
<template v-slot:default="scope">
<el-tag v-if="scope.row.gbStatus === 'ON' " size="medium">在线</el-tag>
<el-tag v-if="scope.row.gbStatus !== 'ON' " size="medium" type="info">离线</el-tag>
</template>
</el-table-column>
<el-table-column label="位置信息" min-width="150">
<template v-slot:default="scope">
<span v-if="scope.row.gbLongitude && scope.row.gbLatitude" size="medium">{{ scope.row.gbLongitude }}<br>{{ scope.row.gbLatitude }}</span>
@@ -137,7 +143,7 @@
<devicePlayer ref="devicePlayer" />
<addStreamTOGB ref="addStreamTOGB" />
<importChannel ref="importChannel" />
<stream-push-edit v-if="streamPush" :stream-push="streamPush" :close-edit="closeEdit" style="height: calc(100vh - 90px);" />
<stream-push-edit v-if="streamPush" :stream-push="streamPush" :close-edit="closeEdit" />
<buildPushStreamUrl ref="buildPushStreamUrl" />
</div>
</template>