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