admin/addon/form/api/controller/Config.php

97 lines
2.7 KiB
PHP

<?php
/**
* ThinkShop商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 成都云之牛科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.cdcloudshop.com
* =========================================================
*/
namespace addon\fenxiao\api\controller;
use app\api\controller\BaseApi;
use addon\fenxiao\model\Config as ConfigModel;
use app\model\system\Document;
/**
* 分销相关配置
*/
class Config extends BaseApi
{
/**
* 提现配置
*/
public function withdraw()
{
$config = new ConfigModel();
$res = $config->getFenxiaoWithdrawConfig($this->site_id);
return $this->response($this->success($res['data']['value']));
}
/**
* 文字设置
* @return false|string
*/
public function words()
{
$config = new ConfigModel();
$res = $config->getFenxiaoWordsConfig($this->site_id);
return $this->response($this->success($res['data']['value']));
}
/**
* 申请协议
* @return false|string
*/
public function agreement()
{
$config = new ConfigModel();
$agreement = $config->getFenxiaoAgreementConfig($this->site_id);
$res = [];
$res['agreement'] = $agreement['data']['value'];
if ($agreement['data']['value']['is_agreement'] == 1) {
$document_model = new Document();
$document = $document_model->getDocument([['site_id', '=', $this->site_id], ['app_module', '=', 'shop'], ['document_key', '=', "FENXIAO_AGREEMENT"]]);
$res['document'] = $document['data'];
}
return $this->response($this->success($res));
}
/**
* 分销基本设置
* @return false|string
*/
public function basics()
{
$config = new ConfigModel();
$res = $config->getFenxiaoBasicsConfig($this->site_id);
return $this->response($this->success($res['data']['value']));
}
/**
* 分销商资格设置
* @return false|string
*/
public function fenxiao()
{
$config = new ConfigModel();
$res = $config->getFenxiaoConfig($this->site_id);
return $this->response($this->success($res['data']['value']));
}
/**
* 获取上下级关系设置
* @return false|string
*/
public function relation()
{
$config = new ConfigModel();
$res = $config->getFenxiaoRelationConfig($this->site_id);
return $this->response($this->success($res['data']['value']));
}
}