|
|
@@ -8,6 +8,8 @@ $(function() {
|
|
8
|
8
|
});
|
|
9
|
9
|
})
|
|
10
|
10
|
})
|
|
|
11
|
+var treeID = helper.request.queryString("treeID");
|
|
|
12
|
+console.log(treeID)
|
|
11
|
13
|
var token = $.cookie("token");
|
|
12
|
14
|
var zNodes = [];
|
|
13
|
15
|
var id; //当前节点id
|
|
|
@@ -23,7 +25,7 @@ function tree() {
|
|
23
|
25
|
$.get(huayi.config.callcenter_url + 'callcenterapi/api/Knowledge/gettypelist', {
|
|
24
|
26
|
"token": $.cookie("token"),
|
|
25
|
27
|
"pid": pid,
|
|
26
|
|
- "id": "5f87b05d51afae068b98e969",
|
|
|
28
|
+ "id": treeID,
|
|
27
|
29
|
}, function(result) {
|
|
28
|
30
|
result = $.parseJSON(result);
|
|
29
|
31
|
|