更新菜单模块

This commit is contained in:
邹景立 2017-02-22 16:17:58 +08:00
parent c028e2c7fd
commit f3eb41e853
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
<form class="layui-form layui-box" style='padding-right:20px' data-auto="true" method="post"> <form class="layui-form layui-box" style='padding-right:20px' action="{:url()}" data-auto="true" method="post">
<div class="layui-form-item"> <div class="layui-form-item">
<label class="layui-form-label">上级菜单</label> <label class="layui-form-label">上级菜单</label>
<div class="layui-input-block"> <div class="layui-input-block">

View File

@ -2,6 +2,7 @@
namespace controller; namespace controller;
use library\Data;
use think\Controller; use think\Controller;
use think\Db; use think\Db;
use think\db\Query; use think\db\Query;
@ -144,7 +145,7 @@ class BasicAdmin extends Controller {
$this->_callback('_form_filter', $vo); $this->_callback('_form_filter', $vo);
$result = Data::save($db, $vo, $pk, $where); $result = Data::save($db, $vo, $pk, $where);
if (false !== $this->_callback('_form_result', $result)) { if (false !== $this->_callback('_form_result', $result)) {
$result !== false ? $this->success('恭喜,保存成功哦!', ($pk_value === '' ? null : '')) : $this->error('保存失败,请稍候再试!'); $result !== false ? $this->success('恭喜,保存成功哦!', '') : $this->error('保存失败,请稍候再试!');
} }
return $result; return $result;
} }