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'])); } }