修改rs检查周期

dev
youhong.ai 2023-07-06 10:08:21 +08:00
parent 99ee2d2245
commit d0390d0ee2
2 changed files with 25 additions and 1 deletions

View File

@ -910,3 +910,27 @@ $(() => {
}, 500)
})
/* ******************* youhong.ai 主表选择框自定义渲染为进度条 end ******************* */
/* ******************* youhong.ai 限制考试按钮点击 start ******************* */
$(() => {
let config = {
conditions: {},
tableName: "",
}
function pxlx() {
let datas = ModeList.getTableDatas();
if (datas && datas.length >= 1) {
let obj = datas[0];
let value = obj.lx
console.log(obj)
let url = "/spa/workflow/index_form.jsp#/main/workflow/req?iscreate=1&workflowid=306&field24498=" + value;
window.open(url);
}
}
})
/* ******************* youhong.ai 限制考试按钮点击 end ******************* */

View File

@ -38,7 +38,7 @@ public class RsThreadLocalManager {
* @author youHong.ai ******************************************
*/
private void startMonitor() {
executor.scheduleAtFixedRate(this::checkExpireRs, 0, 2, TimeUnit.MINUTES);
executor.scheduleAtFixedRate(this::checkExpireRs, 0, 10, TimeUnit.MINUTES);
}
/**