作者 lyh

gx

@@ -45,8 +45,9 @@ class FileManageController extends BaseController @@ -45,8 +45,9 @@ class FileManageController extends BaseController
45 $lists = $fileManage->lists($this->map, $this->page, $this->row); 45 $lists = $fileManage->lists($this->map, $this->page, $this->row);
46 if(!empty($lists)){ 46 if(!empty($lists)){
47 foreach ($lists as $k => $v){ 47 foreach ($lists as $k => $v){
  48 + @file_put_contents(storage_path('logs/lyh_error.log'), var_export($v, true) . PHP_EOL, FILE_APPEND);
48 $v = (array)$v; 49 $v = (array)$v;
49 - $v['download_url'] = url('b/file_manager_downLoad?hash='.$v['hash']); 50 +// $v['download_url'] = url('b/file_manager_downLoad?hash='.$v['hash']);
50 $lists[$k] = $v; 51 $lists[$k] = $v;
51 } 52 }
52 } 53 }