evoxwht 4 лет назад
Родитель
Сommit
222fa34638

+ 3 - 0
crmeb/crmeb/services/upload/storage/Cos.php

@@ -203,6 +203,9 @@ class Cos extends BaseUpload
                         $this->fileInfo->$key = $filePath . '?imageMogr2/thumbnail/' . $config[$width] . 'x' . $config[$height];
                         $this->fileInfo->$key = $this->water($this->fileInfo->$key);
                         $data[$v] = $this->fileInfo->$key;
+                    } else {
+                        $this->fileInfo->$key = $this->water($this->fileInfo->$key);
+                        $data[$v] = $this->fileInfo->$key;
                     }
                 }
             }

+ 1 - 0
crmeb/crmeb/services/upload/storage/Local.php

@@ -222,6 +222,7 @@ class Local extends BaseUpload
                 throw new ValidateException('缩略图生成目录生成失败,目录:' . $dir);
             }
             $filePath = $this->water($filePath);
+            $data = ['big' => $filePath, 'mid' => $filePath, 'small' => $filePath];
             $this->fileInfo->filePathWater = $filePath;
             $config = $this->thumbConfig;
             try {

+ 3 - 0
crmeb/crmeb/services/upload/storage/Oss.php

@@ -203,6 +203,9 @@ class Oss extends BaseUpload
                         $this->fileInfo->$key = $filePath . '?x-oss-process=image/resize,h_' . $config[$height] . ',w_' . $config[$width];
                         $this->fileInfo->$key = $this->water($this->fileInfo->$key);
                         $data[$v] = $this->fileInfo->$key;
+                    } else {
+                        $this->fileInfo->$key = $this->water($this->fileInfo->$key);
+                        $data[$v] = $this->fileInfo->$key;
                     }
                 }
             }

+ 3 - 0
crmeb/crmeb/services/upload/storage/Qiniu.php

@@ -204,6 +204,9 @@ class Qiniu extends BaseUpload
                         $this->fileInfo->$key = $filePath . '?imageView2/2/w/' . $config[$width] . '/h/' . $config[$height];
                         $this->fileInfo->$key = $this->water($this->fileInfo->$key);
                         $data[$v] = $this->fileInfo->$key;
+                    } else {
+                        $this->fileInfo->$key = $this->water($this->fileInfo->$key);
+                        $data[$v] = $this->fileInfo->$key;
                     }
                 }
             }