|
@@ -68,7 +68,7 @@
|
|
|
$("#treeGrid").height(height);
|
|
|
|
|
|
$('#treeGrid').treegrid({
|
|
|
- url:"/manage/constant/datas', singleSelect:true,selectOnCheck:false,
|
|
|
+ url:"/manage/constant/datas", singleSelect:true,selectOnCheck:false,
|
|
|
idField:'id',method: 'get',rownumbers: true,showFooter: true,
|
|
|
treeField: 'name',toolbar: '#tb',
|
|
|
// title:"机构信息管理",
|
|
@@ -98,9 +98,9 @@
|
|
|
// 显示编辑窗口
|
|
|
function showEditWin(id){
|
|
|
if("undefined"== typeof id){
|
|
|
- $editWin.window('open');$('#editFrame').attr('src',"/manage/constant/edit');
|
|
|
+ $editWin.window('open');$('#editFrame').attr('src',"/manage/constant/edit");
|
|
|
}else{
|
|
|
- $editWin.window('open');$('#editFrame').attr('src',"/manage/constant/edit?id='+id);
|
|
|
+ $editWin.window('open');$('#editFrame').attr('src',"/manage/constant/edit?id="+id);
|
|
|
}
|
|
|
}
|
|
|
|