sugangqiang преди 1 година
родител
ревизия
52ca900f40
променени са 1 файла, в които са добавени 9 реда и са изтрити 0 реда
  1. 9 0
      app/enterprise/controller/Talent.php

+ 9 - 0
app/enterprise/controller/Talent.php

@@ -1090,6 +1090,9 @@ class Talent extends EnterpriseController {
                 $headimg = $request->file("photo");
                 $upload = new \app\common\api\UploadApi();
                 $result = $upload->uploadOne($headimg, "image", "talent/photo");
+                if ($result->code == 500) {
+                    throw new ValidateException($result->msg);
+                }
                 $file = imagecreatefromstring(file_get_contents("storage/" . $result->filepath));
                 $width = imagesx($file);
                 $height = imagesy($file);
@@ -1240,6 +1243,9 @@ class Talent extends EnterpriseController {
                 $headimg = $request->file("photo");
                 $upload = new \app\common\api\UploadApi();
                 $result = $upload->uploadOne($headimg, "image", "talent/photo");
+                if ($result->code == 500) {
+                    throw new ValidateException($result->msg);
+                }
                 $file = imagecreatefromstring(file_get_contents("storage/" . $result->filepath));
                 $width = imagesx($file);
                 $height = imagesy($file);
@@ -1381,6 +1387,9 @@ class Talent extends EnterpriseController {
                 $headimg = $request->file("photo");
                 $upload = new \app\common\api\UploadApi();
                 $result = $upload->uploadOne($headimg, "image", "talent/photo");
+                if ($result->code == 500) {
+                    throw new ValidateException($result->msg);
+                }
                 $file = imagecreatefromstring(file_get_contents("storage/" . $result->filepath));
                 $width = imagesx($file);
                 $height = imagesy($file);