mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 05:52:43 +08:00
18 lines
406 B
PHP
18 lines
406 B
PHP
<?php
|
|
|
|
|
|
namespace app\admin\controller\api;
|
|
|
|
use think\admin\Controller;
|
|
use think\admin\service\QueueService;
|
|
|
|
class Queue extends Controller
|
|
{
|
|
public function progress()
|
|
{
|
|
$input = $this->_vali(['code.require' => '任务编号不能为空!']);
|
|
$result = QueueService::instance()->progress($input['code']);
|
|
$this->success('获取任务进度成功!', $result);
|
|
}
|
|
|
|
} |