企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 列表搜索 * list_data启用 ~~~ $json['search'] = 1; //>搜索栏状态(1启用0禁用) $json['search_result'] = $I_L->search_result(); //>加载搜索选项 ~~~ * 模块部分(search) ~~~ $input = []; $input[] = ['type'=>'text','name'=>'记录内容','field'=>'content','note'=>'模糊搜索记录内容']; $input[] = ['type'=>'text','name'=>'操作IP','field'=>'ip','note'=>'精确搜索操作IP']; $json['input'] = $I_L->search_t($input); $json['P'] = 'search'; $json['buttom'] = '搜索'; //>模块按钮名称 $json['model_menu_json'] = $model_menu_json; //>模块设置数组 $json['succeed'] = 1; $json['msg'] = '加载完成['.__LINE__.']'; die(json_encode($json)); ~~~ * 参数说明 ~~~ 1.input 搜索字段数组 2.P 逻辑处理标识 3.buttom 每行数据处理按钮数组 4.model_menu_json 隐性传值json 5.succeed 响应状态(1正常0异常) 6.msg 提示信息 ~~~