Qa.php 482 B

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