ENDRPrint_12CRelease/.svn/pristine/cb/cb9114c1cbefc17601f73739c56dd4b44514a7a4.svn-base

21 lines
572 B
Plaintext
Raw Permalink Normal View History

2024-08-14 10:58:03 +07:00
scotchApp.service('commonService', function($rootScope) {
var sharedService = {};
sharedService.dv = '';
sharedService.urlPath = "";
sharedService.setUrlPath = function(urlPath){
//this.jobStepList = [];
this.urlPath = urlPath;
// $rootScope.$broadcast("hdlBroadcastReceivedDate",new Date().getTime());
};
sharedService.setDv = function(dv){
this.dv=dv;
//for(var i=0;i<lstData.length;i++){
// this.mstMsgList[lstData[i].key] = lstData[i].value;
//}
};
return sharedService;
});