邵佳豪 3 years ago
parent
commit
da8cc1a134
  1. 6
      src/app/babylon/controller/data-manager.ts
  2. 22
      src/app/babylon/controller/serve-manager.ts
  3. 1
      src/app/babylon/model/data/institution/facility/all-facility-data.ts
  4. 2
      src/app/babylon/tool/babylon-tool.ts
  5. 9
      src/app/babylon/view/building-window/building-window.ts
  6. 2
      src/app/babylon/view/facility-window/facility-window.ts
  7. 36
      src/app/pages/plan/plan.component.html
  8. 24
      src/app/pages/plan/plan.component.scss
  9. 80
      src/app/pages/plan/plan.component.ts
  10. 50
      src/app/pages/plan/publicPop.scss
  11. 27
      src/app/service/babylon/building-basic-infos.service.ts
  12. 21
      src/app/service/objects.service.ts
  13. BIN
      src/assets/mesh/indexdb/gd/GD.bin
  14. 183
      src/assets/mesh/indexdb/gd/GD.gltf
  15. 5
      src/assets/mesh/indexdb/gd/GD.gltf.manifest
  16. BIN
      src/assets/mesh/indexdb/gd/GD.jpg
  17. 2
      src/theme.less

6
src/app/babylon/controller/data-manager.ts

@ -283,10 +283,9 @@ export class DataManager {
key: string key: string
): string { ): string {
let result = let result =
institutionKey.toLocaleLowerCase() institutionKey.toLocaleLowerCase() +
'/' +
ServeManager.ngAssetsPath +
'/' + '/' +
ServeManager.ngAssetsPath +
buildingKey.toLocaleLowerCase() + buildingKey.toLocaleLowerCase() +
'/' + '/' +
key + key +
@ -302,7 +301,6 @@ export class DataManager {
institutionKey.toLocaleLowerCase() + institutionKey.toLocaleLowerCase() +
'/' + '/' +
ServeManager.ngAssetsPath + ServeManager.ngAssetsPath +
'/' +
buildingKey.toLocaleLowerCase() + buildingKey.toLocaleLowerCase() +
'/' + '/' +
ConfigManager.c_reaPath_facilityProperty + ConfigManager.c_reaPath_facilityProperty +

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

@ -33,9 +33,8 @@ export class ServeManager {
) => void, onError?: (key: string, error: any) => void) { ) => void, onError?: (key: string, error: any) => void) {
this.buildingBISrv.getBuildingBasicInfos(key) this.buildingBISrv.getBuildingBasicInfos(key)
.subscribe(data => { .subscribe(data => {
if (onSuccess) { if (onSuccess) {
onSuccess(key, data); onSuccess(key, JSON.parse((data as any).result));
} }
}, error => { }, error => {
console.error("From serve" + key + "===" + error); console.error("From serve" + key + "===" + error);
@ -49,14 +48,14 @@ export class ServeManager {
saveInstitutionData(institutionData: any, key: string = 'test', onSuccess?: (key: string, saveInstitutionData(institutionData: any, key: string = 'test', onSuccess?: (key: string,
result: string result: string
) => void, onError?: (key: string, error: string) => void) { ) => void, onError?: (key: string, error: string) => void) {
let data = classToPlain(institutionData); let l_data = classToPlain(institutionData);
console.log("保存单位", data); console.log("保存单位", l_data);
this.buildingBISrv.postBuildingBasicInfos(key, data) this.buildingBISrv.postBuildingBasicInfos(key, l_data)
.subscribe(data => { .subscribe(data => {
ModeManager.log("保存单位成功:" + key); console.log("保存单位成功:" + key, l_data);
if (onSuccess) { if (onSuccess) {
onSuccess(key, data); onSuccess(key, data.result);
} }
if (key != "InsList") { if (key != "InsList") {
//ThreeDimensionalHomeComponent.instance.openSnackBar("保存单位成功"); //ThreeDimensionalHomeComponent.instance.openSnackBar("保存单位成功");
@ -96,7 +95,7 @@ export class ServeManager {
.subscribe(data => { .subscribe(data => {
ModeManager.log(data); ModeManager.log(data);
if (onSuccess) { if (onSuccess) {
onSuccess(institutionID, data); onSuccess(institutionID, JSON.parse((data as any).result));
} }
}, (error) => { }, (error) => {
if (error instanceof HttpErrorResponse) { if (error instanceof HttpErrorResponse) {
@ -133,7 +132,7 @@ export class ServeManager {
.subscribe(data => { .subscribe(data => {
ModeManager.log("保存标绘信息成功:" + allMarkPlanData.institutionID); ModeManager.log("保存标绘信息成功:" + allMarkPlanData.institutionID);
if (onSuccess) { if (onSuccess) {
onSuccess(allMarkPlanData.institutionID, data); onSuccess(allMarkPlanData.institutionID, data.result);
} }
// ThreeDimensionalHomeComponent.instance.openSnackBar("保存标绘信息成功"); // ThreeDimensionalHomeComponent.instance.openSnackBar("保存标绘信息成功");
// alert("保存标绘信息成功"); // alert("保存标绘信息成功");
@ -153,6 +152,7 @@ export class ServeManager {
//队列性,批量上传 //队列性,批量上传
uploadFile(index: number, files: File[], resPath_out, onOneSuccess: (name: string, path: string, file: File) => void, onEnd: () => void) { uploadFile(index: number, files: File[], resPath_out, onOneSuccess: (name: string, path: string, file: File) => void, onEnd: () => void) {
if (index < files.length) { if (index < files.length) {
//console.log("上传文件", files[index].name);
ServeManager.instance.openFileSelect(files[index], resPath_out, (name: string, path: string, file: File) => { ServeManager.instance.openFileSelect(files[index], resPath_out, (name: string, path: string, file: File) => {
onOneSuccess(name, path, file); onOneSuccess(name, path, file);
this.uploadFile(index + 1, files, resPath_out, onOneSuccess, onEnd); this.uploadFile(index + 1, files, resPath_out, onOneSuccess, onEnd);
@ -196,6 +196,7 @@ export class ServeManager {
let dataObj = data as any; let dataObj = data as any;
let fileName = dataObj.fileName; let fileName = dataObj.fileName;
let filePath: string = dataObj.objectName;//此路径不全,前面缺少ObjectsService.baseUrl,这部分不可序列化,要在运行时拼接 let filePath: string = dataObj.objectName;//此路径不全,前面缺少ObjectsService.baseUrl,这部分不可序列化,要在运行时拼接
//console.log("上传完成,地址为", filePath);
filePath = filePath.replace(fileName, "");//去掉结尾的文件名 filePath = filePath.replace(fileName, "");//去掉结尾的文件名
//filePath = ObjectsService.baseUrl + filePath; //filePath = ObjectsService.baseUrl + filePath;
ServeManager.instance.onGetPostFileResult(fileName, filePath, file); ServeManager.instance.onGetPostFileResult(fileName, filePath, file);
@ -222,8 +223,9 @@ export class ServeManager {
* @param file * @param file
*/ */
postFileByMul(file: 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; let dataObj = value as any;
console.log("分块上传完成", dataObj.filePath);
dataObj.filePath = dataObj.filePath.replace(dataObj.name, ""); //去掉结尾的文件名 dataObj.filePath = dataObj.filePath.replace(dataObj.name, ""); //去掉结尾的文件名
ServeManager.instance.onGetPostFileResult(dataObj.fileName, dataObj.filePath, file); ServeManager.instance.onGetPostFileResult(dataObj.fileName, dataObj.filePath, file);
}); });

1
src/app/babylon/model/data/institution/facility/all-facility-data.ts

@ -55,6 +55,7 @@ export class AllFacilityData {
//新建设备信息 //新建设备信息
static newFacilityData(type: FacilityType, posType: FacilityPosType, allFacilityData: AllFacilityData, isModel: boolean = true): ModelData_facility { static newFacilityData(type: FacilityType, posType: FacilityPosType, allFacilityData: AllFacilityData, isModel: boolean = true): ModelData_facility {
return;
let name = ConfigManager.getFacilityTypeName(type); let name = ConfigManager.getFacilityTypeName(type);
let result = new ModelData_facility(type.toString(), type, name, DataManager.getResName_facility(type) + ".gltf", new TransformData(), posType, isModel); let result = new ModelData_facility(type.toString(), type, name, DataManager.getResName_facility(type) + ".gltf", new TransformData(), posType, isModel);
switch (posType) { switch (posType) {

2
src/app/babylon/tool/babylon-tool.ts

@ -129,7 +129,7 @@ export class BabylonTool {
path = ConfigManager.c_resPath_assetsRoot + rootUrl; path = ConfigManager.c_resPath_assetsRoot + rootUrl;
} }
else { else {
path = ObjectsService.baseUrl + path; //根据环境,动态改变桶名 path = ObjectsService.getFullPath(path); //根据环境,动态改变桶名
} }
console.log("异步加载模型" + path + sceneFilename); console.log("异步加载模型" + path + sceneFilename);

9
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 { DataManager } from "../../controller/data-manager";
import { InfoManager } from "../../controller/info-manager"; import { InfoManager } from "../../controller/info-manager";
import { SceneManager } from "../../controller/scene-manager"; import { SceneManager } from "../../controller/scene-manager";
@ -26,7 +27,7 @@ export class BuildingWindow extends UIBase {
currentBuidngItem: BuildingUIItem; //当前正在操作的建筑 currentBuidngItem: BuildingUIItem; //当前正在操作的建筑
// three: ThreeDimensionalHomeComponent;//前端组件 three: PlanComponent;//前端组件
@ -97,9 +98,9 @@ export class BuildingWindow extends UIBase {
let resPath_out = DataManager.getResPath_building( let resPath_out = DataManager.getResPath_building(
DataManager.institutionData.normalData.key.toLowerCase(), DataManager.institutionData.normalData.key.toLowerCase(),
normalData.key.toLocaleLowerCase(), normalData.key.toLocaleLowerCase(),
buildingData.normalData.key "outDoor"
); );
// console.log("新资源路径" + resPath_out); console.log("新资源路径" + resPath_out);
let buildingWindow = this; let buildingWindow = this;
let manifestFile: File = null; let manifestFile: File = null;
@ -211,7 +212,7 @@ export class BuildingWindow extends UIBase {
// this.three = ThreeDimensionalHomeComponent.instance; this.three = PlanComponent.instance;
// this.three.getAllBuilding(this); // this.three.getAllBuilding(this);
} }

2
src/app/babylon/view/facility-window/facility-window.ts

@ -156,7 +156,7 @@ export class FacilityWindow extends UIBase {
let instance = this; let instance = this;
//为了避免多个模型同时加载、导致indexDB创建冲突,所以先加载一个,保证indexDB创建完成 //为了避免多个模型同时加载、导致indexDB创建冲突,所以先加载一个,保证indexDB创建完成
BabylonTool.importMeshSync(null, "assets/facilities/outdoor/gd/", "GD.gltf", undefined, "GD_indexDB", (meshes) => { BabylonTool.importMeshSync(null, "mesh/indexdb/gd/", "GD.gltf", undefined, "GD_indexDB", (meshes) => {
meshes[0].dispose(); meshes[0].dispose();
for (let i = 0; i < facilities.length; i++) { for (let i = 0; i < facilities.length; i++) {

36
src/app/pages/plan/plan.component.html

@ -7,12 +7,12 @@
<div class="hideLeft"><i nz-icon nzType="close" nzTheme="outline" title="隐藏" (click)="toggleLeftBuilding(false)"></i></div> <div class="hideLeft"><i nz-icon nzType="close" nzTheme="outline" title="隐藏" (click)="toggleLeftBuilding(false)"></i></div>
<div class="leftHeader"> <div class="leftHeader">
<h1><label>模型列表</label></h1> <h1><label>模型列表</label></h1>
<button nz-button nzType="primary" (click)="isShowBuildingPop = true">新建</button> <button nz-button nzType="primary" (click)="addBuildingPop = true">新建</button>
</div> </div>
<div class="leftCenter"> <div class="leftCenter">
<div class="everyBuilding" *ngFor="let item of buildingUIItems" (click)='selectLeftBuilding(item)' [ngClass]="{'selectLeftBuilding': beforeOneBuildingID == item.getBuildingID()}"> <div class="everyBuilding" *ngFor="let item of buildingUIItems" (click)='selectLeftBuilding(item)' [ngClass]="{'selectLeftBuilding': beforeOneBuildingID == item.getBuildingID()}">
<label style="flex: 1;" class="overflowText modelTitle">{{item.getBuildingName()}}</label> <label style="flex: 1;" class="overflowText modelTitle">{{item.getBuildingName()}}</label>
<label style="width: 95px; overflow: hidden;"> <label style="width: 50px; overflow: hidden;">
<i nz-icon nzType="edit" nzTheme="outline" title="编辑" (click)="editModelBuilding($event,item)"></i> <i nz-icon nzType="edit" nzTheme="outline" title="编辑" (click)="editModelBuilding($event,item)"></i>
<i nz-icon nzType="delete" nzTheme="outline" title="删除" (click)="deleteModelBuilding($event,item)"></i> <i nz-icon nzType="delete" nzTheme="outline" title="删除" (click)="deleteModelBuilding($event,item)"></i>
</label> </label>
@ -21,13 +21,35 @@
</div> </div>
<!-- 左侧建筑 --> <!-- 左侧建筑 -->
<!-- 右上角快捷栏 -->
<div class="rightTopFast">
<div style="margin: 0 10px; background-color: #0080FF;" title="保存"><button (click)="preserve()"><i nz-icon nzType="save" nzTheme="outline" style="font-size: 20px;"></i></button></div>
</div>
<!-- 右上角快捷栏 -->
<!-- 新增/编辑左侧建筑弹窗 --> <!-- 新增/编辑左侧建筑弹窗 -->
<nz-modal [(nzVisible)]="isShowBuildingPop" nzTitle="创建/编辑建筑" (nzOnCancel)="isShowBuildingPop = false" (nzOnOk)="addModelBuilding()"> <nz-modal [(nzVisible)]="addBuildingPop || editBuildingPop" nzTitle="创建/编辑建筑" (nzOnCancel)="addBuildingPop = false; editBuildingPop = null;" (nzOnOk)="addModelBuilding(form.value)" [nzOkDisabled]='name.invalid||modelType.invalid'>
<form nz-form> <form nz-form #form='ngForm'>
<nz-form-item>
<nz-form-label [nzSpan]="6">名称</nz-form-label>
<nz-form-control [nzSpan]="18" nzErrorTip="请输入必填项">
<input nz-input #name='ngModel' [(ngModel)]="modelBuilding.name" name="name" required/>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label [nzSpan]="6">请选择模型类型</nz-form-label>
<nz-form-control [nzSpan]="18" nzErrorTip="请选择必填项">
<nz-select #modelType='ngModel' [(ngModel)]="modelBuilding.modelType" name="modelType" required>
<nz-option nzValue="normal" nzLabel="建筑物"></nz-option>
<nz-option nzValue="environment" nzLabel="场景"></nz-option>
</nz-select>
</nz-form-control>
</nz-form-item>
<nz-form-item> <nz-form-item>
<nz-form-label [nzSpan]="5">名称</nz-form-label> <nz-form-label [nzSpan]="6">上传文件</nz-form-label>
<nz-form-control [nzSpan]="12" nzErrorTip="请输入必填项"> <nz-form-control [nzSpan]="18" nzErrorTip="请上传文件">
<input nz-input ngModel name="name" required/> <a href="javascript:;" class="uploadBackGround"><input type="file" (change)='selectFile($event)' multiple>上传文件<i nz-icon nzType="cloud-upload" nzTheme="outline"></i></a>
<p *ngIf="uploadList.length" style="font-size: 14px; text-align: left; max-height: 500px; overflow: hidden;">选择文件: <label *ngFor="let item of uploadList">{{item.name}}, </label></p>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>
</form> </form>

24
src/app/pages/plan/plan.component.scss

@ -5,6 +5,7 @@
position: relative; position: relative;
canvas{ width: 100%; height: 100%; border: none; outline: none; } canvas{ width: 100%; height: 100%; border: none; outline: none; }
} }
.anticon { font-size: 16px; cursor: pointer; } //字体图标
//文本溢出 //文本溢出
.overflowText{ .overflowText{
overflow: hidden; overflow: hidden;
@ -64,6 +65,7 @@
border-bottom: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1);
.modelTitle { font-size: 14px; } .modelTitle { font-size: 14px; }
label { display: block; } label { display: block; }
.anticon { margin: 0 3px; } //字体图标
} }
.selectLeftBuilding { background-color: #2196f3; } //选中样式 .selectLeftBuilding { background-color: #2196f3; } //选中样式
} }
@ -71,4 +73,26 @@
.isShowLeftBuilding{ //隐藏 动态效果 .isShowLeftBuilding{ //隐藏 动态效果
margin-left: -300px; margin-left: -300px;
transition: margin-left 0.5s; transition: margin-left 0.5s;
}
//右上角快捷栏
.rightTopFast{
width: 60px;
height: 38px;
position: absolute;
right: 1px;
top: 1%;
overflow: hidden;
box-sizing: border-box;
display: flex;
>div { height: 38px; border-radius: 5px; }
button {
width: 36px;
height: 36px;
border: none;
outline: none;
background-color: transparent;
color: #fff;
cursor: pointer;
}
} }

80
src/app/pages/plan/plan.component.ts

@ -7,13 +7,18 @@ import { ModeManager } from 'src/app/babylon/controller/mode-manager';
import { ServeManager } from 'src/app/babylon/controller/serve-manager'; import { ServeManager } from 'src/app/babylon/controller/serve-manager';
import { BuildingBasicInfosService } from 'src/app/service/babylon/building-basic-infos.service'; import { BuildingBasicInfosService } from 'src/app/service/babylon/building-basic-infos.service';
import { ObjectsService } from 'src/app/service/objects.service'; import { ObjectsService } from 'src/app/service/objects.service';
import { ToolbarWindow } from 'src/app/babylon/view/toolbar-window/toobar-window';
import { BuildingStatus } from 'src/app/babylon/controller/status/building-status';
import { BuildingUIItem } from 'src/app/babylon/view/building-window/building-ui-item';
import { BuildingType } from 'src/app/babylon/model/data/institution/building/building-data';
import { BuildingWindow } from 'src/app/babylon/view/building-window/building-window';
@Component({ @Component({
selector: 'app-plan', selector: 'app-plan',
templateUrl: './plan.component.html', templateUrl: './plan.component.html',
styleUrls: ['./plan.component.scss','./publicPop.scss'] styleUrls: ['./plan.component.scss', './publicPop.scss']
}) })
export class PlanComponent implements OnInit { export class PlanComponent implements OnInit {
@ -36,6 +41,7 @@ export class PlanComponent implements OnInit {
loginStatus.getInstitutionListFromServe((result: InsitutionDataSimple[], data: any) => { loginStatus.getInstitutionListFromServe((result: InsitutionDataSimple[], data: any) => {
if (ModeManager.institutionDemoKey == ModeManager.c_demoKey_null) { //无指定测试单位,则为正式启动,根据当前单位key寻找 if (ModeManager.institutionDemoKey == ModeManager.c_demoKey_null) { //无指定测试单位,则为正式启动,根据当前单位key寻找
let key = 'ceshi'; let key = 'ceshi';
console.log("获取数据", data);
let find = data.find(item => { return item.key === key }) let find = data.find(item => { return item.key === key })
if (find) { //如果在data中找到了对应的单位key,则表示已经有三维数据,直接进入 if (find) { //如果在data中找到了对应的单位key,则表示已经有三维数据,直接进入
console.log("找到已有单位" + key); console.log("找到已有单位" + key);
@ -65,40 +71,82 @@ export class PlanComponent implements OnInit {
} }
//开发模式 选择单位 弹窗 //开发模式 选择单位 弹窗
modelInit(InsList) { modelInit(InsList) { }
console.log(InsList)
}
buildingUIItems: any[] = []; //左侧 建筑list buildingUIItems: BuildingUIItem[] = []; //左侧 建筑list
beforeOneBuildingID: string = null; //选中 左侧建筑ID beforeOneBuildingID: string = null; //选中 左侧建筑ID
isShowBuildingPop: boolean = false; //显隐 新增/编辑左侧建筑弹窗 modelBuilding: modelBuilding = new modelBuilding(); //创建/编辑 建筑ngModel数据
isShowLeftBuilding: boolean = true; //显隐 建筑 addBuildingPop: boolean = false; //显隐 新增左侧建筑弹窗
toggleLeftBuilding(e) { this.isShowLeftBuilding = e }; //显隐 建筑 editBuildingPop: BuildingUIItem = null; //显隐 编辑左侧建筑弹窗
isShowLeftBuilding: boolean = true; //显隐 建筑list
toggleLeftBuilding(e) { this.isShowLeftBuilding = e }; //显隐 建筑list
uploadList: File[] = []; //多选上传文件
//选择文件
selectFile(e) {
if (e.target.files.length) {
this.uploadList = [] //多选上传
Object.keys(e.target.files).forEach(item => { this.uploadList.push(e.target.files[item]) })
}
}
//选择建筑 //选择建筑
selectLeftBuilding(e) { selectLeftBuilding(e) {
let item: BuildingUIItem = e;
this.beforeOneBuildingID = item.getBuildingID()
item.select();
} }
//创建建筑 //创建/编辑建筑
addModelBuilding() { addModelBuilding(e: modelBuilding) {
console.log('add') if (this.addBuildingPop) { //新增
let order = this.buildingUIItems.length + 1;
this.beforeOneSatus = StatusManager.getStatus<BuildingStatus>(BuildingStatus);
let buildingWindow: BuildingWindow = this.beforeOneSatus.buildingWindow;
let newBuildingData = this.beforeOneSatus.createOneBuildingInData(e.name, e.name, e.modelType);
buildingWindow.changeModel(this.uploadList, newBuildingData);
buildingWindow.createOneBuildingItem(newBuildingData, order);
this.modelBuilding = new modelBuilding();
this.buildingUIItems = this.beforeOneSatus.buildingWindow.buildingUIItems; //更新 建筑列表list
this.addBuildingPop = false; //关闭弹窗
} else if (this.editBuildingPop) { //编辑
this.editBuildingPop.setBuildingName(e.name);
this.editBuildingPop.changeModel(this.uploadList);
this.editBuildingPop = null; //关闭弹窗
}
} }
//编辑建筑 //打开编辑建筑 弹窗
editModelBuilding(event, e) { editModelBuilding(event, e: BuildingUIItem) {
event.stopPropagation() event.stopPropagation()
this.modelBuilding.name = JSON.parse(JSON.stringify(e.getBuildingName()))
this.modelBuilding.modelType = JSON.parse(JSON.stringify(e.getBuildingType()))
this.editBuildingPop = e; //打开弹窗
} }
//删除建筑 //删除建筑
deleteModelBuilding(event, e) { deleteModelBuilding(event, e: BuildingUIItem) {
event.stopPropagation() event.stopPropagation()
let isTrue = confirm('您确定要删除吗') let isTrue = confirm('您确定要删除吗')
if (isTrue) { if (isTrue) {
this.beforeOneSatus = StatusManager.getStatus<BuildingStatus>(BuildingStatus);
let buildingWindow: BuildingWindow = this.beforeOneSatus.buildingWindow;
buildingWindow.deleteBuilding(e)
this.buildingUIItems = this.beforeOneSatus.buildingWindow.buildingUIItems; //更新 建筑列表list
} }
} }
//保存
preserve() {
ToolbarWindow.instance.onBtnSave();
}
} }
//创建/编辑 建筑dataType
export class modelBuilding {
name: string = "";
modelType: BuildingType = BuildingType.Normal;
}

50
src/app/pages/plan/publicPop.scss

@ -1,30 +1,24 @@
.keyMargin { //上传CAD弹窗 inputfile
.uploadBackGround {
width: 125px;
padding: 0 25px;
height: 30px;
line-height: 30px;
position: relative;
cursor: pointer;
color: #0275e7;
font-size: 14px;
background: #fafafa;
border: 1px solid #0275e7;
border-radius: 5px;
overflow: hidden;
display: inline-block;
}
.uploadBackGround input {
position: absolute;
width: 100%; width: 100%;
margin-bottom: 10px; right: 0;
text-align: center; top: 0;
.mat-form-field { width: 100%; } opacity: 0;
//上传CAD弹窗 inputfile cursor: pointer
.uploadBackGround {
width: 125px;
padding: 0 25px;
height: 30px;
line-height: 30px;
position: relative;
cursor: pointer;
color: #0275e7;
font-size: 14px;
background: #fafafa;
border: 1px solid #0275e7;
border-radius: 5px;
overflow: hidden;
display: inline-block;
}
.uploadBackGround input {
position: absolute;
width: 100%;
right: 0;
top: 0;
opacity: 0;
cursor: pointer
}
} }

27
src/app/service/babylon/building-basic-infos.service.ts

@ -7,6 +7,10 @@ import { catchError, retry } from 'rxjs/operators';
providedIn: 'root' providedIn: 'root'
}) })
export class BuildingBasicInfosService { export class BuildingBasicInfosService {
readonly c_get = "/Get";
readonly c_post = "/PostOrPut";
//获取单位信息的api //获取单位信息的api
baseUrl = 'api/Services/3D/BuildingBasicInfo'; baseUrl = 'api/Services/3D/BuildingBasicInfo';
@ -24,7 +28,7 @@ export class BuildingBasicInfosService {
* *
*/ */
getBuildingBasicInfos(name: string): Observable<string> { getBuildingBasicInfos(name: string): Observable<string> {
return this.http.get<string>(this.baseUrl + '?name=' + name); return this.http.get<string>(this.baseUrl + this.c_get + '?name=' + name);
} }
/** /**
* *
@ -32,7 +36,11 @@ export class BuildingBasicInfosService {
* @param data * @param data
*/ */
postBuildingBasicInfos(name: string, data: any): Observable<any> { postBuildingBasicInfos(name: string, data: any): Observable<any> {
return this.http.post<any>(this.baseUrl + '?name=' + name, data) let params = {
name: name,
content: JSON.stringify(data),
}
return this.http.post<any>(this.baseUrl + this.c_post, {}, { params })
.pipe( .pipe(
catchError((err) => this.handleError(err)) catchError((err) => this.handleError(err))
); );
@ -45,7 +53,7 @@ export class BuildingBasicInfosService {
getMarkData(name: string): Observable<string> { getMarkData(name: string): Observable<string> {
// name = "bb"; // name = "bb";
let id = { "name": name }; let id = { "name": name };
return this.http.get<string>(this.markUrl, { params: id }).pipe( //'?name=' return this.http.get<string>(this.markUrl + this.c_get, { params: id }).pipe( //'?name='
catchError((err) => this.handleError(err)) catchError((err) => this.handleError(err))
); );
} }
@ -56,7 +64,11 @@ export class BuildingBasicInfosService {
* @param data * @param data
*/ */
postMarkData(name: string, data: any): Observable<any> { postMarkData(name: string, data: any): Observable<any> {
return this.http.post<any>(this.markUrl + '?name=' + name, data) let params = {
name: name,
content: JSON.stringify(data),
}
return this.http.post<any>(this.markUrl + this.c_post, {}, { params })
.pipe( .pipe(
catchError((err) => this.handleError(err)) catchError((err) => this.handleError(err))
); );
@ -85,3 +97,10 @@ export class BuildingBasicInfosService {
error); error);
} }
} }
/**
*
*/
class HttpResult {
}

21
src/app/service/objects.service.ts

@ -29,7 +29,6 @@ export class ObjectsService {
static readonly c_apiRoot = "/api/Objects/";//普通上传的API根路径 static readonly c_apiRoot = "/api/Objects/";//普通上传的API根路径
static apiRoot_Multipart = "/api/";//分块上传的API根路径 static apiRoot_Multipart = "/api/";//分块上传的API根路径
/** /**
* *
*/ */
@ -40,13 +39,23 @@ export class ObjectsService {
*/ */
static baseUrl; static baseUrl;
/**
*
* @param extensionPath ,
* 1 extensionPath = ceshi/assets//outDoor/a.gltf /api/Objects/{}/ceshi/assets//outDoor/a.gltf
* 2extensionPath = ceshi/web/a.rgb /api/Objects/{}/ceshi/web/a.rgb
*/
static getFullPath(extensionPath: string) {
return ObjectsService.baseUrl + extensionPath;
}
/** /**
* *
*/ */
obsRootByEnv = new Map<EnvironmentType, string>([ obsRootByEnv = new Map<EnvironmentType, string>([
[EnvironmentType.DevelopEditor, "sinochemweb/"], //开发与编辑 [EnvironmentType.DevelopEditor, "sinochemweb/"], //开发与编辑
[EnvironmentType.Test, "sinochem3d/"],//测试 [EnvironmentType.Test, "sinochem3d/"],//测试
[EnvironmentType.Production, "prod/"],//生产环境(根据需要设置) [EnvironmentType.Production, "sinochem3d/"],//生产环境(根据需要设置)最好是与测试环境的桶名相同
]); ]);
@ -62,9 +71,6 @@ export class ObjectsService {
return this.obsRootByEnv.get(ObjectsService.currentEnvironmentType); return this.obsRootByEnv.get(ObjectsService.currentEnvironmentType);
} }
/** /**
* 5M * 5M
*/ */
@ -72,12 +78,9 @@ export class ObjectsService {
let formData = new FormData() let formData = new FormData()
formData.append("file", file, file.name) formData.append("file", file, file.name)
let data = { keepOriginalName: 'true' } let data = { keepOriginalName: 'true' }
return this.http.post(ObjectsService.baseUrl + extensionPath, formData, { params: data }); return this.http.post(ObjectsService.getFullPath(extensionPath), formData, { params: data });
} }
//分块上传 //分块上传
postFile_MultipartUpload(extensionPath: string, file: File): Promise<Object> { postFile_MultipartUpload(extensionPath: string, file: File): Promise<Object> {
// let formData = new FormData() // let formData = new FormData()

BIN
src/assets/mesh/indexdb/gd/GD.bin

Binary file not shown.

183
src/assets/mesh/indexdb/gd/GD.gltf

@ -0,0 +1,183 @@
{
"asset": {
"version": "2.0",
"generator": "babylon.js glTF exporter for 3dsmax 2020 v20201214.2"
},
"scene": 0,
"scenes": [
{
"nodes": [
0
]
}
],
"nodes": [
{
"mesh": 0,
"translation": [
33.9399452,
158.461441,
35.7631378
],
"rotation": [
0.5688382,
2.48647058e-8,
0.8224495,
3.59504071e-8
],
"scale": [
0.385688841,
0.385688871,
1.14512515
],
"name": "GaoDu",
"extras": {
"mr displacement use global settings": true,
"mr displacement view dependent": true,
"mr displacement method": 6,
"mr displacement smoothing on": true,
"mr displacement edge length": 2,
"mr displacement max displace": 20,
"mr displacement parametric subdivision level": 5
}
}
],
"meshes": [
{
"primitives": [
{
"attributes": {
"POSITION": 1,
"TANGENT": 2,
"NORMAL": 3,
"TEXCOORD_0": 4
},
"indices": 0,
"material": 0,
"mode": 4,
"extensions": {
"KHR_draco_mesh_compression": {
"bufferView": 0,
"attributes": {
"POSITION": 0,
"TANGENT": 1,
"NORMAL": 2,
"TEXCOORD_0": 3
}
}
}
}
],
"name": "GaoDu"
}
],
"accessors": [
{
"componentType": 5123,
"count": 20832,
"type": "SCALAR",
"name": "accessorIndices"
},
{
"componentType": 5126,
"count": 19248,
"max": [
35.525958153932585,
411.2544466350758,
0.6266869361514412
],
"min": [
-38.73667433507572,
-411.2543856350757,
-0.5775719690757206
],
"type": "VEC3",
"name": "accessorPositions"
},
{
"componentType": 5126,
"count": 19248,
"type": "VEC4",
"name": "accessorTangents"
},
{
"componentType": 5126,
"count": 19248,
"type": "VEC3",
"name": "accessorNormals"
},
{
"componentType": 5126,
"count": 19248,
"type": "VEC2",
"name": "accessorUVs"
}
],
"bufferViews": [
{
"buffer": 0,
"byteOffset": 0,
"byteLength": 307722
}
],
"buffers": [
{
"name": "GD",
"byteLength": 307724,
"uri": "GD.bin"
}
],
"materials": [
{
"pbrMetallicRoughness": {
"baseColorTexture": {
"index": 0,
"texCoord": 0
},
"metallicFactor": 0,
"roughnessFactor": 0.450053632,
"baseColorFactor": [
1,
1,
1,
1
]
},
"name": "GD",
"emissiveFactor": [
0,
0,
0
],
"alphaMode": "OPAQUE",
"doubleSided": false
}
],
"textures": [
{
"sampler": 0,
"source": 0,
"name": "GD.jpg"
}
],
"images": [
{
"name": "GD",
"uri": "GD.jpg"
}
],
"samplers": [
{
"magFilter": 9729,
"minFilter": 9987,
"wrapS": 10497,
"wrapT": 10497
}
],
"extensionsRequired": [
"KHR_draco_mesh_compression"
],
"extensionsUsed": [
"KHR_draco_mesh_compression"
]
}

5
src/assets/mesh/indexdb/gd/GD.gltf.manifest

@ -0,0 +1,5 @@
{
"version" : 1,
"enableSceneOffline" : true,
"enableTexturesOffline" : true
}

BIN
src/assets/mesh/indexdb/gd/GD.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

2
src/theme.less

@ -6,7 +6,7 @@
@border-color-base: #8aacce; @border-color-base: #8aacce;
@select-background: #002552; @select-background: transparent;
.ant-select-single:not(.ant-select-customize-input) .ant-select-selector, .ant-select-single:not(.ant-select-customize-input) .ant-select-selector,
.ant-picker, .ant-picker,

Loading…
Cancel
Save