多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
* 提取列表数据 | 属性名 | 说明 | | --- | --- | | 0 | [ 必填 ] 字段参 | | - 0 table | [ 必填 ] 表名 | | - 1 where | [ 必填 ] 判断语句数组 | | - 2 order | [ 必填 ] 自定义排序语句 ( 如 : abc desc ) | | - 3 total | [ 必填 ] 数据总数 | | 1 | [ 必填 ] 配置参 | | - 0 classify_arr | [ 必填 ] 分组选项数组 | | - 1 PIN | [ 必填 ] 当前页码 | | - 2 paging_total | [ 必填 ] 总页数 | | - 3 paging_every | [ 必填 ] 每页条数 | | - 4 list_order | [ 必填 ] 用户操作排序字段数组 | | - 5 search_result | [ 必填 ] 用户操作搜索语句数组 | ~~~ empty($I_U->power([sbh_per.'_all'])) ? $U_P->back($json,'尚未授权['.__LINE__.']') : NULL; //>传值处理(通过clickOpt函数传递过来的值) if(!empty($ref)){ $ref = json_decode($ref,1); extract($ref); } $where = []; $order = '`id` desc'; $obj = []; $obj[] = [sbh_table,$where,$order,$total]; $obj[] = [$classify_arr,$PIN,$paging_total,$paging_every,$list_order]; $arr = $iframe->data($json,$obj); $json['total'] = $total; ~~~