作者 张关杰

Merge branch 'develop' of http://47.244.231.31:8099/zhl/globalso-v6 into develop

... ... @@ -297,7 +297,7 @@ class FileController
$cos = new CosService();
return $cos->downloadFile($info['path']);
}else{
$fileUrl = $this->config['root'].'/'.$info['path'];
$fileUrl = $this->config['root'].$info['path'];
if (!is_file($fileUrl)) {
$this->response('指定文件已被系统删除!', Code::USER_ERROR);
}
... ...
... ... @@ -220,7 +220,7 @@ Route::middleware(['bloginauth'])->group(function () {
//文件操作
Route::prefix('files')->group(function () {
Route::post('/upload', [\App\Http\Controllers\File\FileController::class, 'upload'])->name('files_upload');
Route::any('/getFileList', [\App\Http\Controllers\File\FileController::class, 'getFileList'])->name('files_getFileList')
Route::any('/getFileList', [\App\Http\Controllers\File\FileController::class, 'getFileList'])->name('files_getFileList');
});
//精准询盘
Route::prefix('inquiry')->group(function () {
... ...