'本地服务器存储', 'qiniu' => '七牛云对象存储', 'upyun' => '又拍云USS存储', 'alioss' => '阿里云OSS存储', 'txcos' => '腾讯云COS存储' ]; /** * 系统文件管理 * @auth true * @menu true * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function index() { SystemFile::mQuery()->layTable(function () { $this->title = '系统文件管理'; }, function (QueryHelper $query) { $query->like('name,hash,xext')->dateBetween('create_at'); }); } protected function _page_filter(&$data) { foreach ($data as &$vo) { $vo['ctype'] = $this->types[$vo['type']] ?? $vo['type']; } } }