沈斌
2017-12-19 d0120ef2272096cbcaf6e1b2e11edc029a7de511
src/app/routes/users/installer/edit/edit.component.ts
@@ -2,6 +2,7 @@
import { Component, OnInit } from '@angular/core';
import { ModalHelper } from '@delon/theme';
import { HttpClient } from '@angular/common/http';
import { environment } from '../../../../../environments/environment';
@Component({
  selector: 'app-edit',
@@ -20,14 +21,14 @@
  ngOnInit() {
    if (this.user.id > 0) {
      this.http.get('http://localhost:8001/user/operate_user/' + this.user.id).subscribe((res: any) => {
      this.http.get(environment.SERVER_BASH_URL + '/user/operate_user/' + this.user.id).subscribe((res: any) => {
          this.user = res.data[0];
      });
    }
  }
  save() {
    this.http.post('http://localhost:8001/user/operate_user/save', this.user).subscribe(() => {
    this.http.post(environment.SERVER_BASH_URL + '/user/operate_user/save', this.user).subscribe(() => {
      this.subject.next('true');
      this.close();
    });