service = new TaxConfigService(['mall_id' => intval($this->mall_id)]); } /** * 首页 * @return string */ public function actionIndex() { if (!$this->request->isAjax) { return $this->render('index'); } $data = $this->request->post(); $res = $this->service->add($data); return $res ? $this->success("操作成功") : $this->error($this->service->error); } /** * 读取配置 * @return string */ public function actionRead() { $config = $this->service->getConfig(); return $this->success_str('ok', $config); } }