mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-16 02:27:50 +08:00
87 lines
2.8 KiB
Vue
Executable File
87 lines
2.8 KiB
Vue
Executable File
<template>
|
|
<div style="width: 100%;">
|
|
<div style="height: calc(100vh - 260px);">
|
|
<el-form ref="form" :model="form" label-width="240px" style="width: 50%; margin: 0 auto">
|
|
<el-form-item label="定时拍照" prop="rolloverAlarm">
|
|
<el-checkbox label="通道1" v-model="form.cameraTimer.switchForChannel1"></el-checkbox>
|
|
<el-checkbox label="通道2" v-model="form.cameraTimer.switchForChannel2"></el-checkbox>
|
|
<el-checkbox label="通道3" v-model="form.cameraTimer.switchForChannel3"></el-checkbox>
|
|
<el-checkbox label="通道4" v-model="form.cameraTimer.switchForChannel4"></el-checkbox>
|
|
<el-checkbox label="通道5" v-model="form.cameraTimer.switchForChannel5"></el-checkbox>
|
|
</el-form-item>
|
|
<el-form-item label="定时拍照存储" prop="rolloverAlarm">
|
|
<el-checkbox label="通道1" v-model="form.cameraTimer.storageFlagsForChannel1"></el-checkbox>
|
|
<el-checkbox label="通道2" v-model="form.cameraTimer.storageFlagsForChannel2"></el-checkbox>
|
|
<el-checkbox label="通道3" v-model="form.cameraTimer.storageFlagsForChannel3"></el-checkbox>
|
|
<el-checkbox label="通道4" v-model="form.cameraTimer.storageFlagsForChannel4"></el-checkbox>
|
|
<el-checkbox label="通道5" v-model="form.cameraTimer.storageFlagsForChannel5"></el-checkbox>
|
|
</el-form-item>
|
|
<el-form-item label="定时时间单位" prop="rolloverAlarm">
|
|
<el-radio-group v-model="form.cameraTimer.timeUnit">
|
|
<el-radio :label="true">分</el-radio>
|
|
<el-radio :label="false">秒</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
<el-form-item label="定时时间间隔" prop="timeInterval">
|
|
<el-input v-model="form.cameraTimer.timeInterval" clearable />
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
</div>
|
|
<p style="text-align: right">
|
|
<el-button type="primary" @click="onSubmit">确认</el-button>
|
|
<el-button @click="showDevice">取消</el-button>
|
|
</p>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'communication',
|
|
components: {
|
|
},
|
|
props: {
|
|
phoneNumber: {
|
|
type: String,
|
|
default: null
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
form: {},
|
|
isLoading: false
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
this.initData()
|
|
},
|
|
methods: {
|
|
initData: function() {
|
|
this.isLoading = true
|
|
this.$store.dispatch('jtDevice/queryConfig', this.phoneNumber)
|
|
.then((data) => {
|
|
if (!data.cameraTimer) {
|
|
data.cameraTimer = {}
|
|
}
|
|
this.form = data
|
|
})
|
|
.catch((e) => {
|
|
console.log(e)
|
|
})
|
|
.finally(() => {
|
|
this.isLoading = false
|
|
})
|
|
},
|
|
onSubmit: function() {
|
|
this.$emit('submit', this.form)
|
|
},
|
|
showDevice: function() {
|
|
this.$emit('show-device')
|
|
}
|
|
}
|
|
}
|
|
</script>
|