慕田峪7331174
默认是指error 和succeed 吗?$this->error('xxxxxxx');$this->success('xxxxxxx');123456protected function error($message='',$jumpUrl='',$ajax=false) { $this->dispatchJump($message,0,$jumpUrl,$ajax);}protected function success($message='',$jumpUrl='',$ajax=false) { $this->dispatchJump($message,1,$jumpUrl,$ajax); }查看 dispatchJump 方法发现 TMPL_ACTION_ERRO12$this->display(C('TMPL_ACTION_ERROR'));$this->display(C('TMPL_ACTION_SUCCESS'));在配置文件 config.php 中看到 'TMPL_ACTION_ERROR' => MODULE_PATH.'View/Public/error.html', 'TMPL_ACTION_SUCCESS' => MODULE_PATH.'View/Public/success.html', 修改此文件的的样式或自定义路径模板即可