|
@@ -1,6 +1,7 @@
|
|
|
<!-- 算法参数配置页面 -->
|
|
<!-- 算法参数配置页面 -->
|
|
|
<template>
|
|
<template>
|
|
|
- <div>
|
|
|
|
|
|
|
+ <div class="cameraPageWrapper">
|
|
|
|
|
+ <PageTitle />
|
|
|
<div class="cameraMain">
|
|
<div class="cameraMain">
|
|
|
<div class="cameraTree" v-show="cameraTreeVisible">
|
|
<div class="cameraTree" v-show="cameraTreeVisible">
|
|
|
<slot name="cameraTree"> 这里需要插入相机树的组件 </slot>
|
|
<slot name="cameraTree"> 这里需要插入相机树的组件 </slot>
|
|
@@ -35,6 +36,7 @@
|
|
|
import { getCameraDeatilById } from '@/api/camera/camera-preview';
|
|
import { getCameraDeatilById } from '@/api/camera/camera-preview';
|
|
|
import { PROVIDE_CONSTANTS } from './constants';
|
|
import { PROVIDE_CONSTANTS } from './constants';
|
|
|
import { AlgoDetail } from '@/api/algo/algo';
|
|
import { AlgoDetail } from '@/api/algo/algo';
|
|
|
|
|
+ import PageTitle from './components/PageTitle/PageTitle.vue';
|
|
|
|
|
|
|
|
const cameraDetailStore = useCameraDetailStore();
|
|
const cameraDetailStore = useCameraDetailStore();
|
|
|
const cameraAlgoStore = useCameraAlgoStore();
|
|
const cameraAlgoStore = useCameraAlgoStore();
|
|
@@ -104,9 +106,12 @@
|
|
|
border-left: 1px solid #ccc;
|
|
border-left: 1px solid #ccc;
|
|
|
padding-left: 20px;
|
|
padding-left: 20px;
|
|
|
}
|
|
}
|
|
|
|
|
+ .cameraPageWrapper {
|
|
|
|
|
+ background-color: #fff;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
.cameraMain {
|
|
.cameraMain {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
- background: #fff;
|
|
|
|
|
overflow-x: auto;
|
|
overflow-x: auto;
|
|
|
// height: calc(100vh - 90px);
|
|
// height: calc(100vh - 90px);
|
|
|
}
|
|
}
|