Partner.php 476 B

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