mirror of
https://github.com/wu736139669/vczero.github.io.git
synced 2026-08-05 06:23:38 +00:00
14 lines
282 B
JavaScript
14 lines
282 B
JavaScript
app.controller('MenuController', function($scope, $location){
|
|
$scope.bookSearch = function(){
|
|
$location.path('/list/book');
|
|
};
|
|
|
|
$scope.musicSearch = function(){
|
|
$location.path('/list/music');
|
|
};
|
|
|
|
$scope.movieSearch = function(){
|
|
$location.path('/list/movie');
|
|
};
|
|
|
|
}); |