WeixinController.php
731 字节
<?php
namespace app\portal\controller;
use cmf\controller\WeChatBaseController;
use EasyWeChat\Foundation\Application;
use EasyWeChat\Payment\Order;
use think\Db;
class WeixinController extends WeChatBaseController{
protected $options;
public function _initialize()
{
parent::_initialize();
$this->checkWeChatUserLogin();
$this->options = [
'app_id' => config('wechat_config.app_id'),
'secret' => config('wechat_config.secret'),
];
}
public function index(){
//查询显示首页logo
$logo = Db::name('slide_item') -> where('slide_id',1) -> find();
$this -> assign('logo',$logo);
return $this -> fetch();
}
}