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; }