Browse Source

增加自动标注功能。

Signed-off-by: zouap <zouap@pcl.ac.cn>
tags/v1.21.12.1
zouap 4 years ago
parent
commit
84b2cebd99
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      public/self/labelTaskPage.js

+ 2
- 2
public/self/labelTaskPage.js View File

@@ -596,13 +596,13 @@ function taskNeedIntervalToRefresh(){
}
if(isNeedToRefresh){
refreshCount = 0;
var tmpTimeId = self.setInterval("clockRefresh('" + maxtime +"')",5000);//5秒刷新
var tmpTimeId = self.setInterval("clockRefresh('" + refreshMaxTime +"')",5000);//5秒刷新
refreshTimeId.push(tmpTimeId);
console.log("开始刷新。tmpTimeId=" + tmpTimeId);
}

}
function clockRefresh(maxTime){
function clockRefresh(refreshMaxTime){
refreshCount = refreshCount + 1;
if(refreshCount > refreshMaxTime){
for(var i =0; i < refreshTimeId.length ;i++){


Loading…
Cancel
Save