23 lines
529 B
JavaScript
23 lines
529 B
JavaScript
define(["moment"], function (moment) {
|
|
return ["$scope", "$filter", "$state", "$translate", "MMWService", "config", "$timeout",
|
|
function ($scope, $filter, $state, $translate, $MMWService, config, $timeout) {
|
|
|
|
$scope.init = function () {
|
|
|
|
}
|
|
|
|
//登出
|
|
$scope.logout = function () {
|
|
$scope.$root.logout(function () { });
|
|
}
|
|
|
|
//返回按鈕
|
|
$scope.back = function () {
|
|
$scope.$root.changeProgram('mms03_system_home', { parent: 'mms03_system_home' });
|
|
}
|
|
}
|
|
]
|
|
});
|
|
|
|
|