发布v2.6.0版本

This commit is contained in:
雨中磐石
2023-08-22 21:55:04 +08:00
parent f9001fbb46
commit ad77fdd196
17 changed files with 295 additions and 146 deletions

View File

@@ -27,4 +27,62 @@ yy.onshowdata=function(da){
if(soumodeid>0)get('modeid').value = soumodeid;
}
}
myyingsinit();
myyingsinit();
yy.onclickmenu=function(d){
if(d.num=='allty'){
if(this.nowevent!='daib'){
js.msg('msg','请切换到:所有待办');
return false;
}
var len = this.data.length;
if(len==0){
js.msg('msg','没有记录');
return false;
}
js.prompt('批量处理同意','请输入批量处理同意说明(选填)',function(lxbd,msg){
if(lxbd=='yes'){
yy.plliangso(msg);
}
});
return false;
}
return true;
}
yy.plliangso = function(sm){
this.plbool = true;
this.plchusm = sm;
this.cgshu = 0;
this.sbshu = 0;
js.loading('<span id="plchushumm"></span>');
this.plliangsos(0);
}
yy.plliangsos=function(oi){
var len = this.data.length;
$('#plchushumm').html('批量处理中('+len+'/'+(oi+1)+')...');
if(oi>=len){
$('#plchushumm').html('处理完成,成功<font color=green>'+this.cgshu+'</font>条,失败<font color=red>'+this.sbshu+'</font>条');
setTimeout('yy.reload()', 3000);
this.plbool=false;
return;
}
var d = this.data[oi];
var cns= {sm:this.plchusm,zt:1,modenum:d.modenum,mid:d.id};
$.ajax({
url:js.getajaxurl('check','flowopt','flow'),
data:cns,
type:'post',
dataType:'json',
success:function(ret){
if(ret.success){
yy.cgshu++;
}else{
yy.sbshu++;
js.msg('msg','['+d.modename+']'+ret.msg+',不能使用批量来处理,请打开详情去处理。');
}
yy.plliangsos(oi+1);
}
});
}