|
@ -3,35 +3,17 @@ |
|
|
<div class="PerceiveEvent"> |
|
|
<div class="PerceiveEvent"> |
|
|
<!-- <Video class="item-video" /> --> |
|
|
<!-- <Video class="item-video" /> --> |
|
|
<div class="video-pic"> |
|
|
<div class="video-pic"> |
|
|
<Video |
|
|
<Video style="height: 100%; flex: 1" :showHeader="false" :url="dialogData.formData.videoList[0]" |
|
|
style="height: 100%; flex: 1" |
|
|
videoType="mp4" /> |
|
|
:showHeader="false" |
|
|
<Carousel style="flex: 1; height: 100%" :pictures="dialogData.formData.pictures" /> |
|
|
:url="dialogData.formData.videoList[0]" |
|
|
|
|
|
videoType="mp4" |
|
|
|
|
|
/> |
|
|
|
|
|
<Carousel |
|
|
|
|
|
style="flex: 1; height: 100%" |
|
|
|
|
|
:pictures="dialogData.formData.pictures" |
|
|
|
|
|
/> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
<LineChart class="chart" /> |
|
|
<LineChart class="chart" /> |
|
|
<Form |
|
|
<Form class="form" v-loading="loading" v-model="data" ref="FormConfigRef" :formList="formList" column="1" /> |
|
|
class="form" |
|
|
|
|
|
v-loading="loading" |
|
|
|
|
|
v-model="data" |
|
|
|
|
|
ref="FormConfigRef" |
|
|
|
|
|
:formList="formList" |
|
|
|
|
|
column="1" |
|
|
|
|
|
/> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<template #footer> |
|
|
<template #footer> |
|
|
<Button>误报</Button> |
|
|
<Button @click.native="onDelete">误报</Button> |
|
|
<Button |
|
|
<Button style="background-color: rgba(0, 179, 204, 0.3)" @click.native="obverseVisible = false">取消</Button> |
|
|
style="background-color: rgba(0, 179, 204, 0.3)" |
|
|
|
|
|
@click.native="obverseVisible = false" |
|
|
|
|
|
>取消</Button |
|
|
|
|
|
> |
|
|
|
|
|
<Button @click.native="updateEvent" :loading="btnLoading">确定</Button> |
|
|
<Button @click.native="updateEvent" :loading="btnLoading">确定</Button> |
|
|
</template> |
|
|
</template> |
|
|
</Dialog> |
|
|
</Dialog> |
|
@ -203,7 +185,7 @@ export default { |
|
|
this.getDetails(); |
|
|
this.getDetails(); |
|
|
this.getVehicleTypeList(); |
|
|
this.getVehicleTypeList(); |
|
|
}, |
|
|
}, |
|
|
async mounted() {}, |
|
|
async mounted() { }, |
|
|
beforeDestroy() { |
|
|
beforeDestroy() { |
|
|
clearInterval(this.interval); |
|
|
clearInterval(this.interval); |
|
|
}, |
|
|
}, |
|
@ -255,7 +237,7 @@ export default { |
|
|
}) |
|
|
}) |
|
|
); |
|
|
); |
|
|
}) |
|
|
}) |
|
|
.catch((err) => {}); |
|
|
.catch((err) => { }); |
|
|
}, |
|
|
}, |
|
|
convertSecToHHmmss(sec) { |
|
|
convertSecToHHmmss(sec) { |
|
|
let currentTime = moment.duration(sec, "seconds"); |
|
|
let currentTime = moment.duration(sec, "seconds"); |
|
|