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.
31 lines
453 B
31 lines
453 B
<?php
|
|
|
|
namespace app\admin\controller\project;
|
|
|
|
use app\common\controller\Backend;
|
|
|
|
/**
|
|
* 常见问题
|
|
*
|
|
* @icon fa fa-circle-o
|
|
*/
|
|
class Faq extends ProjectBase
|
|
{
|
|
|
|
/**
|
|
* Faq模型对象
|
|
* @var \app\admin\model\project\Faq
|
|
*/
|
|
protected $model = null;
|
|
public $noNeedCompany = ['*'];
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = new \app\admin\model\project\Faq;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|