截流自动化的商城平台
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.

DistributionSetting.php 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. namespace app\admin\controller\distribution;
  3. use app\admin\logic\distribution\DistributionSettingLogic;
  4. use app\common\basics\AdminBase;
  5. use app\common\server\JsonServer;
  6. class DistributionSetting extends AdminBase
  7. {
  8. /**
  9. * @notes 基础设置
  10. * @return \think\response\View
  11. * @author Tab
  12. * @date 2021/9/1 9:14
  13. */
  14. public function index()
  15. {
  16. $config = DistributionSettingLogic::getConfig();
  17. return view('', ['config' => $config]);
  18. }
  19. /**
  20. * @notes 分销设置
  21. * @return \think\response\Json
  22. * @author Tab
  23. * @date 2021/9/1 9:15
  24. */
  25. public function set()
  26. {
  27. $params = $this->request->post();
  28. $result = DistributionSettingLogic::set($params);
  29. if ($result) {
  30. return JsonServer::success('设置成功');
  31. }
  32. return JsonServer::error(DistributionSettingLogic::getError());
  33. }
  34. /**
  35. * @notes 结算设置
  36. * @return \think\response\View
  37. * @author Tab
  38. * @date 2021/9/1 9:17
  39. */
  40. public function settlement()
  41. {
  42. $config = DistributionSettingLogic::getConfig();
  43. return view('', ['config' => $config]);
  44. }
  45. }