Honor.php 528 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\admin\controller\wwh;
  3. use app\common\controller\Backend;
  4. class Honor extends Base
  5. {
  6. /**
  7. * Honor模型对象
  8. * @var \app\admin\model\wwh\Honor
  9. */
  10. protected $model = null;
  11. protected $multiFields = ['weigh'];
  12. public function _initialize()
  13. {
  14. parent::_initialize();
  15. $this->model = new \app\admin\model\wwh\Honor;
  16. $this->view->assign("typeList", $this->model->getTypeList());
  17. $this->view->assign("langList", $this->model->getLangList());
  18. }
  19. }