Browse Source

提交选择框对象。

Signed-off-by: zouap <zouap@pcl.ac.cn>
tags/v1.22.7.1
zouap 3 years ago
parent
commit
40db5d6dd1
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      templates/repo/modelmanage/index.tmpl

+ 5
- 2
templates/repo/modelmanage/index.tmpl View File

@@ -5,7 +5,7 @@
color: rgba(0, 0, 0, .87) !important
}
.menuContent{
background:rgb(255, 255, 255)
background:#ffffff
}
</style>
<link rel="stylesheet" href="/self/ztree/css/zTreeStyle/zTreeStyle.css" type="text/css">
@@ -279,7 +279,10 @@
nodes = zTree.getCheckedNodes(true),
v = "";
for (var i=0, l=nodes.length; i<l; i++) {
v += nodes[i].name + ",";
if(nodes[i].isParent){
continue;
}
v += nodes[i].name + ";";
}
if (v.length > 0 ) v = v.substring(0, v.length-1);
var cityObj = $("#citySel");


Loading…
Cancel
Save