multi-store/app/api/controller/UploadController.php
luofei 14bc0c1539 Merge branch 'main' of https://gitea.lihaink.cn/mkm/multi-store
# Conflicts:
#	app/api/controller/order/OrderController.php
#	app/api/logic/order/OrderLogic.php
2024-06-04 16:56:43 +08:00

44 lines
898 B
PHP

<?php
namespace app\api\controller;
use app\common\service\UploadService;
use Exception;
use hg\apidoc\annotation as ApiDoc;
#[ApiDoc\NotParse()]
class UploadController extends BaseApiController
{
/**
* @notes 上传图片
* @author 乔峰
* @date 2021/12/29 16:27
*/
public function image()
{
try {
$cid = $this->request->post('cid', 0);
$result = UploadService::image($cid);
return $this->success('上传成功', $result);
} catch (\Exception $e) {
return $this->fail($e->getMessage());
}
}
/**
* @notes 上传视频
* @author 乔峰
* @date 2021/12/29 16:27
*/
public function video()
{
try {
$cid = $this->request->post('cid', 0);
$result = UploadService::video($cid);
return $this->success('上传成功', $result);
} catch (Exception $e) {
return $this->fail($e->getMessage());
}
}
}