|
@@ -172,7 +172,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div ref="playerRef" class="player-box"></div>
|
|
|
+ <div ref="playerRef" class="player-box" :class="{ 'sw-player': sysOrgCode == 'sdmtjtswmk' }"></div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -185,6 +185,7 @@
|
|
|
import ventBox1 from '/@/components/vent/ventBox1.vue';
|
|
|
import { formatNum } from '/@/utils/ventutil';
|
|
|
import { useCamera } from '/@/hooks/system/useCamera';
|
|
|
+ import { useGlobSetting } from '/@/hooks/setting';
|
|
|
|
|
|
const props = defineProps({
|
|
|
deviceId: {
|
|
@@ -196,6 +197,8 @@
|
|
|
require: true,
|
|
|
},
|
|
|
});
|
|
|
+ // const { sysOrgCode } = useGlobSetting();
|
|
|
+ const sysOrgCode = 'sdmtjtswmk';
|
|
|
const loading = ref(false);
|
|
|
const monitorDataGroup = ref<Number[]>([]);
|
|
|
const monitorDataGroupFlag = ref(1);
|
|
@@ -384,7 +387,7 @@
|
|
|
mountedThree(deviceProperty.value.monitorDataGroupArr).then(async () => {
|
|
|
setMonitorGroupNum(1);
|
|
|
getMonitor(true).then(async () => {
|
|
|
- if (selectData.value && selectData.value['deviceID']) await getCamera(selectData.value['deviceID'], playerRef.value);
|
|
|
+ if (selectData.value && selectData.value['deviceID']) await getCamera(selectData.value['deviceID'], playerRef.value, 'forcFan');
|
|
|
});
|
|
|
});
|
|
|
}, 0);
|
|
@@ -627,6 +630,13 @@
|
|
|
justify-content: end;
|
|
|
}
|
|
|
}
|
|
|
+ //**上湾视频样式 */
|
|
|
+ .sw-player {
|
|
|
+ right: 350px;
|
|
|
+ bottom: 130px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ }
|
|
|
.input-box {
|
|
|
width: calc(100%);
|
|
|
display: flex;
|