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

appService.php 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace app\shop\controller\content;
  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 AppService extends ShopBase
  8. {
  9. /*
  10. *
  11. */
  12. public function index()
  13. {
  14. //$image = ConfigServer::get('shop_customer_service', 'image', '', $this->shop_id);
  15. //$image = $image ? UrlServer::getFileUrl($image) : '';
  16. $config = [
  17. //'type' => ConfigServer::get('shop_app_service', 'type', 1,$this->shop_id),
  18. 'dingding_url' => ConfigServer::get('shop_app_service', 'dingding_url', '', $this->shop_id),
  19. 'dingding_pass' => ConfigServer::get('shop_app_service', 'dingding_pass', '', $this->shop_id),
  20. 'dingding_user' => ConfigServer::get('shop_app_service', 'dingding_user', '', $this->shop_id),
  21. //'image' => $image,
  22. ];
  23. return view('', [
  24. 'config' => $config
  25. ]);
  26. }
  27. public function set()
  28. {
  29. $post = $this->request->post();
  30. //ConfigServer::set('shop_app_service', 'type', $post['type'], $this->shop_id);
  31. ConfigServer::set('shop_app_service', 'dingding_url', $post['dingding_url'], $this->shop_id);
  32. ConfigServer::set('shop_app_service', 'dingding_pass', $post['dingding_pass'], $this->shop_id);
  33. ConfigServer::set('shop_app_service', 'dingding_user', $post['dingding_user'], $this->shop_id);
  34. /*if(isset($post['image'])){
  35. ConfigServer::set('shop_customer_service', 'image', clearDomain($post['image']), $this->shop_id);
  36. }*/
  37. return JsonServer::success('设置成功');
  38. }
  39. }