Browse Source

【新项目】【看板项目】【代码优化】

luhg 8 years ago
parent
commit
0e73c32792
1 changed files with 3 additions and 3 deletions
  1. 3 3
      kanban-console/src/main/webapp/resources/app/view/templatetree.js

+ 3 - 3
kanban-console/src/main/webapp/resources/app/view/templatetree.js

@@ -16,7 +16,7 @@ Ext.define('erp.view.templatetree',{
 			url:'template/get',
 			reader:{
 				type: 'json',
-				root:'content',
+				root:'content'
 			}
 		}
 	}),
@@ -24,7 +24,7 @@ Ext.define('erp.view.templatetree',{
 	columns:[{
 		header:'名称',
 		dataIndex:'name',
-		flex:1,
+		flex:1
 	}],
 	setButtonDisabled:function(active){
   	 	var templateEditPanel = Ext.getCmp('templateeditpanel');
@@ -35,5 +35,5 @@ Ext.define('erp.view.templatetree',{
   	 			btn.setDisabled(active);
   	 		}
   	 	});
-  	 },
+  	 }
 });