@@ -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;
}
@@ -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 {
@@ -203,6 +203,9 @@ class Oss extends BaseUpload
$this->fileInfo->$key = $filePath . '?x-oss-process=image/resize,h_' . $config[$height] . ',w_' . $config[$width];
@@ -204,6 +204,9 @@ class Qiniu extends BaseUpload
$this->fileInfo->$key = $filePath . '?imageView2/2/w/' . $config[$width] . '/h/' . $config[$height];