系统发生错误

:(

模板不存在[./themes/yichi/./Channel_.php]

错误位置

D:\website\pack_201812120_58530\wwwroot\Appwork\Lib\Core\View.class.php  LINE: 115

103      * 解析和获取模板内容 用于输出
104      * @access public
105      * @param string $templateFile 模板文件名
106      * @param string $content 模板输出内容
107      * @param string $prefix 模板缓存前缀
108      * @return string
109      */
110     public function fetch($templateFile='',$content='',$prefix='') {
111         if(empty($content)) {
112             $templateFile   =   $this->parseTemplate($templateFile);
113             // 模板文件不存在直接返回
114             if(!is_file($templateFile)) 
115                 throw_exception(L('_TEMPLATE_NOT_EXIST_').'['.$templateFile.']');
116         }
117         // 页面缓存
118         ob_start();
119         ob_implicit_flush(0);
120         if('php' == strtolower(C('TMPL_ENGINE_TYPE'))) { // 使用PHP原生模板
121             // 模板阵列变量分解成为独立变量
122             extract($this->tVar, EXTR_OVERWRITE);
123             // 直接载入PHP模板
124             empty($content)?include $templateFile:eval('?>'.$content);
125         }else{
126             // 视图解析标签
127             $params = array('var'=>$this->tVar,'file'=>$templateFile,'content'=>$content,'prefix'=>$prefix);