Jonlin il y a 6 ans
Parent
commit
fc41d144bd

+ 2 - 0
application/admin/controller/LeaderTeam.php

@@ -55,6 +55,7 @@ class LeaderTeam extends AdminControl
                 'gender' => input('post.gender'),
                 'age' => input('post.age'),
                 'position' => input('post.position'),
+                'department' => input('post.department'),
                 'info' => input('post.info'),
                 'add_time' => time(),
                 'update_time' => time(),
@@ -102,6 +103,7 @@ class LeaderTeam extends AdminControl
                 'gender' => input('post.gender'),
                 'age' => input('post.age'),
                 'position' => input('post.position'),
+                'department' => input('post.department'),
                 'info' => input('post.info'),
                 'update_time' => time(),
             );

+ 3 - 0
application/admin/controller/Recruit.php

@@ -54,6 +54,7 @@ class Recruit extends AdminControl
                     'name' => input('post.name'),
                     'sort' => input('post.sort'),
                     'detail' => input('post.detail'),
+                    'address' => input('post.address'),
                     'add_time' => time(),
                     'update_time' => time(),
                     'status' => '0',
@@ -63,6 +64,7 @@ class Recruit extends AdminControl
                     'name' => input('post.name'),
                     'sort' => input('post.sort'),
                     'detail' => input('post.detail'),
+                    'address' => input('post.address'),
                     'add_time' => time(),
                     'update_time' => time(),
                     'status' => input('post.status'),
@@ -100,6 +102,7 @@ class Recruit extends AdminControl
                 'name' => input('post.name'),
                 'sort' => input('post.sort'),
                 'detail' => input('post.detail'),
+                'address' => input('post.address'),
                 'update_time' => time(),
                 'status' => input('post.status'),
             );

+ 6 - 0
application/admin/view/leader_team/form.html

@@ -47,6 +47,12 @@ d{extend name="layout:home" /}
                                     <input type="text" class="layui-input field-name" name="position" id="position" value="{$leaderteam.position|default=''}" lay-verify="position" autocomplete="off" placeholder="{$Think.lang.ds_please_enter}职位" required />
                                 </div>
                             </div>
+                            <div class="layui-form-item">
+                                <label class="layui-form-label">部门</label>
+                                <div class="layui-input-inline">
+                                    <input type="text" class="layui-input field-name" name="department" id="department" value="{$leaderteam.department|default=''}" lay-verify="department" autocomplete="off" placeholder="{$Think.lang.ds_please_enter}部门" required />
+                                </div>
+                            </div>
                             <div class="layui-form-item">
                                 <label class="layui-form-label">简介</label>
                                 <div class="layui-input-inline">

+ 6 - 3
application/admin/view/leader_team/index.html

@@ -16,11 +16,12 @@
         <table class="layui-table lay-even">
             <colgroup>
                 <col width="50">
+                <col width="90">
                 <col width="60">
                 <col width="60">
-                <col width="60">
-                <col width="60">
-                <col width="200">
+                <col width="90">
+                <col width="100">
+                <col width="150">
                 <col width="180">
                 <col width="100">
                 <col width="160">
@@ -33,6 +34,7 @@
                 <th>性别</th>
                 <th>年龄</th>
                 <th>职位</th>
+                <th>部门</th>
                 <th>简介</th>
                 <th>修改时间</th>
                 <th>图片</th>
@@ -47,6 +49,7 @@
                 <td>{$leaderteam.gender}</td>
                 <td>{$leaderteam.age}</td>
                 <td>{$leaderteam.position}</td>
+                <td>{$leaderteam.department}</td>
                 <td>{$leaderteam.info}</td>
                 <td>{$leaderteam.update_time}</td>
                 <td><img src="{$leaderteam.img_url}" alt=""></td>

+ 6 - 0
application/admin/view/recruit/form.html

@@ -23,6 +23,12 @@ d{extend name="layout:home" /}
                                     <input type="text" class="layui-input field-name" name="detail" id="detail" value="{$recruit.detail|default=''}" lay-verify="detail" autocomplete="off" placeholder="{$Think.lang.ds_please_enter}详情" required />
                                 </div>
                             </div>
+                            <div class="layui-form-item">
+                                <label class="layui-form-label">地址</label>
+                                <div class="layui-input-inline">
+                                    <input type="text" class="layui-input field-name" name="address" id="address" value="{$recruit.address|default=''}" lay-verify="address" autocomplete="off" placeholder="{$Think.lang.ds_please_enter}地址" required />
+                                </div>
+                            </div>
                             <div class="layui-form-item">
                                 <label class="layui-form-label">排序</label>
                                 <div class="layui-input-inline">

+ 6 - 3
application/admin/view/recruit/index.html

@@ -15,10 +15,11 @@
     <div class="layui-tab-content page-tab-content">
         <table class="layui-table lay-even">
             <colgroup>
-                <col width="100">
+                <col width="90">
+                <col width="150">
                 <col width="200">
-                <col width="200">
-                <col width="100">
+                <col width="150">
+                <col width="90">
                 <col width="200">
                 <col width="80">
                 <col width="240">
@@ -29,6 +30,7 @@
                 <th>id</th>
                 <th>招聘岗位</th>
                 <th>详情</th>
+                <th>地址</th>
                 <th>排序</th>
                 <th>修改时间</th>
                 <th>状态</th>
@@ -41,6 +43,7 @@
                 <td>{$recruit.id}</td>
                 <td>{$recruit.name}</td>
                 <td>{$recruit.detail}</td>
+                <td>{$recruit.address}</td>
                 <td>{$recruit.sort}</td>
                 <td>{$recruit.update_time}</td>
                 <td>{if $recruit.status==1}发布{else}撤销{/if}</td>

+ 2 - 2
application/common/model/DevelopmentCase.php

@@ -24,9 +24,9 @@ class DevelopmentCase extends Model
     public function getDevelopmentCase($condition, $field = '*', $page = 0, $order = 'sort', $limit = '')
     {
         if ($limit) {
-            return db('case')->where($condition)->field($field)->order($order)->page($page)->limit($limit)->select();
+            return db('case')->where($condition)->field($field)->order($order,'desc')->page($page)->limit($limit)->select();
         } else {
-            $res = db('case')->where($condition)->field($field)->order($order)->paginate($page);
+            $res = db('case')->where($condition)->field($field)->order($order,'desc')->paginate($page);
             $this->page_info = $res;
             return $res->items();
         }

+ 2 - 2
application/common/model/DevelopmentServer.php

@@ -24,9 +24,9 @@ class DevelopmentServer extends Model
     public function getDevelopmentServer($condition, $field = '*', $page = 0, $order = 'sort', $limit = '')
     {
         if ($limit) {
-            return db('development_server')->where($condition)->field($field)->order($order)->page($page)->limit($limit)->select();
+            return db('development_server')->where($condition)->field($field)->order($order,'desc')->page($page)->limit($limit)->select();
         } else {
-            $res = db('development_server')->where($condition)->field($field)->order($order)->paginate($page);
+            $res = db('development_server')->where($condition)->field($field)->order($order,'desc')->paginate($page);
             $this->page_info = $res;
             return $res->items();
         }

+ 2 - 2
application/common/model/HeadNav.php

@@ -24,9 +24,9 @@ class HeadNav extends Model
     public function getHeadNav($condition, $field = '*', $page = 0, $order = 'nav_sort', $limit = '')
     {
         if ($limit) {
-            return db('head_nav')->where($condition)->field($field)->order($order)->page($page)->limit($limit)->select();
+            return db('head_nav')->where($condition)->field($field)->order($order,'desc')->page($page)->limit($limit)->select();
         } else {
-            $res = db('head_nav')->where($condition)->field($field)->order($order)->paginate($page);
+            $res = db('head_nav')->where($condition)->field($field)->order($order,'desc')->paginate($page);
             $this->page_info = $res;
             return $res->items();
         }

+ 2 - 2
application/common/model/LeaderTeam.php

@@ -24,9 +24,9 @@ class LeaderTeam extends Model
     public function getLeaderTeam($condition, $field = '*', $page = 0, $order = 'add_time', $limit = '')
     {
         if ($limit) {
-            return db('leader_team')->where($condition)->field($field)->order($order)->page($page)->limit($limit)->select();
+            return db('leader_team')->where($condition)->field($field)->order($order,'add_time')->page($page)->limit($limit)->select();
         } else {
-            $res = db('leader_team')->where($condition)->field($field)->order($order)->paginate($page);
+            $res = db('leader_team')->where($condition)->field($field)->order($order,'add_time')->paginate($page);
             $this->page_info = $res;
             return $res->items();
         }

+ 2 - 2
application/common/model/OurTeam.php

@@ -24,9 +24,9 @@ class OurTeam extends Model
     public function getOurTeam($condition, $field = '*', $page = 0, $order = 'add_time', $limit = '')
     {
         if ($limit) {
-            return db('our_team')->where($condition)->field($field)->order($order)->page($page)->limit($limit)->select();
+            return db('our_team')->where($condition)->field($field)->order($order,'add_time')->page($page)->limit($limit)->select();
         } else {
-            $res = db('our_team')->where($condition)->field($field)->order($order)->paginate($page);
+            $res = db('our_team')->where($condition)->field($field)->order($order,'add_time')->paginate($page);
             $this->page_info = $res;
             return $res->items();
         }

+ 2 - 2
application/common/model/Recruit.php

@@ -24,9 +24,9 @@ class Recruit extends Model
     public function getRecruit($condition, $field = '*', $page = 0, $order = 'sort', $limit = '')
     {
         if ($limit) {
-            return db('recruit')->where($condition)->field($field)->order($order)->page($page)->limit($limit)->select();
+            return db('recruit')->where($condition)->field($field)->order($order,'desc')->page($page)->limit($limit)->select();
         } else {
-            $res = db('recruit')->where($condition)->field($field)->order($order)->paginate($page);
+            $res = db('recruit')->where($condition)->field($field)->order($order,'desc')->paginate($page);
             $this->page_info = $res;
             return $res->items();
         }

+ 7 - 1
runtime/temp/08bccc5111086c13d37dc7702e302881.php

@@ -1,4 +1,4 @@
-<?php if (!defined('THINK_PATH')) exit(); /*a:3:{s:86:"C:\phpStudy\PHPTutorial\WWW\aqm-web\public/../application/admin\view\recruit\form.html";i:1557973995;s:75:"C:\phpStudy\PHPTutorial\WWW\aqm-web\application\admin\view\layout\home.html";i:1557480234;s:82:"C:\phpStudy\PHPTutorial\WWW\aqm-web\application\admin\view\layout\admin_items.html";i:1557480234;}*/ ?>
+<?php if (!defined('THINK_PATH')) exit(); /*a:3:{s:86:"C:\phpStudy\PHPTutorial\WWW\aqm-web\public/../application/admin\view\recruit\form.html";i:1557993100;s:75:"C:\phpStudy\PHPTutorial\WWW\aqm-web\application\admin\view\layout\home.html";i:1557480234;s:82:"C:\phpStudy\PHPTutorial\WWW\aqm-web\application\admin\view\layout\admin_items.html";i:1557480234;}*/ ?>
 <!DOCTYPE html>
 <html>
     <head>
@@ -60,6 +60,12 @@
                                     <input type="text" class="layui-input field-name" name="detail" id="detail" value="<?php echo (isset($recruit['detail']) && ($recruit['detail'] !== '')?$recruit['detail']:''); ?>" lay-verify="detail" autocomplete="off" placeholder="<?php echo \think\Lang::get('ds_please_enter'); ?>详情" required />
                                 </div>
                             </div>
+                            <div class="layui-form-item">
+                                <label class="layui-form-label">地址</label>
+                                <div class="layui-input-inline">
+                                    <input type="text" class="layui-input field-name" name="address" id="address" value="<?php echo (isset($recruit['address']) && ($recruit['address'] !== '')?$recruit['address']:''); ?>" lay-verify="address" autocomplete="off" placeholder="<?php echo \think\Lang::get('ds_please_enter'); ?>地址" required />
+                                </div>
+                            </div>
                             <div class="layui-form-item">
                                 <label class="layui-form-label">排序</label>
                                 <div class="layui-input-inline">

+ 7 - 4
runtime/temp/62c3b05c6ca4b70b3dcc76e40c09e0c4.php

@@ -1,4 +1,4 @@
-<?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:1557908199;s:75:"C:\phpStudy\PHPTutorial\WWW\aqm-web\application\admin\view\layout\home.html";i:1557480234;}*/ ?>
+<?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>
@@ -42,11 +42,12 @@
         <table class="layui-table lay-even">
             <colgroup>
                 <col width="50">
+                <col width="90">
                 <col width="60">
                 <col width="60">
-                <col width="60">
-                <col width="60">
-                <col width="200">
+                <col width="90">
+                <col width="100">
+                <col width="150">
                 <col width="180">
                 <col width="100">
                 <col width="160">
@@ -59,6 +60,7 @@
                 <th>性别</th>
                 <th>年龄</th>
                 <th>职位</th>
+                <th>部门</th>
                 <th>简介</th>
                 <th>修改时间</th>
                 <th>图片</th>
@@ -73,6 +75,7 @@
                 <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>

+ 190 - 0
runtime/temp/e2abb8edac947e4a7afc48b126ed504f.php

@@ -0,0 +1,190 @@
+<?php if (!defined('THINK_PATH')) exit(); /*a:3:{s:90:"C:\phpStudy\PHPTutorial\WWW\aqm-web\public/../application/admin\view\leader_team\form.html";i:1557992417;s:75:"C:\phpStudy\PHPTutorial\WWW\aqm-web\application\admin\view\layout\home.html";i:1557480234;s:82:"C:\phpStudy\PHPTutorial\WWW\aqm-web\application\admin\view\layout\admin_items.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>
+        
+<form class="layui-form" method="post" enctype="multipart/form-data" >
+    <div class="layui-tab layui-tab-card">
+        <?php if($admin_item): ?>
+<ul class="layui-tab-title">
+    <?php if(is_array($admin_item) || $admin_item instanceof \think\Collection || $admin_item instanceof \think\Paginator): if( count($admin_item)==0 ) : echo "" ;else: foreach($admin_item as $key=>$item): if(array_intersect(explode(" ",str_replace("/", ".",substr($item['url'],7,-5))),$allpower) || array_intersect(explode(" ",str_replace("/", ".",substr($item['url'],31,-16))),$allpower)): ?>
+    <li <?php if($item['name'] == $curitem): ?>class="layui-this" <?php endif; ?>>
+    <a href="<?php echo $item['url']; ?>"><?php echo $item['text']; ?></a>
+    <?php endif; ?>
+    </li>
+    <?php endforeach; endif; else: echo "" ;endif; ?>
+    <div class="tool-btns">
+        <a href="javascript:location.reload();" title="刷新当前页面" class="iconfont icon-reload"></i></a>
+    </div>
+</ul>
+<?php endif; ?>
+        <div class="layui-tab-content page-tab-content">
+            <div class="layui-tab-item layui-show ">
+
+                <div class="layui-collapse">
+                    <div class="layui-colla-item">
+                        <h2 class="layui-colla-title">基本设置</h2>
+                        <div class="layui-colla-content layui-show">
+                            <div class="layui-form-item">
+                                <label class="layui-form-label">中文名称</label>
+                                <div class="layui-input-inline">
+                                    <input type="text" class="layui-input field-name" name="name_ch" id="name_ch" value="<?php echo (isset($leaderteam['name_ch']) && ($leaderteam['name_ch'] !== '')?$leaderteam['name_ch']:''); ?>" lay-verify="name_ch" autocomplete="off" placeholder="<?php echo \think\Lang::get('ds_please_enter'); ?>中文名称" required />
+                                </div>
+                            </div>
+                            <div class="layui-form-item">
+                                <label class="layui-form-label">英文名称</label>
+                                <div class="layui-input-inline">
+                                    <input type="text" class="layui-input field-name" name="name_en" id="name_en" value="<?php echo (isset($leaderteam['name_en']) && ($leaderteam['name_en'] !== '')?$leaderteam['name_en']:''); ?>" lay-verify="name_en" autocomplete="off" placeholder="<?php echo \think\Lang::get('ds_please_enter'); ?>英文名称" required />
+                                </div>
+                            </div>
+                            <div class="layui-form-item">
+                                <label class="layui-form-label">性别</label>
+                                <div class="layui-input-inline">
+                                    <input type="text" class="layui-input field-name" name="gender" id="gender" value="<?php echo (isset($leaderteam['gender']) && ($leaderteam['gender'] !== '')?$leaderteam['gender']:''); ?>" lay-verify="gender" autocomplete="off" placeholder="<?php echo \think\Lang::get('ds_please_enter'); ?>性别" required />
+                                </div>
+                            </div>
+                            <div class="layui-form-item">
+                                <label class="layui-form-label">年龄</label>
+                                <div class="layui-input-inline">
+                                    <input type="text" class="layui-input field-name" name="age" id="age" value="<?php echo (isset($leaderteam['age']) && ($leaderteam['age'] !== '')?$leaderteam['age']:''); ?>" lay-verify="age" autocomplete="off" placeholder="<?php echo \think\Lang::get('ds_please_enter'); ?>年龄" required />
+                                </div>
+                            </div>
+                            <div class="layui-form-item">
+                                <label class="layui-form-label">图片</label>
+                                <div class="layui-input-inline">
+                                    <input type="file" name="image" />
+                                </div>
+                            </div>
+                            <div class="layui-form-item">
+                                <label class="layui-form-label">职位</label>
+                                <div class="layui-input-inline">
+                                    <input type="text" class="layui-input field-name" name="position" id="position" value="<?php echo (isset($leaderteam['position']) && ($leaderteam['position'] !== '')?$leaderteam['position']:''); ?>" lay-verify="position" autocomplete="off" placeholder="<?php echo \think\Lang::get('ds_please_enter'); ?>职位" required />
+                                </div>
+                            </div>
+                            <div class="layui-form-item">
+                                <label class="layui-form-label">部门</label>
+                                <div class="layui-input-inline">
+                                    <input type="text" class="layui-input field-name" name="department" id="department" value="<?php echo (isset($leaderteam['department']) && ($leaderteam['department'] !== '')?$leaderteam['department']:''); ?>" lay-verify="department" autocomplete="off" placeholder="<?php echo \think\Lang::get('ds_please_enter'); ?>部门" required />
+                                </div>
+                            </div>
+                            <div class="layui-form-item">
+                                <label class="layui-form-label">简介</label>
+                                <div class="layui-input-inline">
+                                    <input type="text" class="layui-input field-name" name="info" id="info" value="<?php echo (isset($leaderteam['info']) && ($leaderteam['info'] !== '')?$leaderteam['info']:''); ?>" lay-verify="info" autocomplete="off" placeholder="<?php echo \think\Lang::get('ds_please_enter'); ?>简介" required />
+                                </div>
+                            </div>
+                        </div>
+                    </div>
+
+                </div>
+
+                <div class="layui-form-item mt20">
+                    <div class="layui-input-inline">
+                        <input type="submit" class="layui-btn layui-btn-normal" lay-submit value="<?php echo lang('ds_submit'); ?>" />
+                        <a class="layui-btn layui-btn-sm lay-btn-diy" href="javascript:history.go(-1)" style="background-color:#1E9FFF;height: 38px;line-height: 38px;padding: 0 18px;">返回</a>
+                    </div>
+                </div>
+            </div>
+        </div>
+    </div>
+</form>
+<script>
+    layui.use('form', function () {
+        var form = layui.form;
+    });
+    layui.use('element', function () {
+        var element = layui.element;
+    });
+    layui.use('laydate', function(){
+        var laydate = layui.laydate;
+        laydate.render({
+            elem: '#product_addtime'
+        });
+    });
+
+    function add_uploadedfile(file_data)
+    {
+        var newImg = '<li id="' + file_data.file_id + '"><img src="' + file_data.file_url + '"/><i class="delect layui-icon" title="插入编辑器" onclick="insert_editor(\''+file_data.file_url+'\')">&#xe654;</i><i class="insert layui-icon" title="删除图片" onclick="del_productpic(' + file_data.file_id + ')">&#xe640;</i></li>'
+        $('.selected_pic ul').prepend(newImg);
+    }
+
+
+    /**
+     * 插入编辑器
+     */
+    function insert_editor(file_path){
+        ue.execCommand('insertimage', {src:file_path});
+    }
+
+    function del_productpic(file_id)
+    {
+        layer.open({
+            content: '<?php echo \think\Lang::get('ds_confirm_cancel'); ?>',
+            yes: function(index, layero){
+                $.getJSON("<?php echo url('pic/del'); ?>",{file_id: + file_id,pic_type:'product'}, function(result){
+                    if(result){
+                        $('#' + file_id).remove();
+                        layer.msg('<?php echo \think\Lang::get('del_succ'); ?>');
+                        layer.close(index);
+                        return;
+                    }else{
+                        layer.msg('<?php echo \think\Lang::get('del_fail'); ?>');
+                        layer.close(index);
+                        return;
+                    }
+                });
+            }
+        });
+    }
+</script>
+<script type="text/javascript">
+    $("input#image").change(function () {
+        //console.log($(this).val());
+        if($(this).val() !=''){
+            $("form#upForm").ajaxSubmit({
+                url:"imgUp.php",
+                type:"post",
+                dataType:"json",
+                data:$(this).serialize(),
+                success:function (backData) {
+                    var $path=backData.uploaded_path;
+                    //console.log(backData);
+                    $("div.imgUp").css("backgroundImage","url("+$path+")");
+
+                },
+                error:function (e) {
+                    console.log(e);
+                }
+            })
+        }
+    })
+</script>
+
+    </body>
+</html>
+
+
+

+ 7 - 4
runtime/temp/f71f5e28b8583b0be11dbf82e637c066.php

@@ -1,4 +1,4 @@
-<?php if (!defined('THINK_PATH')) exit(); /*a:2:{s:87:"C:\phpStudy\PHPTutorial\WWW\aqm-web\public/../application/admin\view\recruit\index.html";i:1557973062;s:75:"C:\phpStudy\PHPTutorial\WWW\aqm-web\application\admin\view\layout\home.html";i:1557480234;}*/ ?>
+<?php if (!defined('THINK_PATH')) exit(); /*a:2:{s:87:"C:\phpStudy\PHPTutorial\WWW\aqm-web\public/../application/admin\view\recruit\index.html";i:1557993261;s:75:"C:\phpStudy\PHPTutorial\WWW\aqm-web\application\admin\view\layout\home.html";i:1557480234;}*/ ?>
 <!DOCTYPE html>
 <html>
     <head>
@@ -41,10 +41,11 @@
     <div class="layui-tab-content page-tab-content">
         <table class="layui-table lay-even">
             <colgroup>
-                <col width="100">
+                <col width="90">
+                <col width="150">
                 <col width="200">
-                <col width="200">
-                <col width="100">
+                <col width="150">
+                <col width="90">
                 <col width="200">
                 <col width="80">
                 <col width="240">
@@ -55,6 +56,7 @@
                 <th>id</th>
                 <th>招聘岗位</th>
                 <th>详情</th>
+                <th>地址</th>
                 <th>排序</th>
                 <th>修改时间</th>
                 <th>状态</th>
@@ -67,6 +69,7 @@
                 <td><?php echo $recruit['id']; ?></td>
                 <td><?php echo $recruit['name']; ?></td>
                 <td><?php echo $recruit['detail']; ?></td>
+                <td><?php echo $recruit['address']; ?></td>
                 <td><?php echo $recruit['sort']; ?></td>
                 <td><?php echo $recruit['update_time']; ?></td>
                 <td><?php if($recruit['status']==1): ?>发布<?php else: ?>撤销<?php endif; ?></td>