Example #1
0
 public function staffList()
 {
     $merchantID = I('mer_id');
     $merchantLogic = new l\MerchantLogic();
     $staffData = $merchantLogic->getStaffList($merchantID);
     $staffList = $staffData['datas'];
     $role = session('user_info.role');
     $this->assign('role', $role);
     $this->assign('staffList', $staffList);
     $this->assign('mer_id', $merchantID);
     $this->display();
 }