|
...
|
...
|
@@ -33,7 +33,11 @@ class CustomModuleController extends BaseController |
|
|
|
* @time :2023/12/4 15:43
|
|
|
|
*/
|
|
|
|
public function lists(){
|
|
|
|
ProjectServer::useProject($this->param['project_id']);
|
|
|
|
|
|
|
|
$result = ProjectServer::useProject($this->param['project_id']);
|
|
|
|
if($result === false){
|
|
|
|
$this->response('success');
|
|
|
|
}
|
|
|
|
$customModule = new CustomModule();
|
|
|
|
$this->map['status'] = 0;
|
|
|
|
$lists = $customModule->lists($this->map,$this->page,$this->row,$this->order = ['topping_time','sort','id']);
|
...
|
...
|
|