截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Setting.php 1.3KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace app\admin\controller\distribution;
  3. use app\common\basics\AdminBase;
  4. use app\common\server\ConfigServer;
  5. use app\common\server\JsonServer;
  6. class Setting extends AdminBase
  7. {
  8. /**
  9. * 分销设置
  10. */
  11. public function setting()
  12. {
  13. if($this->request->isPost()) {
  14. $post = $this->request->post();
  15. ConfigServer::set('distribution', 'is_open', $post['is_open']);
  16. ConfigServer::set('distribution', 'member_apply', $post['member_apply']);
  17. if(isset($post['image'])) {
  18. // 图片链接去除域名再入库
  19. $domain = $this->request->domain();
  20. $post['image'] = str_replace($domain, '', $post['image']);
  21. ConfigServer::set('distribution', 'image', $post['image']);
  22. }else{
  23. ConfigServer::set('distribution', 'image', '');
  24. }
  25. return JsonServer::success('设置成功');
  26. }
  27. $config = [
  28. 'is_open' => ConfigServer::get('distribution', 'is_open', 1),
  29. 'member_apply' => ConfigServer::get('distribution', 'member_apply', 1),
  30. 'image' => ConfigServer::get('distribution', 'image', ''),
  31. ];
  32. return view('', ['config' => $config]);
  33. }
  34. }