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

MapLogic.php 990B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace app\admin\logic\setting;
  3. use app\common\basics\Logic;
  4. use app\common\server\ConfigServer;
  5. class MapLogic extends Logic
  6. {
  7. /**
  8. * @notes 设置地图
  9. * @return array
  10. * @author 段誉
  11. * @date 2022/1/17 10:31
  12. */
  13. public static function getConfig()
  14. {
  15. $config = [
  16. 'tx_map_key' => ConfigServer::get('map', 'tx_map_key'),
  17. 'is_open_nearby' => ConfigServer::get('map', 'is_open_nearby',0),
  18. ];
  19. return $config;
  20. }
  21. /**
  22. * @notes 设置配置
  23. * @param $post
  24. * @throws \think\db\exception\DataNotFoundException
  25. * @throws \think\db\exception\DbException
  26. * @throws \think\db\exception\ModelNotFoundException
  27. * @author 段誉
  28. * @date 2022/1/17 10:31
  29. */
  30. public static function setConfig($post)
  31. {
  32. ConfigServer::set('map', 'tx_map_key', $post['tx_map_key']);
  33. ConfigServer::set('map', 'is_open_nearby', $post['is_open_nearby']);
  34. }
  35. }