|
|
|
@ -1,6 +1,5 @@
|
|
|
|
|
import { HttpClient, HttpErrorResponse } from '@angular/common/http'; |
|
|
|
|
import { Injectable } from '@angular/core'; |
|
|
|
|
import { NumberValueAccessor } from '@angular/forms'; |
|
|
|
|
import { Observable, throwError } from 'rxjs'; |
|
|
|
|
import { catchError, retry } from 'rxjs/operators'; |
|
|
|
|
|
|
|
|
@ -169,7 +168,10 @@ export class BuildingBasicInfosService {
|
|
|
|
|
|
|
|
|
|
let headers = this.headers; |
|
|
|
|
|
|
|
|
|
let l_body = `'${JSON.stringify(body)}'`; |
|
|
|
|
let bodyString = JSON.stringify(body); |
|
|
|
|
let l_body = `'${bodyString}'`; |
|
|
|
|
//兼容换行符
|
|
|
|
|
l_body = l_body.replace(/\\n/g, "\\\\n"); |
|
|
|
|
|
|
|
|
|
return this.http.post<any>(api + this.c_post, l_body, { headers, params }) |
|
|
|
|
.pipe( |
|
|
|
|