|
...
|
...
|
@@ -119,11 +119,12 @@ class CustomTemplateController extends BaseController |
|
|
|
*/
|
|
|
|
public function getCustomTemplateLog(BTemplateLog $bTemplateLog){
|
|
|
|
$this->request->validate([
|
|
|
|
'id'=>['required'],
|
|
|
|
'source_id'=>['required'],
|
|
|
|
],[
|
|
|
|
'id.required' => 'ID不能为空',
|
|
|
|
'source_id.required' => 'ID不能为空',
|
|
|
|
]);
|
|
|
|
$this->map['source'] = 9;
|
|
|
|
$this->map['is_custom'] = 0;
|
|
|
|
$lists = $bTemplateLog->lists($this->map,$this->page,$this->row);
|
|
|
|
$this->response('success',Code::SUCCESS,$lists);
|
|
|
|
}
|
...
|
...
|
|