拍照时间表

master
fanluyan 2 years ago
parent 590621170a
commit 82dd0d9d25

@ -174,7 +174,14 @@
间隔<b>{{ val.span }}分钟</b> 间隔<b>{{ val.span }}分钟</b>
</p> </p>
</div> </div>
<div class="math">
偏移时间()
<el-input-number
v-model="setNum"
:min="0"
:max="9"
></el-input-number>
</div>
<h3>选择通道</h3> <h3>选择通道</h3>
<div class="checkBox"> <div class="checkBox">
<el-radio-group v-model="checkList" @change="handleChange"> <el-radio-group v-model="checkList" @change="handleChange">
@ -274,6 +281,7 @@ export default {
requestArr: [], //requestid requestArr: [], //requestid
sureloading: false, sureloading: false,
offsetnum: "", offsetnum: "",
setNum: Math.floor(Math.random() * 10),
}; };
}, },
mounted() { mounted() {
@ -325,6 +333,7 @@ export default {
// this.$message.success(""); // this.$message.success("");
// this.shedulenr = res.data.list.join("; ") // this.shedulenr = res.data.list.join("; ")
this.shedulenr = res.data.list; this.shedulenr = res.data.list;
this.offsetnum = res.data.offset;
this.loading = false; this.loading = false;
}) })
.catch((err) => { .catch((err) => {
@ -495,6 +504,7 @@ export default {
{ {
termid: this.deviceListData.zzid, termid: this.deviceListData.zzid,
channelidlist: [this.checkList], channelidlist: [this.checkList],
offset: this.setNum,
}, },
], ],
}) })
@ -732,6 +742,10 @@ export default {
} }
} }
} }
.math {
margin-top: 12px;
margin-bottom: 12px;
}
} }
} }
} }

Loading…
Cancel
Save