|
|
@@ -93,5 +93,17 @@ define([ 'toaster', 'ui.bootstrap', 'services' ], function() {
|
|
|
$scope.notices = data;
|
|
|
});
|
|
|
}]);
|
|
|
+ // 手机登陆页的底部app栏
|
|
|
+ app.controller('AppBarCtrl', ['$scope', function($scope) {
|
|
|
+ // 点击立即下载
|
|
|
+ $scope.onBtnClick = function() {
|
|
|
+ window.location.href = 'http://www.usoftchina.com/usoft/uas_client.html';
|
|
|
+ };
|
|
|
+ // 关闭
|
|
|
+ $scope.close = function() {
|
|
|
+ var app_bar = document.getElementById('app-bar');
|
|
|
+ app_bar.parentNode.removeChild(app_bar);
|
|
|
+ };
|
|
|
+ }]);
|
|
|
return app;
|
|
|
});
|