| 123456789101112131415161718192021222324 | <?phpnamespace app\h5\controller;use app\hander\HelpHander;use think\Controller;use think\Db;use think\Exception;class Screen extends Controller{    public function phScreen(){        $params = input();        $orgInfo = Db::name('org')            ->where('id',$params['orgId'])            ->find();        $this->assign('orgInfo',$orgInfo);    //    $logo = (new \app\model\Config())->getConfig('web_logo',$params['orgId']);        $this->assign('logo','111');        return $this->fetch();    }}
 |