|
...
|
...
|
@@ -46,7 +46,7 @@ class FileManageController extends BaseController |
|
|
|
$this->request['name'] && $this->map['name'] = ['like','%'.$this->request['name'].'%'];
|
|
|
|
$lists = $fileManage->lists($this->map, $this->page, $this->row);
|
|
|
|
@file_put_contents(storage_path('logs/lyh_error.log'), var_export($lists, true) . PHP_EOL, FILE_APPEND);
|
|
|
|
if(!empty($lists) && !empty($lists)){
|
|
|
|
if(!empty($lists) && !empty($lists['list'])){
|
|
|
|
foreach ($lists['list'] as $k => $v){
|
|
|
|
$v['download_url'] = url('b/file_manager_downLoad?path='.$v['path']);
|
|
|
|
$lists['list'][$k] = $v;
|
...
|
...
|
|