人脸识别与大模型问答
This commit is contained in:
parent
341d62f4aa
commit
71dc86f53d
|
|
@ -248,7 +248,6 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
setInterval(this.updateDateTime, 1000);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -544,7 +544,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
setInterval(this.updateDateTime, 1000);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -378,7 +378,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
setInterval(this.updateDateTime, 1000);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
|
|
@ -38,9 +38,7 @@ export default {
|
||||||
|
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.interval_VioPie = setInterval(() => {
|
|
||||||
this.pieVioResultCount();
|
|
||||||
}, 60 * 60 * 1000); // 5分钟 = 5 * 60 * 1000 毫秒
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,6 @@ export default {
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.largeScreenOnlineRefresh = setInterval(this.getOnlineNumLC, 60 * 1000); // 1分钟 = 60 * 1000 毫秒
|
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
clearInterval(this.largeScreenOnlineRefresh);
|
clearInterval(this.largeScreenOnlineRefresh);
|
||||||
|
|
|
||||||
|
|
@ -201,7 +201,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
setInterval(this.updateDateTime, 1000);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -53,9 +53,6 @@ export default {
|
||||||
this.getListSearchData();
|
this.getListSearchData();
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.interval_IDPie = setInterval(() => {
|
|
||||||
this.getListSearchData();
|
|
||||||
}, 1 * 60 * 1000); // 1分钟 = 1 * 60 * 1000 毫秒
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
showId(item) {
|
showId(item) {
|
||||||
|
|
|
||||||
|
|
@ -40,9 +40,7 @@ export default {
|
||||||
|
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.interval_IDPie = setInterval(() => {
|
|
||||||
this.getListWatchData();
|
|
||||||
}, 1 * 60 * 1000); // 5分钟 = 5 * 60 * 1000 毫秒
|
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,9 +39,7 @@ export default {
|
||||||
|
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.interval_IDPie = setInterval(() => {
|
|
||||||
this.pieIDResultCount();
|
|
||||||
}, 1 * 60 * 1000); // 5分钟 = 5 * 60 * 1000 毫秒
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,10 +20,7 @@ export default {
|
||||||
|
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
// 创建定时器
|
|
||||||
this.interval_IDRect = setInterval(() => {
|
|
||||||
this.getRectIDData();
|
|
||||||
}, 1 * 60 * 1000); // 5分钟 = 5 * 60 * 1000 毫秒
|
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
//在组件销毁前清除定时器
|
//在组件销毁前清除定时器
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue