|
|
|
@ -54,10 +54,10 @@ export class ServeManager {
|
|
|
|
|
) => void, onError?: (key: string, error: string) => void) { |
|
|
|
|
let l_data = classToPlain(institutionData); |
|
|
|
|
|
|
|
|
|
console.log("保存单位", l_data); |
|
|
|
|
// console.log("保存单位", l_data);
|
|
|
|
|
this.buildingBISrv.postBuildingBasicInfos(key, institutionID, l_data) |
|
|
|
|
.subscribe(data => { |
|
|
|
|
console.log("保存单位成功:" + key, l_data); |
|
|
|
|
// console.log("保存单位成功:" + key, l_data);
|
|
|
|
|
if (onSuccess) { |
|
|
|
|
onSuccess(key, data.result); |
|
|
|
|
} |
|
|
|
@ -168,7 +168,7 @@ export class ServeManager {
|
|
|
|
|
getAllMarkTemplate(onSuccess?: (data: string) => void) { |
|
|
|
|
this.buildingBISrv.getAllSandBoxTemplate() |
|
|
|
|
.subscribe(data => { |
|
|
|
|
console.log("得到所有模板", data); |
|
|
|
|
// console.log("得到所有模板", data);
|
|
|
|
|
if (onSuccess) { |
|
|
|
|
onSuccess((data as any).result.items); |
|
|
|
|
} |
|
|
|
@ -237,7 +237,7 @@ export class ServeManager {
|
|
|
|
|
saveGasStationExcelData(exportData: ExportData) { |
|
|
|
|
this.buildingBISrv.postGasStationExcelData(DataManager.institutionData_simple.name, DataManager.institutionData_simple.id, exportData) |
|
|
|
|
.subscribe(data => { |
|
|
|
|
console.log("保存导出信息成功:" + DataManager.institutionData_simple.id, `'${JSON.stringify(exportData)}'`); |
|
|
|
|
// console.log("保存导出信息成功:" + DataManager.institutionData_simple.id, `'${JSON.stringify(exportData)}'`);
|
|
|
|
|
}, (error) => { |
|
|
|
|
console.log("保存导出信息失败:" + DataManager.institutionData_simple.id, error); |
|
|
|
|
}); |
|
|
|
|