...
|
...
|
@@ -50,6 +50,9 @@ class IndexController extends CommentController |
|
|
$art = Db::name('Art')->where($where_art)->find();
|
|
|
$art['content'] = htmlspecialchars_decode($art['content']);
|
|
|
$final['art'] = $art;
|
|
|
$where_cof['status'] = array('neq',9);
|
|
|
$tel = Db::name('Config')->where($where_cof)->value('tel');
|
|
|
$final['tel'] = $tel;
|
|
|
$this->assign('final',$final);
|
|
|
return $this->fetch();
|
|
|
}
|
...
|
...
|
@@ -92,7 +95,6 @@ class IndexController extends CommentController |
|
|
}else{
|
|
|
$final['is_check'] = 1;
|
|
|
}
|
|
|
// $final['is_check'] = 1;
|
|
|
// 判断是否填写过
|
|
|
$where_resume['user_id'] = Session::get('uid');
|
|
|
$where_resume['status'] = array('neq',9);
|
...
|
...
|
@@ -113,8 +115,8 @@ class IndexController extends CommentController |
|
|
$banner = Db::name('Banner')->where($where_banner)->order('score desc,create_time desc')->limit(3)->select()->toArray();
|
|
|
$final['banner'] = $banner;
|
|
|
// 我的位置
|
|
|
// $config = $this->getSignPackage();
|
|
|
// $this->assign('config',$config);
|
|
|
$config = $this->getSignPackage();
|
|
|
$this->assign('config',$config);
|
|
|
// 雇佣事项
|
|
|
$where_select['status'] = array('neq',9);
|
|
|
$where_select['type'] = 2;
|
...
|
...
|
|