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.
39 lines
670 B
39 lines
670 B
<?php
|
|
|
|
namespace app\admin\controller\wanlshop;
|
|
|
|
use app\common\controller\Backend;
|
|
|
|
/**
|
|
* 图标管理
|
|
*
|
|
* @icon fa fa-circle-o
|
|
*/
|
|
class Icon extends Backend
|
|
{
|
|
|
|
/**
|
|
* Icon模型对象
|
|
* @var \app\admin\model\wanlshop\Icon
|
|
*/
|
|
protected $model = null;
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = new \app\admin\model\wanlshop\Icon;
|
|
$this->view->assign("statusList", $this->model->getStatusList());
|
|
}
|
|
|
|
/**
|
|
* 选择链接
|
|
*/
|
|
public function select()
|
|
{
|
|
if ($this->request->isAjax()) {
|
|
return $this->index();
|
|
}
|
|
return $this->view->fetch();
|
|
}
|
|
|
|
}
|
|
|