|
|
|
@ -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", |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|