| 1234567891011121314151617181920212223242526272829303132 | <?php// +----------------------------------------------------------------------// | Niucloud-mall 企业快速开发的多应用管理平台// +----------------------------------------------------------------------// | 官方网址:https://www.niucloud.com// +----------------------------------------------------------------------// | niucloud团队 版权所有 开源版本可自由商用// +----------------------------------------------------------------------// | Author: Niucloud Team// +----------------------------------------------------------------------namespace addon\mall\app\api\controller;use addon\mall\app\service\api\ConfigService;use core\base\BaseApiController;use think\Response;class Config extends BaseApiController{    public function invoice() {        return success(( new ConfigService() )->getInvoiceConfig());    }    /**     * 评价设置     * @return Response     */    public function evaluate()    {        return success(( new ConfigService() )->getEvaluateConfig());    }}
 |