| 12345678910111213141516171819202122232425262728293031323334 |
- var searchPlanTree = (function(){
- return [{
- "text": "公共方案",
- "expanded": true,
- "leaf": false,
- "children": [
- {
- "text": "缺省方案",
- "leaf": true
- }, {
- "text": "公共方案A",
- "leaf": true
- }, {
- "text": "公共方案B",
- "leaf": true
- }
- ]
- }, {
- "text": "私有方案",
- "expanded": true,
- "leaf": false,
- "children": [{
- "text": "自定义方案A",
- "leaf": true
- },{
- "text": "自定义方案B",
- "leaf": true
- }]
- }]
- })();
- module.exports = function(request, response){
- return searchPlanTree;
- }
|