企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 代码 ``` <!doctype html> <html> <head> <meta charset="utf-8"> <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> </head> <body> <!--中间内容/start--> <table class="table table-hover table-bordered table-list"> <thead> <tr> <th width="16"><input type="checkbox" class="js-check-all" data-direction="x" data-checklist="js-check-x"></th> <th width="50">排序</th> <th width="50">ID</th> <th>链接名称</th> <th>链接地址</th> <th width="50">状态</th> <th width="120">操作</th> </tr> </thead> <tbody> <php>$status=array("1"=>'显示',"0"=>'隐藏');</php> <foreach name="links" item="vo"> <tr> <td><input type="checkbox" class="js-check" data-yid="js-check-y" data-xid="js-check-x" name="ids[]" value="{$vo.id}"></td> <td><input name='list_orders[{$vo.id}]' class="input input-order mr5" type='text' size='3' value='{$vo.list_order}'></td> <td>{$vo.id}</td> <td>{$vo.name}</td> <td><a href="{$vo.url}" target="_blank">{$vo.url}</a></td> <td>{$status[$vo['status']]}</td> <td> <a href="{:url('link/edit',array('id'=>$vo['id']))}">编辑</a> <a href="{:url('link/delete',array('id'=>$vo['id']))}" class="js-ajax-delete">删除</a> </td> </tr> </foreach> </tbody> </table> <!--中间内容/end--> </body> </html> ```