Talent.php
1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
namespace app\index\controller;
use app\admin\model\Style;
use app\common\controller\Frontend;
use think\Request;
class Talent extends Frontend
{
protected $noNeedLogin = '*';
protected $noNeedRight = '*';
protected $layout = '';
public function index()
{
$param=Request::instance()->param();
$menu=self::$model::menu(12);
$list=self::$model::talent($param['pid'],10);
$this->assign("left",$menu);
$this->assign("list",$list);
return $this->view->fetch();
}
public function detail()
{
$param=Request::instance()->param();
$news=\app\admin\model\Talent::where($param)->where("status",1)->find();
$this->assign("news",$news);
return $this->view->fetch();
}
public function initiate_1()
{
$param=Request::instance()->param();
if(Request::instance()->isPost()){
$param['status']=2;
$res=\app\admin\model\Talent::create($param);
return self::$model::js("提交成功",200);
}
$style=Style::where("style",$param['style'])->select();
$this->assign("style",$style);
return $this->view->fetch();
}
public function initiate_2()
{
$param=Request::instance()->param();
if(Request::instance()->isPost()){
$param['status']=2;
$res=\app\admin\model\Talent::create($param);
return self::$model::js("提交成功",200);
}
$style=Style::where("style",$param['style'])->select();
$this->assign("style",$style);
return $this->view->fetch();
}
}