1234567891011121314151617181920212223 |
- <?php
- namespace app\admin\controller\wwh;
- use app\common\controller\Backend;
- class Honor extends Base
- {
- /**
- * Honor模型对象
- * @var \app\admin\model\wwh\Honor
- */
- protected $model = null;
- protected $multiFields = ['weigh'];
- public function _initialize()
- {
- parent::_initialize();
- $this->model = new \app\admin\model\wwh\Honor;
- $this->view->assign("typeList", $this->model->getTypeList());
- $this->view->assign("langList", $this->model->getLangList());
- }
- }
|