mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:03:27 +08:00
【修复】修复后台菜单管理添加、编辑页面上级菜单下拉失效的问题。
This commit is contained in:
@@ -160,7 +160,7 @@
|
||||
function doCreate() {
|
||||
coreHelper.Post("Api/SysMenu/GetCreate", null, function (e) {
|
||||
if (e.code === 0) {
|
||||
var treeTableData = treeTable.getData('treeTableBox',true);
|
||||
var treeTableData = treeTable.getData('treeTableBox',false);
|
||||
admin.popup({ shadeClose: false,
|
||||
title: '创建数据',
|
||||
area: ['1000px', '500px'],
|
||||
@@ -210,7 +210,7 @@
|
||||
function doEdit(obj) {
|
||||
coreHelper.Post("Api/SysMenu/GetEdit", { id: obj.data.id }, function (e) {
|
||||
if (e.code === 0) {
|
||||
var treeTableData = treeTable.getData('treeTableBox', true);
|
||||
var treeTableData = treeTable.getData('treeTableBox', false);
|
||||
admin.popup({
|
||||
shadeClose: false,
|
||||
title: '编辑数据',
|
||||
|
||||
Reference in New Issue
Block a user