|
...
|
...
|
@@ -92,6 +92,12 @@ class ReplaceHtmlController extends BaseController |
|
|
|
'replace_id.required' => '主id不能为空',
|
|
|
|
]);
|
|
|
|
$lists = $replaceHtmlLog->lists($this->map,$this->page,$this->row,$this->order);
|
|
|
|
if(!empty($lists) && !empty($lists['list'])){
|
|
|
|
foreach ($lists['list'] as $k => $v){
|
|
|
|
$v['page_name'] = $logic->getSourceName($v['source'],$v['is_list'],$v['is_custom'],$v['project_id']);
|
|
|
|
$lists['list'][$k] = $v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->response('success',Code::SUCCESS,$lists);
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|