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/config/common.js
2024-01-24 16:47:50 +08:00

18 lines
399 B
JavaScript

//common function
define(["app", "moment"], function (app, moment) {
app.run(["$rootScope", "$filter", "config", "MMWService", "$mdDialog", function ($rootScope, $filter, config, $MMWService, $mdDialog) {
$rootScope.ud = {
//functionName : Function;
test: function () {
$rootScope.showAlert('ABCD');
}
};
}
])
});