mirror of https://gitee.com/karson/fastadmin.git
28 lines
436 B
PHP
28 lines
436 B
PHP
<?php
|
|
|
|
namespace app\admin\controller\cms;
|
|
|
|
use app\common\controller\Backend;
|
|
|
|
/**
|
|
* 自定义表单表
|
|
*
|
|
* @icon fa fa-circle-o
|
|
*/
|
|
class Diyform extends Backend
|
|
{
|
|
|
|
/**
|
|
* Model模型对象
|
|
*/
|
|
protected $model = null;
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = model('Diyform');
|
|
$this->view->assign("statusList", $this->model->getStatusList());
|
|
}
|
|
|
|
}
|