From f3eb41e8538405db11894fe8f235714c38fbd204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Wed, 22 Feb 2017 16:17:58 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=8F=9C=E5=8D=95=E6=A8=A1?= =?UTF-8?q?=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/admin/view/menu.form.html | 2 +- extend/controller/BasicAdmin.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/application/admin/view/menu.form.html b/application/admin/view/menu.form.html index 065aa7989..b3ef7dd17 100644 --- a/application/admin/view/menu.form.html +++ b/application/admin/view/menu.form.html @@ -1,4 +1,4 @@ -
+
diff --git a/extend/controller/BasicAdmin.php b/extend/controller/BasicAdmin.php index f1f42b719..294017c24 100644 --- a/extend/controller/BasicAdmin.php +++ b/extend/controller/BasicAdmin.php @@ -2,6 +2,7 @@ namespace controller; +use library\Data; use think\Controller; use think\Db; use think\db\Query; @@ -144,7 +145,7 @@ class BasicAdmin extends Controller { $this->_callback('_form_filter', $vo); $result = Data::save($db, $vo, $pk, $where); if (false !== $this->_callback('_form_result', $result)) { - $result !== false ? $this->success('恭喜,保存成功哦!', ($pk_value === '' ? null : '')) : $this->error('保存失败,请稍候再试!'); + $result !== false ? $this->success('恭喜,保存成功哦!', '') : $this->error('保存失败,请稍候再试!'); } return $result; }