ZxcZxc123 1 year ago
parent
commit
1c52c6917d
2 changed files with 6 additions and 22 deletions
  1. 5 21
      app/system/controller/Upload.php
  2. 1 1
      library/utils/Qiniu.php

+ 5 - 21
app/system/controller/Upload.php

@@ -29,28 +29,12 @@ class Upload extends AuthController{
         if (empty($file)) {
         if (empty($file)) {
             return app('json')->fail("未上传文件");
             return app('json')->fail("未上传文件");
         }
         }
+        $files = $request->file('files');
+        if (empty($files)) {
+            return app('json')->fail("未上传文件");
+        }
         $code = $request->post("code","");
         $code = $request->post("code","");
-        //上传到本地
+        $codes = $request->post("codes","");
-//        if($code=="invite"){
-//            $sysData = (new SysModel())->where("id",1)->find();
-//            $size = $file->getSize();
-//            if(!empty($size) && $size>2*1024*1024){
-//                return app('json')->fail("图片不能超过{$uploadConfig["image"]["size"]}M");
-//            }
-//
-//            $ext = $file->extension();
-//            if(!in_array($ext, ["jpg","jpeg","png"])){
-//                return app('json')->fail("图片类型错误");
-//            }
-//            $upPath = \think\facade\Filesystem::disk('resource')->putFile( $code, $file);
-//            if(!$upPath){
-//                return app('json')->fail("图片上传失败01");
-//            }
-//            $savePath = $sysData['system_url'].'/resource/' . $upPath;
-//            $imgUrl = str_replace("\\", "/", $savePath);
-//            return app('json')->success(['img'=>$imgUrl]);
-//        }
-        
         $rootTmp    = config('filesystem.disks.local.root') . '/' . \think\facade\Filesystem::putFile('tmp', $file);
         $rootTmp    = config('filesystem.disks.local.root') . '/' . \think\facade\Filesystem::putFile('tmp', $file);
         $image_size = @getimagesize($rootTmp);
         $image_size = @getimagesize($rootTmp);
         if ($image_size[0] > 1000) {
         if ($image_size[0] > 1000) {

+ 1 - 1
library/utils/Qiniu.php

@@ -205,7 +205,7 @@ class Qiniu {
      * @param type $ext 限制后缀名
      * @param type $ext 限制后缀名
      * @return boolean
      * @return boolean
      */
      */
-    public function updateFile($path,$name,$files,$ext = array('jpg','png','gif','webp')) {
+    public function updateFile($path,$name,$files,$ext = array('jpg','png','gif','webp','mp3','mp4')) {
         if (empty($files)) {
         if (empty($files)) {
             $this->error = '没有上传的文件!';
             $this->error = '没有上传的文件!';
             return false;
             return false;