17 lines
365 B
PHP
17 lines
365 B
PHP
<?php
|
|
|
|
namespace app\worker\controller;
|
|
|
|
use app\common\controller\WorkerApi;
|
|
|
|
class OrderDispatch extends WorkerApi
|
|
{
|
|
protected $noNeedLogin = [];
|
|
|
|
public function index()
|
|
{
|
|
$res = $this->getOrderDispatchService()->dispatchList($this->user['id'], $this->request->request('page_size', 20));
|
|
$this->success('获取成功', $res);
|
|
}
|
|
}
|