mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
修改文件上传
Signed-off-by: Anyon <zoujingli@qq.com>
This commit is contained in:
parent
e9a80653da
commit
648f7b7b1c
@ -120,27 +120,6 @@ class Upload extends Controller
|
|||||||
$this->success('获取上传授权参数', array_merge($data, ['id' => $file->id ?? 0]), 404);
|
$this->success('获取上传授权参数', array_merge($data, ['id' => $file->id ?? 0]), 404);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新文件状态
|
|
||||||
* @login true
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function done()
|
|
||||||
{
|
|
||||||
$data = $this->_vali([
|
|
||||||
'id.require' => '编号不能为空!',
|
|
||||||
'hash.require' => '哈希不能为空!',
|
|
||||||
'uuid.value' => AdminService::getUserId(),
|
|
||||||
]);
|
|
||||||
$file = SystemFile::mk()->where($data)->findOrEmpty();
|
|
||||||
if ($file->isEmpty()) $this->error('文件不存在!');
|
|
||||||
if ($file->save(['status' => 2])) {
|
|
||||||
$this->success('更新成功!');
|
|
||||||
} else {
|
|
||||||
$this->error('更新失败!');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 文件上传入口
|
* 文件上传入口
|
||||||
* @login true
|
* @login true
|
||||||
@ -202,6 +181,27 @@ class Upload extends Controller
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新文件状态
|
||||||
|
* @login true
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function done()
|
||||||
|
{
|
||||||
|
$data = $this->_vali([
|
||||||
|
'id.require' => '编号不能为空!',
|
||||||
|
'hash.require' => '哈希不能为空!',
|
||||||
|
'uuid.value' => AdminService::getUserId(),
|
||||||
|
]);
|
||||||
|
$file = SystemFile::mk()->where($data)->findOrEmpty();
|
||||||
|
if ($file->isEmpty()) $this->error('文件不存在!');
|
||||||
|
if ($file->save(['status' => 2])) {
|
||||||
|
$this->success('更新成功!');
|
||||||
|
} else {
|
||||||
|
$this->error('更新失败!');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 文件选择器
|
* 文件选择器
|
||||||
* @login true
|
* @login true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user