截流自动化的商城平台
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

Setting.php 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\basics\Api;
  4. use app\common\server\ConfigServer;
  5. use app\common\server\JsonServer;
  6. use app\common\server\UrlServer;
  7. use app\common\model\shop\Shop;
  8. class Setting extends Api
  9. {
  10. public $like_not_need_login = ['getPlatformCustomerService', 'getShopCustomerService'];
  11. /**
  12. * 平台客服
  13. */
  14. public function getPlatformCustomerService()
  15. {
  16. $image = ConfigServer::get('customer_service', 'image', '');
  17. $image = $image ? UrlServer::getFileUrl($image) : '';
  18. $config = [
  19. 'wechat' => ConfigServer::get('customer_service', 'wechat', ''),
  20. 'phone' => ConfigServer::get('customer_service', 'phone', ''),
  21. 'business_time' => ConfigServer::get('customer_service', 'business_time', ''),
  22. 'image' => $image
  23. ];
  24. return JsonServer::success('', $config);
  25. }
  26. /**
  27. * 商家客服
  28. */
  29. public function getShopCustomerService()
  30. {
  31. $shop_id = $this->request->get('shop_id', '', 'intval');
  32. $shop = Shop::field('id,name,logo')->where('id', $shop_id)->findOrEmpty();
  33. if($shop->isEmpty()) {
  34. return JsonServer::error('店铺信息不存在');
  35. }
  36. $shop = $shop->toArray();
  37. $shop['logo'] = $shop['logo'] ? UrlServer::getFileUrl($shop['logo']) : '';
  38. $image = ConfigServer::get('shop_customer_service', 'image', '', $shop_id);
  39. $image = $image ? UrlServer::getFileUrl($image) : '';
  40. $config = [
  41. 'wechat' => ConfigServer::get('shop_customer_service', 'wechat', '', $shop_id),
  42. 'phone' => ConfigServer::get('shop_customer_service', 'phone', '', $shop_id),
  43. 'business_time' => ConfigServer::get('shop_customer_service', 'business_time', '',$shop_id),
  44. 'image' => $image
  45. ];
  46. return JsonServer::success('', [
  47. 'config' => $config,
  48. 'shop' => $shop
  49. ]);
  50. }
  51. }