This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
SXS20240115/SRC/iMES_PDA/module/moduleCustomer/program/sample/sample_C.js
2024-01-24 16:47:50 +08:00

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' });
}
}
]
});