Files
vczero.github.io/t/lib/searchController.js
T
2014-12-09 00:11:24 +08:00

12 lines
350 B
JavaScript

/*搜索*/
app.controller('SearchController', function($scope, $location, bookList){
var path = $location.path();
$scope.search = function(){
var keywords = $scope.keywords;
if(path.indexOf('/list/book') !== -1 || path === '/'){
bookList.getData(keywords);
}else if(path.indexOf('/list/music') !== -1 || path === '/music'){
}
};
});