yoyo-ng-modulewindy
Version:
服务于52ABP模板的前端开源的相关组件内容。整合了ng-alain和你NG ZORRO的内容
20 lines • 699 B
JavaScript
import { Injectable } from '@angular/core';
var UtilsService = /** @class */ (function () {
function UtilsService() {
}
UtilsService.prototype.getCookieValue = function (key) {
return abp.utils.getCookieValue(key);
};
UtilsService.prototype.setCookieValue = function (key, value, expireDate, path) {
abp.utils.setCookieValue(key, value, expireDate, path);
};
UtilsService.prototype.deleteCookie = function (key, path) {
abp.utils.deleteCookie(key, path);
};
UtilsService.decorators = [
{ type: Injectable },
];
return UtilsService;
}());
export { UtilsService };
//# sourceMappingURL=utils.service.js.map