public function showOperatorList($pageNo = 1, $pageSize = 10)
 {
     $instId = session('instId');
     $start = ($pageNo - 1) * $pageSize;
     $operator = new \Home\Model\OperatorModel();
     $operatorList = $operator->showOperators($instId, $start, $pageSize);
     $totals = $operator->total($instId);
     $total = $totals[0]['total'];
     $this->assign('operatorList', $operatorList);
     $this->assign('total', $total);
     $this->assign('pageNo', $pageNo);
     $this->assign('pageSize', $pageSize);
     $this->assign("howMangPages", ceil($total / $pageSize - 1) + 1);
     $this->assign('num', 1);
     //记录编号
     layout(true);
     $this->display();
 }