人脸识别与大模型问答
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: {
|
||||||
|
|
||||||
|
|
@ -147,4 +145,4 @@ export default {
|
||||||
.pieTextVioResultCount {
|
.pieTextVioResultCount {
|
||||||
flex: 1
|
flex: 1
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -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: {
|
||||||
|
|
||||||
|
|
@ -50,7 +48,7 @@ export default {
|
||||||
methods: {
|
methods: {
|
||||||
updateScrollHeightWatch() {
|
updateScrollHeightWatch() {
|
||||||
const rowHeight = 2 ;
|
const rowHeight = 2 ;
|
||||||
const tableHeight = this.ServerResult.length * rowHeight;
|
const tableHeight = this.ServerResult.length * rowHeight;
|
||||||
if(this.ServerResult.length<=7){
|
if(this.ServerResult.length<=7){
|
||||||
this.num = 0
|
this.num = 0
|
||||||
}else{
|
}else{
|
||||||
|
|
@ -192,4 +190,4 @@ tbody tr {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -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() {
|
||||||
//在组件销毁前清除定时器
|
//在组件销毁前清除定时器
|
||||||
|
|
@ -130,7 +127,7 @@ export default {
|
||||||
})
|
})
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
@ -141,4 +138,4 @@ export default {
|
||||||
width: 98%;
|
width: 98%;
|
||||||
margin-left: 1%;
|
margin-left: 1%;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue