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

CustomerService.php 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace app\shop\controller\setting;
  3. use app\common\basics\ShopBase;
  4. use app\common\server\ConfigServer;
  5. use app\common\server\JsonServer;
  6. use app\common\server\UrlServer;
  7. class CustomerService extends ShopBase
  8. {
  9. public function index()
  10. {
  11. $image = ConfigServer::get('shop_customer_service', 'image', '', $this->shop_id);
  12. $image = $image ? UrlServer::getFileUrl($image) : '';
  13. $config = [
  14. 'type' => ConfigServer::get('shop_customer_service', 'type', 1,$this->shop_id),
  15. 'wechat' => ConfigServer::get('shop_customer_service', 'wechat', '', $this->shop_id),
  16. 'phone' => ConfigServer::get('shop_customer_service', 'phone', '', $this->shop_id),
  17. 'business_time' => ConfigServer::get('shop_customer_service', 'business_time', '', $this->shop_id),
  18. 'image' => $image,
  19. ];
  20. return view('', [
  21. 'config' => $config
  22. ]);
  23. }
  24. public function set()
  25. {
  26. $post = $this->request->post();
  27. ConfigServer::set('shop_customer_service', 'type', $post['type'], $this->shop_id);
  28. ConfigServer::set('shop_customer_service', 'wechat', $post['wechat'], $this->shop_id);
  29. ConfigServer::set('shop_customer_service', 'phone', $post['phone'], $this->shop_id);
  30. ConfigServer::set('shop_customer_service', 'business_time', $post['business_time'], $this->shop_id);
  31. if(isset($post['image'])){
  32. ConfigServer::set('shop_customer_service', 'image', clearDomain($post['image']), $this->shop_id);
  33. }
  34. return JsonServer::success('设置成功');
  35. }
  36. }