UNPKG

@angular-jz/jz

Version:

jim jz

46 lines 2.34 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; Object.defineProperty(exports, "__esModule", { value: true }); var core_1 = require("@angular/core"); var ng_bootstrap_1 = require("@ng-bootstrap/ng-bootstrap"); var angular2_toaster_1 = require("angular2-toaster"); var CrudEditComponent = /** @class */ (function () { function CrudEditComponent(injector, crudService) { var _this = this; this.crudService = crudService; this.item = {}; this.dics = {}; this.editItemSucess = function (data) { _this.toasterService.pop('success', '', '操作成功!'); _this.activeModal.close({ success: true, data: data }); }; this.editItemFailed = function (error) { _this.toasterService.pop('error', '', error); }; this.activeModal = injector.get(ng_bootstrap_1.NgbActiveModal); this.toasterService = injector.get(angular2_toaster_1.ToasterService); } CrudEditComponent.prototype.ngOnInit = function () { }; CrudEditComponent.prototype.editItem = function () { this.crudService.editItem(this.item).then(this.editItemSucess, this.editItemFailed); }; __decorate([ core_1.Input(), __metadata("design:type", Object) ], CrudEditComponent.prototype, "item", void 0); __decorate([ core_1.Input(), __metadata("design:type", Object) ], CrudEditComponent.prototype, "dics", void 0); return CrudEditComponent; }()); exports.CrudEditComponent = CrudEditComponent; //# sourceMappingURL=crud-edit.component.js.map