You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.2 KiB
71 lines
1.2 KiB
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Administrator
|
|
* Date: 2017/11/23
|
|
* Time: 19:05
|
|
*/
|
|
|
|
namespace app\admin\controller;
|
|
|
|
|
|
class Sczcxy extends News
|
|
{
|
|
public function _initialize()
|
|
{
|
|
$this->table_name='sczcxy';
|
|
$this->controller_name='Sczcxy';
|
|
parent::_initialize();
|
|
}
|
|
/**
|
|
* 政策行研列表
|
|
*/
|
|
public function sczcxy_list()
|
|
{
|
|
$curr_menu= array([600,620]);
|
|
$this->assign('menus_curr',$curr_menu);
|
|
return $this->news_list();
|
|
}
|
|
/**
|
|
* 添加显示
|
|
*/
|
|
public function sczcxy_add()
|
|
{
|
|
return $this->news_add();
|
|
}
|
|
/**
|
|
* 编辑显示
|
|
*/
|
|
public function sczcxy_edit()
|
|
{
|
|
return $this->news_edit();
|
|
}
|
|
/**
|
|
* 排序
|
|
*/
|
|
public function sczcxy_order()
|
|
{
|
|
return $this->news_order();
|
|
}
|
|
/**
|
|
* 删除(单个)
|
|
*/
|
|
public function sczcxy_del()
|
|
{
|
|
return $this->news_del();
|
|
}
|
|
/**
|
|
* 删除(全选)
|
|
*/
|
|
public function sczcxy_alldel()
|
|
{
|
|
return $this->news_alldel();
|
|
}
|
|
/**
|
|
* 审核/取消审核
|
|
*/
|
|
public function sczcxy_state()
|
|
{
|
|
return $this->news_state();
|
|
}
|
|
}
|