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.
28 lines
573 B
28 lines
573 B
<?php
|
|
|
|
namespace app\admin\controller\wanlshop;
|
|
|
|
use app\common\controller\Backend;
|
|
|
|
/**
|
|
* 搜索管理
|
|
*
|
|
* @icon fa fa-circle-o
|
|
*/
|
|
class Search extends Backend
|
|
{
|
|
|
|
/**
|
|
* Search模型对象
|
|
* @var \app\admin\model\wanlshop\Search
|
|
*/
|
|
protected $model = null;
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = new \app\admin\model\wanlshop\Search;
|
|
$this->view->assign("flagList", $this->model->getFlagList());
|
|
$this->view->assign("statusList", $this->model->getStatusList());
|
|
}
|
|
}
|
|
|