Browse Source

对接建筑列表

dev
刘向辉 3 years ago
parent
commit
847bfbc01a
  1. 9
      src/app/babylon/controller/serve-manager.ts
  2. 5
      src/app/babylon/view/building-window/building-window.ts

9
src/app/babylon/controller/serve-manager.ts

@ -33,7 +33,6 @@ export class ServeManager {
) => void, onError?: (key: string, error: any) => void) {
this.buildingBISrv.getBuildingBasicInfos(key)
.subscribe(data => {
console.log("获取结果" + key, (data as any).result);
if (onSuccess) {
onSuccess(key, JSON.parse((data as any).result));
}
@ -152,9 +151,8 @@ export class ServeManager {
//#region 文件上传
//队列性,批量上传
uploadFile(index: number, files: File[], resPath_out, onOneSuccess: (name: string, path: string, file: File) => void, onEnd: () => void) {
console.log("上传路径", resPath_out);
if (index < files.length) {
//console.log("上传文件", files[index].name);
ServeManager.instance.openFileSelect(files[index], resPath_out, (name: string, path: string, file: File) => {
onOneSuccess(name, path, file);
this.uploadFile(index + 1, files, resPath_out, onOneSuccess, onEnd);
@ -198,8 +196,8 @@ export class ServeManager {
let dataObj = data as any;
let fileName = dataObj.fileName;
let filePath: string = dataObj.objectName;//此路径不全,前面缺少ObjectsService.baseUrl,这部分不可序列化,要在运行时拼接
//console.log("上传完成,地址为", filePath);
filePath = filePath.replace(fileName, "");//去掉结尾的文件名
console.log("上传完成,地址为", filePath);
//filePath = ObjectsService.baseUrl + filePath;
ServeManager.instance.onGetPostFileResult(fileName, filePath, file);
resolve('success')
@ -225,8 +223,9 @@ export class ServeManager {
* @param file
*/
postFileByMul(file: File) {
ServeManager.instance.objectsSrv.postFile_MultipartUpload(ServeManager.ngAssetsPath + this.postFilePath, file).then((value) => {
ServeManager.instance.objectsSrv.postFile_MultipartUpload(this.postFilePath, file).then((value) => {
let dataObj = value as any;
console.log("分块上传完成", dataObj.filePath);
dataObj.filePath = dataObj.filePath.replace(dataObj.name, ""); //去掉结尾的文件名
ServeManager.instance.onGetPostFileResult(dataObj.fileName, dataObj.filePath, file);
});

5
src/app/babylon/view/building-window/building-window.ts

@ -1,4 +1,5 @@
import { PlanComponent } from "src/app/pages/plan/plan.component";
import { DataManager } from "../../controller/data-manager";
import { InfoManager } from "../../controller/info-manager";
import { SceneManager } from "../../controller/scene-manager";
@ -26,7 +27,7 @@ export class BuildingWindow extends UIBase {
currentBuidngItem: BuildingUIItem; //当前正在操作的建筑
// three: ThreeDimensionalHomeComponent;//前端组件
three: PlanComponent;//前端组件
@ -211,7 +212,7 @@ export class BuildingWindow extends UIBase {
// this.three = ThreeDimensionalHomeComponent.instance;
this.three = PlanComponent.instance;
// this.three.getAllBuilding(this);
}

Loading…
Cancel
Save