// +---------------------------------------------------------------------- namespace app\controller\front; use \app\model\Form as FormModel; use \app\model\FormAttr; class Form extends Base { /** * @title 表单页 * @return [type] [description] */ public function index(){ if($this->request->isAjax()){ }else{ $id = $this->request->param('id'); $name = $this->request->param('name'); $map = []; $map[] = ['id', '=', $id]; $info = Form::where($map)->find(); $this->data = [ 'info' => $info ]; return $this->fetch(); } } }