|
...
|
...
|
@@ -25,8 +25,9 @@ class ATemplateModuleController extends BaseController |
|
|
|
* @time :2023/6/28 16:54
|
|
|
|
*/
|
|
|
|
public function lists(ATemplateModuleLogic $ATemplateModuleLogic){
|
|
|
|
if(!isset($this->map['test_model'])){
|
|
|
|
$this->map['test_model'] = 0;
|
|
|
|
if(isset($this->map['type']) && ($this->map['type'] != 99)){
|
|
|
|
$this->map['test_model'] = $this->map['test_model'] ?? 0;
|
|
|
|
$this->map['project_id'] = 0;
|
|
|
|
}
|
|
|
|
$lists = $ATemplateModuleLogic->aTemplateModuleLists($this->map,$this->page,$this->row,$this->order);
|
|
|
|
$this->response('success',Code::SUCCESS,$lists);
|
...
|
...
|
|