StoreLogic::detail($this->shop_id), 'tx_map_key' => ConfigServer::get('map', 'tx_map_key') ]); } /** * @Notes: 编辑商家 * @Author: 张无忌 */ public function edit() { if ($this->request->isAjax()) { $post = $this->request->post(); $res = StoreLogic::edit($post); if ($res === false) { $error = StoreLogic::getError() ?: '更新失败'; return JsonServer::error($error); } return JsonServer::success('更新成功'); } return JsonServer::success('异常'); } }