@ -0,0 +1,32 @@ |
|||||||
|
|
||||||
|
import { FacilityType } from "../../../../model-data/model-data-facility"; |
||||||
|
import { PropertyData_Base } from "../property-data-base"; |
||||||
|
|
||||||
|
/** |
||||||
|
* 加油机 |
||||||
|
*/ |
||||||
|
export class PropertyData_JYJ extends PropertyData_Base { |
||||||
|
|
||||||
|
brand: string = ""; //品牌
|
||||||
|
superBrand: string = ""; //超大牌
|
||||||
|
oilGunNum: string = ""; //油枪数量
|
||||||
|
oilProductNo: string = ""; //油品品号
|
||||||
|
oilPumpType: string = ""; //油泵类型
|
||||||
|
|
||||||
|
constructor(key: string, brand: string, superBrand: string, oilGunNum: string, oilProductNo: string, oilPumpType: string) { |
||||||
|
super(key, FacilityType.JY_JYJ); |
||||||
|
this.name = "未命名"; |
||||||
|
this.brand = brand |
||||||
|
this.superBrand = superBrand |
||||||
|
this.oilGunNum = oilGunNum |
||||||
|
this.oilProductNo = oilProductNo |
||||||
|
this.oilPumpType = oilPumpType |
||||||
|
} |
||||||
|
|
||||||
|
clone(key: string) { |
||||||
|
let result = new PropertyData_JYJ(key, this.brand, this.superBrand, this.oilGunNum, this.oilProductNo, this.oilPumpType); |
||||||
|
result.name = this.name; |
||||||
|
return result; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
|
||||||
|
import { FacilityType } from "../../../../model-data/model-data-facility"; |
||||||
|
import { PropertyData_Base_IMG } from "../base/property-data-base-img"; |
||||||
|
import { PropertyData_Base } from "../property-data-base"; |
||||||
|
|
||||||
|
/** |
||||||
|
* 输油管 |
||||||
|
*/ |
||||||
|
export class PropertyData_SYGX extends PropertyData_Base_IMG { |
||||||
|
|
||||||
|
constructor(key: string) { |
||||||
|
super(key, "", "", "", FacilityType.JY_SYGX); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
clone(key: string) { |
||||||
|
let result = new PropertyData_SYGX(key); |
||||||
|
result.img = this.img; |
||||||
|
result.pos = this.pos; |
||||||
|
result.info = this.info, |
||||||
|
result.is360 = this.is360; |
||||||
|
return result; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,34 @@ |
|||||||
|
|
||||||
|
import { FacilityType } from "../../../../model-data/model-data-facility"; |
||||||
|
import { PropertyData_Base } from "../property-data-base"; |
||||||
|
|
||||||
|
/** |
||||||
|
* 油罐 |
||||||
|
*/ |
||||||
|
export class PropertyData_YG extends PropertyData_Base { |
||||||
|
|
||||||
|
oilProductNo: string = ""; //油品品号
|
||||||
|
oilTankVolume: string = ""; //油罐容积
|
||||||
|
safeVolume: string = ""; //安全容积
|
||||||
|
quantity: string = ""; //数量
|
||||||
|
tankFarm: string = ""; //罐区
|
||||||
|
oilTankType: string = ""; //油罐类型
|
||||||
|
|
||||||
|
constructor(key: string,oilProductNo: string,oilTankVolume: string,safeVolume: string,quantity: string,tankFarm: string,oilTankType: string) { |
||||||
|
super(key, FacilityType.JY_YG); |
||||||
|
this.name = "未命名"; |
||||||
|
this.oilProductNo = oilProductNo |
||||||
|
this.oilTankVolume = oilTankVolume |
||||||
|
this.safeVolume = safeVolume |
||||||
|
this.quantity = quantity |
||||||
|
this.tankFarm = tankFarm |
||||||
|
this.oilTankType = oilTankType |
||||||
|
} |
||||||
|
|
||||||
|
clone(key: string) { |
||||||
|
let result = new PropertyData_YG(key,this.oilProductNo,this.oilTankVolume,this.safeVolume,this.quantity,this.tankFarm,this.oilTankType); |
||||||
|
result.name = this.name; |
||||||
|
return result; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
|
||||||
|
import { FacilityType } from "../../../../model-data/model-data-facility"; |
||||||
|
import { PropertyData_Base_IMG } from "../base/property-data-base-img"; |
||||||
|
import { PropertyData_Base } from "../property-data-base"; |
||||||
|
|
||||||
|
/** |
||||||
|
* 输油管 |
||||||
|
*/ |
||||||
|
export class PropertyData_YQHSGX extends PropertyData_Base_IMG { |
||||||
|
|
||||||
|
constructor(key: string) { |
||||||
|
super(key, "", "", "", FacilityType.JY_YQHSGX); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
clone(key: string) { |
||||||
|
let result = new PropertyData_YQHSGX(key); |
||||||
|
result.img = this.img; |
||||||
|
result.pos = this.pos; |
||||||
|
result.info = this.info, |
||||||
|
result.is360 = this.is360; |
||||||
|
return result; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,64 @@ |
|||||||
|
|
||||||
|
/** |
||||||
|
* 语音工具 |
||||||
|
*/ |
||||||
|
export class SpeakingTool { |
||||||
|
|
||||||
|
private static instance: SpeakingTool; |
||||||
|
|
||||||
|
static get Instance() { |
||||||
|
if (SpeakingTool.instance == null) { |
||||||
|
SpeakingTool.instance = new SpeakingTool(); |
||||||
|
} |
||||||
|
return SpeakingTool.instance; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 阅读一段文字 |
||||||
|
* @param msg
|
||||||
|
*/ |
||||||
|
speak(msg: string) { |
||||||
|
if (this.isIE()) { |
||||||
|
|
||||||
|
} |
||||||
|
else { |
||||||
|
let speakMsg = new SpeechSynthesisUtterance(msg); |
||||||
|
speakMsg.lang = "zh-CN"; |
||||||
|
speakMsg.rate = 1; |
||||||
|
speakMsg.pitch = 1.5; |
||||||
|
window.speechSynthesis.speak(speakMsg); |
||||||
|
|
||||||
|
return speakMsg; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 暂停正在进行的阅读 |
||||||
|
* @param speakMsg
|
||||||
|
*/ |
||||||
|
pause() { |
||||||
|
window.speechSynthesis.pause(); |
||||||
|
} |
||||||
|
/** |
||||||
|
* 继续之前暂停的阅读 |
||||||
|
*/ |
||||||
|
resume() { |
||||||
|
window.speechSynthesis.resume(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* IE浏览器 |
||||||
|
*/ |
||||||
|
private isIE() { |
||||||
|
// if ("ActiveXObject" in window) {
|
||||||
|
// console.log("IE 浏览器")
|
||||||
|
// return true;
|
||||||
|
// }
|
||||||
|
// else {
|
||||||
|
// return false;
|
||||||
|
// }
|
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
} |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 9.1 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 8.9 KiB |