【修复】修复后台菜单管理添加、编辑页面上级菜单下拉失效的问题。

This commit is contained in:
jianweie code
2023-05-08 23:51:59 +08:00
parent a83abb2e26
commit 2b8f4b742a

View File

@@ -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: '编辑数据',