| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?php if(!defined('HOST'))die('not access');?>
- <script >
- $(document).ready(function(){
- {params}
- var gzdata=[],lobdds=false,type=params.type;if(!type)type='0';
- var a = $('#view_{rand}').bootstable({
- tablename:'kqdist',celleditor:true,fanye:true,params:{'type':type},
- url:publicstore('{mode}','{dir}'),storeafteraction:'kqdistafter',storebeforeaction:'kqdistbefore',
- columns:[{
- text:'针对人员',dataIndex:'recename',sortable:true
- },{
- text:'对应规则',dataIndex:'mid',sortable:true
- },{
- text:'开始日期',dataIndex:'startdt',sortable:true
- },{
- text:'截止日期',dataIndex:'enddt',sortable:true
- },{
- text:'状态',dataIndex:'status',type:'checkbox',editor:true,sortable:true
- },{
- text:'排序号',dataIndex:'sort',editor:true,sortable:true
- },{
- text:'ID',dataIndex:'id'
- }],
- itemclick:function(){
- btn(false);
- },
- beforeload:function(){
- btn(true);
- },
- load:function(d){
- gzdata=d.gzdata;
- if(!lobdds){
- js.setselectdata(get('sekw_{rand}'),gzdata,'id');
- }
- lobdds=true;
- }
- });
-
- function btn(bo){
- get('del_{rand}').disabled = bo;
- get('edit_{rand}').disabled = bo;
- }
-
- var c = {
- del:function(){
- a.del({url:js.getajaxurl('kqsjgzdatadel','{mode}','{dir}',{type:1})});
- },
- clickwin:function(o1,lx){
- var h = $.bootsform({
- title:'分配',height:320,width:400,
- tablename:'kqdist',isedit:lx,submitfields:'recename,receid,mid,startdt,enddt,sort',
- params:{otherfields:'type='+type+''},
- items:[{
- labelText:'针对人员',name:'recename',required:true,type:'changeuser',changeuser:{
- type:'deptusercheck',idname:'receid',title:'选择人员'
- },clearbool:true
- },{
- name:'receid',type:'hidden'
- },{
- labelText:'开始日期',name:'startdt',type:'date',view:'date',required:true
- },{
- labelText:'截止日期',name:'enddt',type:'date',view:'date',required:true
- },{
- labelText:'对应规则',name:'mid',type:'select',valuefields:'id',displayfields:'name',store:gzdata,required:true
- },{
- labelText:'排序号',name:'sort',type:'number',value:'0'
- }],
- success:function(){
- a.reload();
- }
- });
- if(lx==1){
- var d = a.changedata;d.mid=d.mids;
- h.setValues(d);
- }
- },
- search:function(){
- var s=get('key_{rand}').value;
- var gzid=get('sekw_{rand}').value;
- a.setparams({key:s,gzid:gzid},true);
- }
- };
-
- js.initbtn(c);
- });
- </script>
- <div>
- <table width="100%"><tr>
- <td nowrap>
- <button class="btn btn-primary" click="clickwin,0" type="button"><i class="icon-plus"></i> 新增</button>
- </td>
- <td style="padding-left:10px">
- <input class="form-control" style="width:200px" id="key_{rand}" placeholder="针对人员/部门">
- </td>
- <td style="padding-left:10px">
- <select class="form-control" style="width:150px" id="sekw_{rand}" ><option value="0">-对应规则-</option></select>
- </td>
- <td style="padding-left:10px">
- <button class="btn btn-default" click="search" type="button">搜索</button>
- </td>
- <td width="100%"></td>
- <td align="right" 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" id="del_{rand}" click="del" disabled 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>
|