17 lines
592 B
PHP
Executable File
17 lines
592 B
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 宏驰云科技开发团队 版权所有 拥有最终解释权
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Author: HcyShop-kiki
|
|
// +----------------------------------------------------------------------
|
|
namespace app\api\controller;
|
|
use app\api\logic\ServiceLogic;
|
|
|
|
class Service extends ApiBase {
|
|
public $like_not_need_login = ['lists'];
|
|
public function lists(){
|
|
$list = ServiceLogic::getConfig();
|
|
$this->_success('获取成功',$list);
|
|
}
|
|
} |