mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
19 lines
407 B
PHP
19 lines
407 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);
|
|
}
|
|
|
|
} |