信呼OA版本v2.3.8
This commit is contained in:
113
webmain/main/view/rock_view.php
Normal file
113
webmain/main/view/rock_view.php
Normal file
@@ -0,0 +1,113 @@
|
||||
<?php if(!defined('HOST'))die('not access');?>
|
||||
<script >
|
||||
$(document).ready(function(){
|
||||
var bools=false,mid=0;
|
||||
var a = $('#view_{rand}').bootstable({
|
||||
tablename:'flow_extent',celleditor:true,fanye:true,sort:'id',dir:'desc',
|
||||
url:publicstore('{mode}','{dir}'),storeafteraction:'afterstroesss',
|
||||
columns:[{
|
||||
text:'针对对象',dataIndex:'recename'
|
||||
},{
|
||||
text:'模块',dataIndex:'modename',sortable:true
|
||||
},{
|
||||
text:'类型',dataIndex:'type',sortable:true,renderer:function(oi){
|
||||
var as=['可查看','可添加','可编辑','可删除','可导入','可导出','禁看字段','流程监控'];
|
||||
return ''+as[oi]+'';
|
||||
}
|
||||
},{
|
||||
text:'条件',dataIndex:'whereid'
|
||||
},{
|
||||
text:'并条件',dataIndex:'wherestr',align:'left',renderer:function(v){
|
||||
return jm.base64decode(v);
|
||||
}
|
||||
},{
|
||||
text:'说明',dataIndex:'explain',editor:true
|
||||
},{
|
||||
text:'状态',dataIndex:'status',type:'checkbox',editor:true,sortable:true
|
||||
},{
|
||||
text:'ID',dataIndex:'id'
|
||||
}],
|
||||
itemclick:function(d){
|
||||
mid=d.modeid;
|
||||
btn(false, d);
|
||||
},
|
||||
beforeload:function(){
|
||||
btn(true);
|
||||
},
|
||||
load:function(a){
|
||||
if(!bools){
|
||||
var s = '<option value="0">-选择模块-</option>',len=a.modearr.length,i,csd,types='';
|
||||
for(i=0;i<len;i++){
|
||||
csd = a.modearr[i];
|
||||
if(types!=csd.type){
|
||||
if(types!='')s+='</optgroup>';
|
||||
s+='<optgroup label="'+csd.type+'">';
|
||||
}
|
||||
s+='<option value="'+csd.id+'">'+csd.name+'</option>';
|
||||
types = csd.type;
|
||||
}
|
||||
$('#mode_{rand}').html(s);
|
||||
}
|
||||
bools=true;
|
||||
}
|
||||
});
|
||||
function btn(bo, d){
|
||||
get('edit_{rand}').disabled = bo;
|
||||
get('del_{rand}').disabled = bo;
|
||||
}
|
||||
var c = {
|
||||
del:function(){
|
||||
a.del();
|
||||
},
|
||||
reload:function(){
|
||||
a.reload();
|
||||
},
|
||||
clickwin:function(o1,lx){
|
||||
if(mid==0){
|
||||
js.msg('msg','请先选择模块');
|
||||
return;
|
||||
}
|
||||
var icon='plus',name='新增流程模块权限',id=0;
|
||||
if(lx==1){
|
||||
id = a.changeid;
|
||||
icon='edit';
|
||||
name='编辑流程模块权限';
|
||||
};
|
||||
guanflowviewlist = a;
|
||||
addtabs({num:'flowview'+id+'',url:'main,view,edit,id='+id+',mid='+mid+'',icons:icon,name:name});
|
||||
},
|
||||
changemode:function(){
|
||||
var v=this.value;
|
||||
mid=v;
|
||||
a.search('and modeid='+v+'');
|
||||
}
|
||||
};
|
||||
js.initbtn(c);
|
||||
$('#mode_{rand}').change(c.changemode);
|
||||
});
|
||||
</script>
|
||||
|
||||
<div>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<button class="btn btn-warning" click="clickwin,0" type="button"><i class="icon-plus"></i> 新增</button>
|
||||
</td>
|
||||
<td style="padding-left:10px">
|
||||
<select style="width:230px" id="mode_{rand}" class="form-control" ><option value="0">-选择模块-</option></select>
|
||||
</td>
|
||||
<td width="90%">
|
||||
|
||||
</td>
|
||||
<td nowrap>
|
||||
|
||||
<button class="btn btn-info" id="edit_{rand}" click="clickwin,1" disabled type="button"><i class="icon-edit"></i> 编辑 </button>
|
||||
<button class="btn btn-danger" click="del" disabled id="del_{rand}" type="button"><i class="icon-trash"></i> 删除</button>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div class="blank10"></div>
|
||||
<div id="view_{rand}"></div>
|
||||
<div class="tishi">提示:多条将是或者的关系<div>
|
||||
Reference in New Issue
Block a user