From c084ff1fb17b500eb3627b45fa7b839ca5bbb03f Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 19 Jul 2022 16:55:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=98=E5=82=A8=E7=B1=BB=E5=9E=8B=E4=BB=8E?= =?UTF-8?q?=E5=AD=98=E5=82=A8=E6=9C=8D=E5=8A=A1=E8=AF=BB=E5=8F=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/controller/File.php | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/app/admin/controller/File.php b/app/admin/controller/File.php index 3684c7606..7b0e019f2 100644 --- a/app/admin/controller/File.php +++ b/app/admin/controller/File.php @@ -20,6 +20,7 @@ use think\admin\Controller; use think\admin\helper\QueryHelper; use think\admin\model\SystemFile; use think\admin\service\AdminService; +use think\admin\Storage; /** * 系统文件管理 @@ -28,18 +29,6 @@ use think\admin\service\AdminService; */ class File extends Controller { - /** - * 存储方式处理 - * @var string[] - */ - protected $types = [ - 'local' => '本地服务器存储', - 'qiniu' => '七牛云对象存储', - 'upyun' => '又拍云USS存储', - 'alioss' => '阿里云OSS存储', - 'txcos' => '腾讯云COS存储' - ]; - /** * 系统文件管理 * @auth true @@ -50,6 +39,7 @@ class File extends Controller */ public function index() { + $this->types = Storage::types(); SystemFile::mQuery()->layTable(function () { $this->title = '系统文件管理'; $this->xexts = SystemFile::mk()->distinct()->column('xext');