load->library('session'); $this->load->_model('Model_power','power'); $this->load->_model('Model_user','user'); $this->load->_model('Model_nav','nav'); $this->load->_model('Model_fullorderexcel','fullorderexcel'); $this->load->_model('Model_fullorderexcelclassid','fullorderexcelclassid'); } //定义方法的调用规则 获取URI第二段值 public function _remap($arg,$arg_array) { if($arg == 'add')//添加 { $this->_add(); } else if($arg == 'edit')//修改 { $this->_edit($arg_array); } else if($arg == 'del')//修改 { $this->_del(); } else if($arg == 'rows')//获取数据 { $this->_rows(); } else { $this->_index(); } } //管理 public function _index() { $user = $this->user->get_api($_SESSION['api']); $post = $this->input->post(NULL, TRUE); if(isset($post['page'])) { $page = $this->input->post('page',true); $perpage = $this->input->post('perpage',true); $powername = $this->input->post('powername',true); $where = "own='".$user['own']."'"; //数据排序 $order_str = "id asc"; if(empty($page)) { $start = 0; $perpage = 1; } else { $start = ($page - 1)*$perpage; } if($powername) { $where .= "and powername like '%$powername%'"; } //取得信息列表 $info_list = $this->power->find_all($where,'id,powername,title,powertext,exceltext',$order_str,$start,$perpage); $total = $this->power->find_count($where); $pagenum = ceil($total/$perpage); $over = $total-($start+$perpage); $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list)); echo json_encode($rows);exit; } $this->_Template('power',$this->data); } //添加 public function _add() { $user = $this->user->get_api($_SESSION['api']); $post = $this->input->post(NULL, TRUE); if(isset($post['powername'])) { $post['powername'] = $this->input->post('powername',true); //$post['excelshop'] = $this->input->post('excelshop',true); $powertext= $this->input->post('powertext',true); $powerid = $this->input->post('powerid',true); $post['powertext'] = "|".$powertext; $post['powerid'] = "|".$powerid; $post['own'] = $user['own']; if($this->power->insert($post)) { echo json_encode(array('msg'=>'添加成功','success'=>true));exit; } else { echo json_encode(array('msg'=>'添加失败,请重试','success'=>false));exit; } } $this->_Template('power_add',$this->data); } //修改 public function _edit($arg_array) { $post = $this->input->post(NULL, TRUE); if(isset($post['id'])) { $id = $this->input->post('id',true); $post['powername'] = $this->input->post('powername',true); $post['excelshop'] = $this->input->post('excelshop',true); $powertext= $this->input->post('powertext',true); $powerid = $this->input->post('powerid',true); $post['powertext'] = "|".ltrim($powertext,'|'); $post['powerid'] = "|".ltrim($powerid,'|'); $exceltext= $this->input->post('exceltext',true); $excelid = $this->input->post('excelid',true); $post['exceltext'] = "|".ltrim($exceltext,'|'); $post['excelid'] = "|".ltrim($excelid,'|'); if($this->power->save($post,$id)) { echo json_encode(array('msg'=>'修改成功','success'=>true));exit; } else { echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit; } } $arg_array = $arg_array[0]; $power = $this->power->read($arg_array); $this->data['power'] = $power; $this->_Template('power_edit',$this->data); } //删除 public function _del() { $post = $this->input->post(NULL, TRUE); if(isset($post['s'])) { $id_arr = $this->input->post('s'); $id_arr = explode(',',$id_arr); if(!$id_arr) { echo json_encode(array('msg'=>'参数错误!','success'=>false));exit; } //循环删除记录 foreach ($id_arr as $v) { $this->power->remove($v); } echo json_encode(array('del'=>$id_arr,'msg'=>'删除记录成功!','success'=>true)); } } //获取数据 public function _rows() { $user = $this->user->get_api($_SESSION['api']); $post = $this->input->post(NULL, TRUE); if(isset($post['rows'])) { $rows = $this->input->post('rows',true); $dataa = $this->nav->find_all('type=1 and '.$user['own'].'=1','*','sort asc'); $datab = $this->nav->find_all('type=2 and '.$user['own'].'=1','*','son asc'); $datac = $this->nav->find_all('type=3 and '.$user['own'].'=1','*','sort asc'); $an = array(); foreach ($dataa as $key=>$value) { foreach ($datab as $ke=>$va) { if($va['class'] == $value['id']) { foreach ($datac as $k=>$v) { if($v['class'] == $va['id']) { $va['cn'][]=$v; } } $value['bn'][]=$va; } }//循环出二级导航航 $an[] = $value; } $power = array(); if($rows != "null") { $power = $this->power->read($rows);//找出次ID的权限内容 if($power['powerid']) { $power = explode('|',trim($power['powerid'],'|'));//数组化权限内容 } else { $power = array(); } } echo json_encode(array('msg'=>($an),'power'=>($power),'success'=>true)); } else if(isset($post['excel'])) { $excel = $this->input->post('excel',true); $rows = $excel; $dataa = $this->fullorderexcelclassid->find_all('1=1','*','id asc'); $datab = $this->fullorderexcel->find_all('1=1','*','id asc'); $an = array(); foreach ($dataa as $key=>$value) { foreach ($datab as $ke=>$va) { if($va['type'] == $value['id']) { $value['bn'][]=$va; } }//循环出二级导航航 $an[] = $value; } $power = array(); if($rows != "null") { $power = $this->power->read($rows);//找出次ID的权限内容 if($power['excelid']) { $power = explode('|',trim($power['excelid'],'|'));//数组化权限内容 } else { $power = array(); } } echo json_encode(array('msg'=>($an),'power'=>($power),'success'=>true)); } } }