| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php if (!defined('THINK_PATH')) exit(); /*a:2:{s:91:"C:\phpStudy\PHPTutorial\WWW\aqm-web\public/../application/admin\view\leader_team\index.html";i:1557992945;s:75:"C:\phpStudy\PHPTutorial\WWW\aqm-web\application\admin\view\layout\home.html";i:1557480234;}*/ ?>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>安全猫官网</title>
- <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
- <!-- Bootstrap 3.3.7 -->
- <link rel="stylesheet" href="<?php echo PLUGINS_SITE_ROOT; ?>/layui/css/layui.css">
- <link rel="stylesheet" href="<?php echo ADMIN_SITE_ROOT; ?>/css/admin.css">
- <link rel="stylesheet" href="<?php echo ADMIN_SITE_ROOT; ?>/iconfont/iconfont.css">
- <script src="<?php echo PLUGINS_SITE_ROOT; ?>/jquery-2.1.4.min.js"></script>
- <script src="<?php echo ADMIN_SITE_ROOT; ?>/js/admin.js"></script>
- <script type="text/javascript" src="<?php echo PLUGINS_SITE_ROOT; ?>/layui/layui.js"></script>
- <script type="text/javascript">
- var BASESITEROOT = "<?php echo BASE_SITE_ROOT; ?>";
- var ADMINSITEROOT = "<?php echo ADMIN_SITE_ROOT; ?>";
- var BASESITEURL = "<?php echo BASE_SITE_URL; ?>";
- var HOMESITEURL = "<?php echo HOME_SITE_URL; ?>";
- var ADMINSITEURL = "<?php echo ADMIN_SITE_URL; ?>";
- layui.use('layer', function () {
- var layer = layui.layer;
- });
- </script>
- </head>
- <body>
-
- <div class="layui-tab layui-tab-card">
- <ul class="layui-tab-title">
- <li>
- <a href="index">管理</a>
- </li>
- <li class="layui-this">
- <a href="add">新增</a>
- </li>
- <div class="tool-btns">
- <a href="javascript:location.reload();" title="刷新当前页面" class="iconfont icon-reload"></a>
- </div>
- </ul>
- <div class="layui-tab-content page-tab-content">
- <table class="layui-table lay-even">
- <colgroup>
- <col width="50">
- <col width="90">
- <col width="60">
- <col width="60">
- <col width="90">
- <col width="100">
- <col width="150">
- <col width="180">
- <col width="100">
- <col width="160">
- <col>
- </colgroup>
- <thead>
- <tr>
- <th>id</th>
- <th>姓名</th>
- <th>性别</th>
- <th>年龄</th>
- <th>职位</th>
- <th>部门</th>
- <th>简介</th>
- <th>修改时间</th>
- <th>图片</th>
- <th><?php echo \think\Lang::get('ds_operation'); ?></th>
- </tr>
- </thead>
- <tbody>
- <?php if(is_array($leaderteam_list) || $leaderteam_list instanceof \think\Collection || $leaderteam_list instanceof \think\Paginator): $kk = 0; $__LIST__ = $leaderteam_list;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$leaderteam): $mod = ($kk % 2 );++$kk;?>
- <tr>
- <td><?php echo $leaderteam['id']; ?></td>
- <td><?php echo $leaderteam['name_ch']; ?></td>
- <td><?php echo $leaderteam['gender']; ?></td>
- <td><?php echo $leaderteam['age']; ?></td>
- <td><?php echo $leaderteam['position']; ?></td>
- <td><?php echo $leaderteam['department']; ?></td>
- <td><?php echo $leaderteam['info']; ?></td>
- <td><?php echo $leaderteam['update_time']; ?></td>
- <td><img src="<?php echo $leaderteam['img_url']; ?>" alt=""></td>
- <td>
- <a href="<?php echo url('edit',['id'=>$leaderteam['id']]); ?>" class="layui-btn layui-btn-xs"><i class="layui-icon layui-icon-edit"></i><?php echo \think\Lang::get('ds_edit'); ?></a>
- <a class="layui-btn layui-btn-danger layui-btn-xs" href="javascript:dsLayerConfirm('<?php echo url('del',['id'=>$leaderteam['id']]); ?>','<?php echo \think\Lang::get('ds_confirm_cancel'); ?>')"><i class="layui-icon layui-icon-delete"></i><?php echo \think\Lang::get('ds_del'); ?></a>
- </td>
- </tr>
- <?php endforeach; endif; else: echo "" ;endif; ?>
- </tbody>
- </table>
- </div>
- </div>
- <script type="text/javascript" src="<?php echo ADMIN_SITE_ROOT; ?>/js/jquery.edit.js"></script>
- </body>
- </html>
|