request->isPost()) { $params = $this->request->post(); $params['shop_id'] = $this->shop_id; $result = FreeShippingLogic::index($params); if ($result) { return JsonServer::success('保存成功'); } return JsonServer::error(FreeShippingLogic::getError()); } // 显示设置页 $data = FreeShippingLogic::getData($this->shop_id); // halt($data); return view('', $data); } }