21 lines
458 B
PHP
21 lines
458 B
PHP
<?php
|
|
|
|
namespace app\api\controller\store;
|
|
|
|
use app\api\lists\store\SystemStoreLists;
|
|
use app\api\controller\BaseApiController;
|
|
use app\common\service\pay\PayService;
|
|
use Webman\Config;
|
|
|
|
class StoreController extends BaseApiController
|
|
{
|
|
public $notNeedLogin = ['index','app_update','lists'];
|
|
public function lists()
|
|
{
|
|
$config = Config::get('payment');
|
|
d($config);
|
|
return $this->dataLists(new SystemStoreLists());
|
|
}
|
|
|
|
|
|
} |