model = RoleModel::class; } public function uploadImage($file) { // 获取文件后缀 $ext = $file->getClientOriginalExtension(); $key = 'spa/image/'. date('Ymd') . '/' . 'cc_upload_'. Str::random(). uniqid() . '.' . $ext; return [ 'key' => $key, 'url' => 'https://img2.baidu.com/it/u=1629222614,1358629025&fm=253&fmt=auto&app=138&f=JPEG?w=889&h=500&a='. rand(1111111, 9999999) ]; return QiniuStorageService::getInstance()->uploadImage($file, $key); } public function uploadVideo($file) { // 获取文件后缀 $ext = $file->getClientOriginalExtension(); $key = 'spa/video/'. date('Ymd') . '/' . 'cc_upload_'. Str::random(). uniqid() . '.' . $ext; return [ 'key' => $key, 'url' => 'http://d-jy.nailaoyun.cn/storage/video//20250410/ca1bbbb3af5853c7fc4ef23b8a918922.mp4?a='. rand(1111111, 9999999) ]; return QiniuStorageService::getInstance()->uploadVideo($file, $key); } }