|
@@ -812,8 +812,8 @@ export const assistanceData = {
|
|
|
|
|
|
export const setOption = (deviceType?) => {
|
|
|
let yMax = 4500;
|
|
|
- const { sysOrgCode } = useGlobSetting();
|
|
|
-
|
|
|
+
|
|
|
+ const sysOrgCode = 'sdmtjtwlmlmk';
|
|
|
if (sysOrgCode == 'sdmtjtdltmk') {
|
|
|
|
|
|
if (deviceType == 'fanmain_bjq') {
|
|
@@ -841,6 +841,8 @@ export const setOption = (deviceType?) => {
|
|
|
yMax = 3000;
|
|
|
} else if (sysOrgCode == 'sdmtjtcctrk') {
|
|
|
yMax = 600;
|
|
|
+ } else if (sysOrgCode == 'sdmtjtwlmlmk') {
|
|
|
+ yMax = 4000;
|
|
|
} else {
|
|
|
yMax = 4500;
|
|
|
}
|
|
@@ -1151,8 +1153,8 @@ export const initData1 = () => {
|
|
|
|
|
|
|
|
|
export const initData = (deviceType?) => {
|
|
|
- const { sysOrgCode } = useGlobSetting();
|
|
|
-
|
|
|
+
|
|
|
+ const sysOrgCode = 'sdmtjtwlmlmk';
|
|
|
if (sysOrgCode == 'sdmtjtdltmk') {
|
|
|
return initDataDlt(deviceType);
|
|
|
} else if (sysOrgCode == 'sdmtjtswmk') {
|
|
@@ -1171,10 +1173,72 @@ export const initData = (deviceType?) => {
|
|
|
return initDataJj();
|
|
|
} else if (sysOrgCode == 'sdmtjtcctrk') {
|
|
|
return initDataCctr();
|
|
|
+ } else if (sysOrgCode == 'sdmtjtwlmlmk') {
|
|
|
+ return initDataWlml();
|
|
|
} else {
|
|
|
return initData1();
|
|
|
}
|
|
|
};
|
|
|
+
|
|
|
+const initDataWlml = () => {
|
|
|
+ const data: any[] = [];
|
|
|
+ data.push({
|
|
|
+ angle: -3,
|
|
|
+ Hz: -3,
|
|
|
+ a: -15.607,
|
|
|
+ b: 6242.3,
|
|
|
+ c: -621571,
|
|
|
+ min: 198,
|
|
|
+ max: 220,
|
|
|
+ });
|
|
|
+ data.push({
|
|
|
+ angle: -2,
|
|
|
+ Hz: -2,
|
|
|
+ a: -8.3134,
|
|
|
+ b: 3178.9,
|
|
|
+ c: -300224,
|
|
|
+ min: 198,
|
|
|
+ max: 220,
|
|
|
+ });
|
|
|
+ data.push({
|
|
|
+ angle: 0,
|
|
|
+ Hz: 0,
|
|
|
+ a: -8.9632,
|
|
|
+ b: 3751.3,
|
|
|
+ c: -389068,
|
|
|
+ min: 198,
|
|
|
+ max: 220,
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ return data;
|
|
|
+};
|
|
|
+
|
|
|
|
|
|
const initDataCctr = () => {
|
|
|
const data: any[] = [];
|