Browse Source

应急资源上传路径

dev
刘向辉 3 years ago
parent
commit
05761f1202
  1. 26
      src/app/babylon/controller/data-manager.ts
  2. 9
      src/app/babylon/controller/serve-manager.ts
  3. 1
      src/app/babylon/tool/speaking-tool.ts

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

@ -305,6 +305,25 @@ export class DataManager {
return result;
}
/**
*
* @param institutionKey id
* @param resType
* @param key key
*/
static getResPath_mark(institutionKey: string, resType: ResType, key: string) {
let result =
institutionKey.toLocaleLowerCase() +
'/' +
ServeManager.ngAssetsPath +
"mark/" + //表示是应急标绘下的
resType +
'/' +
key +
'/';
return result;
}
// //获取设备资源完整路径
// static getResPath_facility(facilityPosType: FacilityPosType, type: FacilityType): string {
// let result = "mesh/facilities/";
@ -587,5 +606,12 @@ export enum ModelChangeType {
Update,
}
/**
*
*/
export enum ResType {
Texture = "texture",
Video = "video",
}

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

@ -158,7 +158,14 @@ export class ServeManager {
//#region 文件上传
//队列性,批量上传
/**
*
* @param index
* @param files
* @param resPath_out
* @param onOneSuccess
* @param onEnd
*/
uploadFile(index: number, files: File[], resPath_out, onOneSuccess: (name: string, path: string, file: File) => void, onEnd: () => void) {
if (index < files.length) {
console.log("上传文件", files[index].name);

1
src/app/babylon/tool/speaking-tool.ts

@ -20,6 +20,7 @@ export class SpeakingTool {
* @param msg
*/
speak(msg: string) {
console.log("阅读" + msg);
if (this.isIE()) {
}

Loading…
Cancel
Save