Platform.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // | 免费声明 ( https://thinkadmin.top/disclaimer )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. namespace app\admin\controller;
  16. use think\admin\Controller;
  17. use think\admin\service\AdminService;
  18. use think\admin\service\ModuleService;
  19. use think\admin\service\SystemService;
  20. use think\admin\storage\AliossStorage;
  21. use think\admin\storage\QiniuStorage;
  22. use think\admin\storage\TxcosStorage;
  23. /**
  24. * 平台参数配置
  25. * Class Platform
  26. * @package app\admin\controller
  27. */
  28. class Platform extends Controller
  29. {
  30. /**
  31. * 系统参数配置
  32. * @auth true
  33. * @menu true
  34. */
  35. public function index()
  36. {
  37. if($this->request->isGet()){
  38. $this->title = '平台参数配置';
  39. $this->fetch();
  40. }else{
  41. $post = $this->request->post();
  42. if (isset($post['android']) && $post['android']['download_url']){
  43. // $url = setappcode($post['android']['download_url']);
  44. $url = setappcode("https://ship-expert.zhousi.hdlkeji.com/h53/index.html#/");
  45. $post['android']['download_url_code'] = $url;
  46. }
  47. foreach ($post as $k => $v) sysconf($k, $v);
  48. sysoplog('系统配置管理', "修改系统参数成功");
  49. $this->success('修改平台参数成功');
  50. }
  51. }
  52. }