|
|
@ -5,13 +5,15 @@ |
|
|
|
}"> |
|
|
|
<Form :formList="formList" :dFormData="formData" label-width="100px" /> |
|
|
|
|
|
|
|
<div class="video-pic"> |
|
|
|
<div class="video-pic" :style="{ height: formData.component === 'VideoMulti' ? '220px' : undefined }"> |
|
|
|
|
|
|
|
<Video v-if="activeName != '-1'" style="height: 100%; width: 380px" :showHeader="false" :url="formData.videoList && formData.videoList.length > 0 |
|
|
|
<component :is="formData.component" v-if="activeName != '-1'" style="height: 100%; width: 380px" |
|
|
|
:showHeader="false" :url="formData.videoList && formData.videoList.length > 0 |
|
|
|
? formData.videoList[0] : ''" :camId="formData.upCamId" :pileNum="formData.stakeMark" rangeIndex="upCamera" |
|
|
|
:videoType="formData.videoType" /> |
|
|
|
|
|
|
|
<Video v-if="activeName != '-1'" style="height: 100%; width: 380px" :showHeader="false" :url="formData.videoList && formData.videoList.length > 0 |
|
|
|
<component :is="formData.component" v-if="activeName != '-1'" style="height: 100%; width: 380px" |
|
|
|
:showHeader="false" :url="formData.videoList && formData.videoList.length > 0 |
|
|
|
? formData.videoList[1] : ''" :camId="formData.downCamId" :pileNum="formData.stakeMark" rangeIndex="downCamera" |
|
|
|
:videoType="formData.videoType" /> |
|
|
|
|
|
|
@ -51,6 +53,7 @@ import Form from "@screen/components/FormConfig"; |
|
|
|
import { formList } from "./data"; |
|
|
|
// import { timeLine2List } from "@screen/pages/control/event/commandDispatch/Cards/DisposalProcess/data.js" |
|
|
|
import Video from "@screen/components/Video"; |
|
|
|
import VideoMulti from "@screen/components/VideoMulti"; |
|
|
|
import Carousel from "./Carousel/index.vue"; |
|
|
|
import EventPlanDialog from "./eventPlanDialog/index.vue"; |
|
|
|
import Button from "@screen/components/Buttons/Button.vue"; |
|
|
@ -66,6 +69,7 @@ export default { |
|
|
|
TimeLine1, |
|
|
|
TimeLine2, |
|
|
|
Video, |
|
|
|
VideoMulti, |
|
|
|
Carousel, |
|
|
|
Button, |
|
|
|
EventPlanDialog, |
|
|
|