|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
import { Component, ElementRef, OnInit, ViewChild } from '@angular/core'; |
|
|
|
|
import Viewer from 'viewerjs'; |
|
|
|
|
import { Game } from 'src/app/babylon/game'; |
|
|
|
|
import { LoginSatus } from 'src/app/babylon/controller/status/login-status'; |
|
|
|
|
import { StatusManager } from 'src/app/babylon/controller/status/status-manager'; |
|
|
|
@ -23,6 +24,7 @@ import { AllMarkData } from 'src/app/babylon/model/data/mark/all-mark-data';
|
|
|
|
|
import { MarkData, MarkTask } from 'src/app/babylon/model/data/mark/mark-data'; |
|
|
|
|
import { MarkWindow } from 'src/app/babylon/view/mark-window/mark-window'; |
|
|
|
|
import { AllMarkPlanData, MarkNodeData, MarkPlanData } from 'src/app/babylon/model/data/mark/mark-plan-data'; |
|
|
|
|
import { DataManager, ResType } from 'src/app/babylon/controller/data-manager'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -543,6 +545,36 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
videoDialogType: videoDialog = new videoDialog(true, null); //全景图/视频 弹窗
|
|
|
|
|
planNodeImg: Viewer; //应急预案图片Viewer 实例
|
|
|
|
|
|
|
|
|
|
//上传 图片/视频
|
|
|
|
|
uploadImgVideo(e, isVideo: boolean) { |
|
|
|
|
if (e.target.files.length) { |
|
|
|
|
let maxSize = 20 * 1024 * 1024 //限制30MB
|
|
|
|
|
let file = e.target.files[0] |
|
|
|
|
if (file.size > maxSize) { //超出限制
|
|
|
|
|
this.message.info("上传资源需小于30MB"); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.isShowLoading = true //打开遮罩
|
|
|
|
|
let institutionKey = sessionStorage.getItem('unitId') || "ceshi"; //单位id
|
|
|
|
|
let resType = isVideo? ResType.Video : ResType.Texture |
|
|
|
|
let key = `${(new Date()).getMonth() + 1}-${(new Date()).getDate()}-${(new Date()).getHours()}` |
|
|
|
|
let url = DataManager.getResPath_mark(institutionKey, resType, key) //url
|
|
|
|
|
ServeManager.instance.openFileSelect(file, url, (name: string, path: string) => { //上传
|
|
|
|
|
if (!isVideo) { //img
|
|
|
|
|
this.beforePlanNode.texture = path + name |
|
|
|
|
window.setTimeout(() => { |
|
|
|
|
this.planNodeImg = new Viewer(this.element.nativeElement.querySelector('#planNodeImg'), { url: 'data-original' }); |
|
|
|
|
}, 0) |
|
|
|
|
} else { //video
|
|
|
|
|
this.beforePlanNode.video = path + name |
|
|
|
|
} |
|
|
|
|
this.isShowLoading = false //关闭遮罩
|
|
|
|
|
this.message.info("上传成功!"); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
selectRightTopFast: number = 0; //当前选择功能 快捷栏
|
|
|
|
|
selectAdsorb: boolean = false; //吸附状态
|
|
|
|
|