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

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace app\shop\controller;
  3. use app\common\basics\ShopBase;
  4. use app\common\server\ConfigServer;
  5. use app\common\server\JsonServer;
  6. use app\shop\logic\StoreLogic;
  7. class Store extends ShopBase
  8. {
  9. /**
  10. * @Notes: 商家设置
  11. * @Author: 张无忌
  12. */
  13. public function index()
  14. {
  15. return view('', [
  16. 'detail' => StoreLogic::detail($this->shop_id),
  17. 'tx_map_key' => ConfigServer::get('map', 'tx_map_key')
  18. ]);
  19. }
  20. /**
  21. * @Notes: 编辑商家
  22. * @Author: 张无忌
  23. */
  24. public function edit()
  25. {
  26. if ($this->request->isAjax()) {
  27. $post = $this->request->post();
  28. $res = StoreLogic::edit($post);
  29. if ($res === false) {
  30. $error = StoreLogic::getError() ?: '更新失败';
  31. return JsonServer::error($error);
  32. }
  33. return JsonServer::success('更新成功');
  34. }
  35. return JsonServer::error('异常');
  36. }
  37. }