//保存
$http.post('../brand/'+ methodName +'.do',$scope.entity ).success(
function(response){
if(response.success){
$scope.reloadList();//重新加载
}else{
alert(response.message);
}
}
);
}