WeixinController.php 586 字节
<?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(){

        return $this -> fetch();

    }


}