diff --git a/src/views/cameraChannel/index.vue b/src/views/cameraChannel/index.vue index 472753a..e4aa868 100644 --- a/src/views/cameraChannel/index.vue +++ b/src/views/cameraChannel/index.vue @@ -54,6 +54,7 @@ type="text" >修改 + diff --git a/src/views/components/carouselChart.vue b/src/views/components/carouselChart.vue index 8bf67e6..3026ea5 100644 --- a/src/views/components/carouselChart.vue +++ b/src/views/components/carouselChart.vue @@ -69,9 +69,25 @@ /> -->

- {{ $moment(item.photoTime).format("HH:mm:ss") }}({{ - $moment(item.recvTime).format("HH:mm:ss") - }}) + + {{ $moment(item.photoTime).format("HH:mm:ss") }} + + + ( + + {{ $moment(item.recvTime).format("HH:mm:ss") }} + + ) --通道{{ item.channelId }}

@@ -202,6 +218,13 @@ export default { align-items: center; justify-content: center; + .bigimg { + width: 100%; + height: 100%; + display: flex; + align-items: center; + justify-content: center; + } img { //width: 100%; height: 100%; diff --git a/src/views/devicePhotoSchedule/components/adddeviceDialog.vue b/src/views/devicePhotoSchedule/components/adddeviceDialog.vue index cfee213..7661763 100644 --- a/src/views/devicePhotoSchedule/components/adddeviceDialog.vue +++ b/src/views/devicePhotoSchedule/components/adddeviceDialog.vue @@ -10,6 +10,7 @@ label-position="left" ref="formInfo" label-width="auto" + :rules="rules" :model="ruleForm" > @@ -74,6 +75,11 @@ export default { data() { return { isShow: false, + rules: { + name: [{ required: true, message: "请输入名称", trigger: "blur" }], + time: [{ required: true, message: "请选择时间", trigger: "blur" }], + span: [{ required: true, message: "请输入间隔", trigger: "blur" }], + }, ruleForm: { name: "", formList: [ @@ -103,6 +109,7 @@ export default { } }); }, + //删除一行 deleteModule(item, index) { console.log(item, index); const itemList = this.ruleForm.formList.indexOf(item); diff --git a/src/views/devicePhotoSchedule/index.vue b/src/views/devicePhotoSchedule/index.vue index 35ffd4d..6a546f3 100644 --- a/src/views/devicePhotoSchedule/index.vue +++ b/src/views/devicePhotoSchedule/index.vue @@ -229,6 +229,9 @@ export default { list-style: none; margin-right: 24px; line-height: 24px; + span { + margin-right: 4px; + } } } } diff --git a/src/views/management/monitoringEquipment/photographicDevice/components/addPhotoDialog.vue b/src/views/management/monitoringEquipment/photographicDevice/components/addPhotoDialog.vue index 543869c..f5b54b5 100644 --- a/src/views/management/monitoringEquipment/photographicDevice/components/addPhotoDialog.vue +++ b/src/views/management/monitoringEquipment/photographicDevice/components/addPhotoDialog.vue @@ -15,13 +15,10 @@ - - - - + @@ -32,7 +29,26 @@ + + + + + + + + + @@ -69,7 +85,11 @@