Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
web-project
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
海康威视
web-project
Commits
10394bf0
Commit
10394bf0
authored
Jan 09, 2025
by
方建宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
远程控制-二网群控和循环泵-静态数据
parent
c75d24bb
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
481 additions
and
469 deletions
+481
-469
SecTempControl.vue
src/components/Remote/SecTempControl.vue
+197
-196
TransferRegControl.vue
src/components/Remote/TransferRegControl.vue
+11
-11
CtrlSecondTemp.js
src/dataJson/Remote/CtrlSecondTemp.js
+5
-0
CtrlSecondTemp.vue
src/views/RemotePage/CtrlSecondTemp.vue
+268
-262
No files found.
src/components/Remote/SecTempControl.vue
View file @
10394bf0
...
...
@@ -307,202 +307,203 @@
myIndeterminate
.
value
=
!
myIndeterminate
.
value
;
progress
.
value
=
100
;
}
//原写入和读取
// async function ReadAllStatus(){
// if(selectedRows.value.length === 0){
// ElMessage.warning("请勾选需要远程控制的换热站!");
// return;
// }
// myIndeterminate.value = !myIndeterminate.value;
// progress.value=1;
// isLoading.value = true;
// if(selectedRows){
// var total = selectedRows.value.length;
// var count =0;
// for(const item of selectedRows.value){
// item.transferStatus = 0;
// }
// for(const item of selectedRows.value){
// await ReadStation(item);
// count=count+1;
// progress.value = (count/total*100).toFixed(2);
// }
// }
// isLoading.value = false;
// myIndeterminate.value = !myIndeterminate.value;
// progress.value=100;
// }
// async function WriteStatus(row){
// row.transferStatus = 0;
// myIndeterminate.value = !myIndeterminate.value;
// progress.value=50;
// isLoading.value = true;
// await WriteStation(row);
// isLoading.value = false;
// myIndeterminate.value = !myIndeterminate.value;
// progress.value=100;
// }
// async function WriteAllStatus(){
// if(selectedRows.value.length === 0){
// ElMessage.warning("请勾选需要远程控制的换热站!");
// return;
// }
// if(forms.isDisabled === true){
// ElMessage.error(forms.transferName +" 先读取后写入");
// return;
// }
// myIndeterminate.value = !myIndeterminate.value;
// progress.value=1;
// isLoading.value = true;
// if(selectedRows){
// var total = selectedRows.value.length;
// var count =0;
// for(const item of selectedRows.value){
// item.transferStatus = 0;
// }
// for(const item of selectedRows.value){
// if(item.isDisabled === false){
// await WriteStation(item);
// }else{
// ElMessage.warning(item.transferName + " 写入失败,应先读取再写入");
// item.transferStatus = 2;
// }
// count=count+1;
// progress.value = (count/total*100).toFixed(2);
// }
//
// }
// isLoading.value = false;
// myIndeterminate.value = !myIndeterminate.value;
// progress.value=100;
// }
// async function WriteStation(element){
// try{
// //console.log("write row:"+element.transferName);
// var writeValue = "";
// if(forms.secTempGainAutoOrManual != "" && forms.secTempGainAutoOrManual != null){
// element.secTempGainAutoOrManual=forms.secTempGainAutoOrManual;
// writeValue +="SecTempGainAutoOrManual:"+forms.secTempGainAutoOrManual + ";";
// }
// if(forms.secTempGain1 != "" && forms.secTempGain1 != null){
// element.secTempGain1=forms.secTempGain1;
// writeValue +="SecTempGain1:"+forms.secTempGain1 + ";";
// }
// if(forms.secTempGain2 != "" && forms.secTempGain2 != null){
// element.secTempGain2=forms.secTempGain2;
// writeValue +="SecTempGain2:"+forms.secTempGain2 + ";";
// }
// if(forms.secTempGain3 != "" && forms.secTempGain3 != null){
// element.secTempGain3=forms.secTempGain3;
// writeValue +="SecTempGain3:"+forms.secTempGain3 + ";";
// }
// if(forms.secTempGain4 != "" && forms.secTempGain4 != null){
// element.secTempGain4=forms.secTempGain4;
// writeValue +="SecTempGain4:"+forms.secTempGain4 + ";";
// }
// if(forms.secOutdoorTempStart1 != "" && forms.secOutdoorTempStart1 != null){
// element.secOutdoorTempStart1=forms.secOutdoorTempStart1;
// writeValue +="SecOutdoorTempStart1:"+forms.secOutdoorTempStart1 + ";";
// }
// if(forms.secOutdoorTempStart2 != "" && forms.secOutdoorTempStart2 != null){
// element.secOutdoorTempStart2=forms.secOutdoorTempStart2;
// writeValue +="SecOutdoorTempStart2:"+forms.secOutdoorTempStart2 + ";";
// }
// if(forms.secOutdoorTempStart3 != "" && forms.secOutdoorTempStart3 != null){
// element.secOutdoorTempStart3=forms.secOutdoorTempStart3;
// writeValue +="SecOutdoorTempStart3:"+forms.secOutdoorTempStart3 + ";";
// }
// if(forms.secOutdoorTempStart4 != "" && forms.secOutdoorTempStart4 != null){
// element.secOutdoorTempStart4=forms.secOutdoorTempStart4;
// writeValue +="SecOutdoorTempStart4:"+forms.secOutdoorTempStart4 + ";";
// }
// if(forms.secOutdoorTempEnd1 != "" && forms.secOutdoorTempEnd1 != null){
// element.secOutdoorTempEnd1=forms.secOutdoorTempEnd1;
// writeValue +="SecOutdoorTempEnd1:"+forms.secOutdoorTempEnd1 + ";";
// }
// if(forms.secOutdoorTempEnd2 != "" && forms.secOutdoorTempEnd2 != null){
// element.secOutdoorTempEnd2=forms.secOutdoorTempEnd2;
// writeValue +="SecOutdoorTempEnd2:"+forms.secOutdoorTempEnd2 + ";";
// }
// if(forms.secOutdoorTempEnd3 != "" && forms.secOutdoorTempEnd3 != null){
// element.secOutdoorTempEnd3=forms.secOutdoorTempEnd3;
// writeValue +="SecOutdoorTempEnd3:"+forms.secOutdoorTempEnd3 + ";";
// }
// if(forms.secOutdoorTempEnd4 != "" && forms.secOutdoorTempEnd4 != null){
// element.secOutdoorTempEnd4=forms.secOutdoorTempEnd4;
// writeValue +="SecOutdoorTempEnd4:"+forms.secOutdoorTempEnd4 + ";";
// }
//
// if(forms.upperPIDLimit != "" && forms.upperPIDLimit != null){
// element.upperPIDLimit=forms.upperPIDLimit;
// writeValue +="UpperPIDLimit:"+forms.upperPIDLimit + ";";
// }
//
// if(forms.upperPIDLimit != "" && forms.upperPIDLimit != null){
// element.underPIDLimit=forms.underPIDLimit;
// writeValue +="UnderPIDLimit:"+forms.underPIDLimit + ";";
// }
//
// if(writeValue === ''){
// ElMessage.error(element.transferName +" 未获取到写入数据");
// return;
// }
// //console.log(writeValue);
// var result = await http.post('/api/remote/WriteTransfer', {"TransferId":element.transferId, "WriteValues": writeValue, "PanelType": 4});
// if(result.success){
// ElMessage.success(element.transferName +" "+ result.data);
// element.transferStatus = 1;
// handleRowClick(forms);
// }else{
// ElMessage.error(element.transferName +" "+ result.message);
// if(result.message === "连接异常"){
// element.transferStatus = 3;
// }else{
// element.transferStatus = 2;
// }
// }
// }catch(error){
// ElMessage.error(element.transferName +" "+ error.message);
// element.transferStatus = 3;
// }
// }
// async function ReadStation(row){
// var result = await http.post('/api/remote/ReadSecTemp', row.transferId);
// if(result.success){
// var jobj = result.data[0];
// //console.log("Value:"+jobj);
// if(jobj && visibleData){
// for(const element of visibleData.value){
// if(element.transferId === row.transferId){
// element.secTempGainAutoOrManual = jobj.secTempGainAutoOrManual;
// element.secTempGain1 = jobj.secTempGain1;
// element.secTempGain2 = jobj.secTempGain2;
// element.secTempGain3 = jobj.secTempGain3;
// element.secTempGain4 = jobj.secTempGain4;
// element.secOutdoorTempStart1 = jobj.secOutdoorTempStart1;
// element.secOutdoorTempStart2 = jobj.secOutdoorTempStart2;
// element.secOutdoorTempStart3 = jobj.secOutdoorTempStart3;
// element.secOutdoorTempStart4 = jobj.secOutdoorTempStart4;
// element.secOutdoorTempEnd1 = jobj.secOutdoorTempEnd1;
// element.secOutdoorTempEnd2 = jobj.secOutdoorTempEnd2;
// element.secOutdoorTempEnd3 = jobj.secOutdoorTempEnd3;
// element.secOutdoorTempEnd4 = jobj.secOutdoorTempEnd4;
// element.upperPIDLimit = jobj.upperPIDLimit;
// element.underPIDLimit = jobj.underPIDLimit;
// element.isDisabled = false;
// element.transferStatus = jobj.transferStatus;
// ElMessage.success(row.transferName +" 读取成功");
// handleRowClick(element);
// //console.log("gainMode:"+jobj.gainMode);
// break;
// }
// };
// }
// }else{
// ElMessage.error(row.transferName +" 连接失败!");
// row.transferStatus = 3;
// }
// }
async
function
ReadAllStatus
(){
if
(
selectedRows
.
value
.
length
===
0
){
ElMessage
.
warning
(
"请勾选需要远程控制的换热站!"
);
return
;
}
myIndeterminate
.
value
=
!
myIndeterminate
.
value
;
progress
.
value
=
1
;
isLoading
.
value
=
true
;
if
(
selectedRows
){
var
total
=
selectedRows
.
value
.
length
;
var
count
=
0
;
for
(
const
item
of
selectedRows
.
value
){
item
.
transferStatus
=
0
;
}
for
(
const
item
of
selectedRows
.
value
){
await
ReadStation
(
item
);
count
=
count
+
1
;
progress
.
value
=
(
count
/
total
*
100
).
toFixed
(
2
);
}
}
isLoading
.
value
=
false
;
myIndeterminate
.
value
=
!
myIndeterminate
.
value
;
progress
.
value
=
100
;
}
// 原写入和读取
// async function WriteStatus(row){
// row.transferStatus = 0;
// myIndeterminate.value = !myIndeterminate.value;
// progress.value=50;
// isLoading.value = true;
// await WriteStation(row);
// isLoading.value = false;
// myIndeterminate.value = !myIndeterminate.value;
// progress.value=100;
// }
// async function WriteAllStatus(){
// if(selectedRows.value.length === 0){
// ElMessage.warning("请勾选需要远程控制的换热站!");
// return;
// }
// if(forms.isDisabled === true){
// ElMessage.error(forms.transferName +" 先读取后写入");
// return;
// }
// myIndeterminate.value = !myIndeterminate.value;
// progress.value=1;
// isLoading.value = true;
// if(selectedRows){
// var total = selectedRows.value.length;
// var count =0;
// for(const item of selectedRows.value){
// item.transferStatus = 0;
// }
// for(const item of selectedRows.value){
// if(item.isDisabled === false){
// await WriteStation(item);
// }else{
// ElMessage.warning(item.transferName + " 写入失败,应先读取再写入");
// item.transferStatus = 2;
// }
// count=count+1;
// progress.value = (count/total*100).toFixed(2);
// }
//
// }
// isLoading.value = false;
// myIndeterminate.value = !myIndeterminate.value;
// progress.value=100;
// }
// async function WriteStation(element){
// try{
// //console.log("write row:"+element.transferName);
// var writeValue = "";
// if(forms.secTempGainAutoOrManual != "" && forms.secTempGainAutoOrManual != null){
// element.secTempGainAutoOrManual=forms.secTempGainAutoOrManual;
// writeValue +="SecTempGainAutoOrManual:"+forms.secTempGainAutoOrManual + ";";
// }
// if(forms.secTempGain1 != "" && forms.secTempGain1 != null){
// element.secTempGain1=forms.secTempGain1;
// writeValue +="SecTempGain1:"+forms.secTempGain1 + ";";
// }
// if(forms.secTempGain2 != "" && forms.secTempGain2 != null){
// element.secTempGain2=forms.secTempGain2;
// writeValue +="SecTempGain2:"+forms.secTempGain2 + ";";
// }
// if(forms.secTempGain3 != "" && forms.secTempGain3 != null){
// element.secTempGain3=forms.secTempGain3;
// writeValue +="SecTempGain3:"+forms.secTempGain3 + ";";
// }
// if(forms.secTempGain4 != "" && forms.secTempGain4 != null){
// element.secTempGain4=forms.secTempGain4;
// writeValue +="SecTempGain4:"+forms.secTempGain4 + ";";
// }
// if(forms.secOutdoorTempStart1 != "" && forms.secOutdoorTempStart1 != null){
// element.secOutdoorTempStart1=forms.secOutdoorTempStart1;
// writeValue +="SecOutdoorTempStart1:"+forms.secOutdoorTempStart1 + ";";
// }
// if(forms.secOutdoorTempStart2 != "" && forms.secOutdoorTempStart2 != null){
// element.secOutdoorTempStart2=forms.secOutdoorTempStart2;
// writeValue +="SecOutdoorTempStart2:"+forms.secOutdoorTempStart2 + ";";
// }
// if(forms.secOutdoorTempStart3 != "" && forms.secOutdoorTempStart3 != null){
// element.secOutdoorTempStart3=forms.secOutdoorTempStart3;
// writeValue +="SecOutdoorTempStart3:"+forms.secOutdoorTempStart3 + ";";
// }
// if(forms.secOutdoorTempStart4 != "" && forms.secOutdoorTempStart4 != null){
// element.secOutdoorTempStart4=forms.secOutdoorTempStart4;
// writeValue +="SecOutdoorTempStart4:"+forms.secOutdoorTempStart4 + ";";
// }
// if(forms.secOutdoorTempEnd1 != "" && forms.secOutdoorTempEnd1 != null){
// element.secOutdoorTempEnd1=forms.secOutdoorTempEnd1;
// writeValue +="SecOutdoorTempEnd1:"+forms.secOutdoorTempEnd1 + ";";
// }
// if(forms.secOutdoorTempEnd2 != "" && forms.secOutdoorTempEnd2 != null){
// element.secOutdoorTempEnd2=forms.secOutdoorTempEnd2;
// writeValue +="SecOutdoorTempEnd2:"+forms.secOutdoorTempEnd2 + ";";
// }
// if(forms.secOutdoorTempEnd3 != "" && forms.secOutdoorTempEnd3 != null){
// element.secOutdoorTempEnd3=forms.secOutdoorTempEnd3;
// writeValue +="SecOutdoorTempEnd3:"+forms.secOutdoorTempEnd3 + ";";
// }
// if(forms.secOutdoorTempEnd4 != "" && forms.secOutdoorTempEnd4 != null){
// element.secOutdoorTempEnd4=forms.secOutdoorTempEnd4;
// writeValue +="SecOutdoorTempEnd4:"+forms.secOutdoorTempEnd4 + ";";
// }
//
// if(forms.upperPIDLimit != "" && forms.upperPIDLimit != null){
// element.upperPIDLimit=forms.upperPIDLimit;
// writeValue +="UpperPIDLimit:"+forms.upperPIDLimit + ";";
// }
//
// if(forms.upperPIDLimit != "" && forms.upperPIDLimit != null){
// element.underPIDLimit=forms.underPIDLimit;
// writeValue +="UnderPIDLimit:"+forms.underPIDLimit + ";";
// }
//
// if(writeValue === ''){
// ElMessage.error(element.transferName +" 未获取到写入数据");
// return;
// }
// //console.log(writeValue);
// var result = await http.post('/api/remote/WriteTransfer', {"TransferId":element.transferId, "WriteValues": writeValue, "PanelType": 4});
// if(result.success){
// ElMessage.success(element.transferName +" "+ result.data);
// element.transferStatus = 1;
// handleRowClick(forms);
// }else{
// ElMessage.error(element.transferName +" "+ result.message);
// if(result.message === "连接异常"){
// element.transferStatus = 3;
// }else{
// element.transferStatus = 2;
// }
// }
// }catch(error){
// ElMessage.error(element.transferName +" "+ error.message);
// element.transferStatus = 3;
// }
// }
// async function ReadStation(row){
// var result = await http.post('/api/remote/ReadSecTemp', row.transferId);
// if(result.success){
// var jobj = result.data[0];
// //console.log("Value:"+jobj);
// if(jobj && visibleData){
// for(const element of visibleData.value){
// if(element.transferId === row.transferId){
// element.secTempGainAutoOrManual = jobj.secTempGainAutoOrManual;
// element.secTempGain1 = jobj.secTempGain1;
// element.secTempGain2 = jobj.secTempGain2;
// element.secTempGain3 = jobj.secTempGain3;
// element.secTempGain4 = jobj.secTempGain4;
// element.secOutdoorTempStart1 = jobj.secOutdoorTempStart1;
// element.secOutdoorTempStart2 = jobj.secOutdoorTempStart2;
// element.secOutdoorTempStart3 = jobj.secOutdoorTempStart3;
// element.secOutdoorTempStart4 = jobj.secOutdoorTempStart4;
// element.secOutdoorTempEnd1 = jobj.secOutdoorTempEnd1;
// element.secOutdoorTempEnd2 = jobj.secOutdoorTempEnd2;
// element.secOutdoorTempEnd3 = jobj.secOutdoorTempEnd3;
// element.secOutdoorTempEnd4 = jobj.secOutdoorTempEnd4;
// element.upperPIDLimit = jobj.upperPIDLimit;
// element.underPIDLimit = jobj.underPIDLimit;
// element.isDisabled = false;
// element.transferStatus = jobj.transferStatus;
// ElMessage.success(row.transferName +" 读取成功");
// handleRowClick(element);
// //console.log("gainMode:"+jobj.gainMode);
// break;
// }
// };
// }
// }else{
// ElMessage.error(row.transferName +" 连接失败!");
// row.transferStatus = 3;
// }
// }
async
function
ReadStation
(
row
){
var
jobj
=
remoteReadSecTemp
.
data
[
0
];
//console.log("Value:"+jobj);
...
...
src/components/Remote/TransferRegControl.vue
View file @
10394bf0
...
...
@@ -285,17 +285,17 @@
myIndeterminate
.
value
=
!
myIndeterminate
.
value
;
progress
.
value
=
100
;
}
async
function
WriteStatus
(
row
){
row
.
transferStatus
=
0
;
myIndeterminate
.
value
=
!
myIndeterminate
.
value
;
progress
.
value
=
50
;
isLoading
.
value
=
true
;
await
WriteStation
(
row
);
isLoading
.
value
=
false
;
myIndeterminate
.
value
=
!
myIndeterminate
.
value
;
progress
.
value
=
100
;
}
//动态写入全部
// async function WriteStatus(row){
// row.transferStatus = 0;
// myIndeterminate.value = !myIndeterminate.value;
// progress.value=50;
// isLoading.value = true;
// await WriteStation(row);
// isLoading.value = false;
// myIndeterminate.value = !myIndeterminate.value;
// progress.value=100;
// }
// async function WriteAllStatus(){
// if(selectedRows.value.length === 0){
// ElMessage.warning("请勾选需要远程控制的换热站!");
...
...
@@ -329,7 +329,7 @@
// myIndeterminate.value = !myIndeterminate.value;
// progress.value=100;
// }
//动态读取
//
动态读取
// async function ReadStation(row){
// var result = await http.post('/api/remote/ReadTransferReg', row.transferId);
// if(result.success){
...
...
src/dataJson/Remote/CtrlSecondTemp.js
0 → 100644
View file @
10394bf0
export
const
remoteGetCtrlSecondTemp
=
{
"data"
:{
"ctrolSecTempList"
:[
{
"transferIds"
:[
"1e227adf-bf20-43a4-b7ac-003820c33aaf"
,
"c39f9bc6-da39-4aa8-931e-205a46464b6b"
,
"8fa5ee4c-6030-4b2e-9e83-8516b3eb847f"
,
"f97b818f-4c37-43ef-9d2d-953a0bdc47ac"
,
"329f51c8-cd70-487c-a443-d764f86ebc74"
,
"31b4bbac-9a00-46b6-ab3d-de8da661ddcc"
,
"48859687-8573-469d-9139-e12297beba78"
],
"methodId"
:
"b2118d67-29ea-4459-8dde-e45fa2fc94ec"
,
"methodName"
:
"城区中心A"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
40
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
40
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
40
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
40
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"f067ed62-a00d-43fd-abd8-12b25f485b7e"
,
"ec8c8dc2-2ee0-40ba-898b-2033c6bd3ccc"
,
"c92fde80-fe4e-4294-ba18-723277ef317b"
,
"37f4d315-3a95-4958-b469-73126eba48bf"
,
"8f494ee0-7206-48a2-bfa6-7923e5d10f5d"
,
"62c7db05-8f5c-4421-b8e2-97fc88e4c776"
,
"455973df-53ac-44cc-8507-cecca53e3459"
,
"a41fd010-1345-4944-9472-f8d32e75998a"
],
"methodId"
:
"fcae032c-dfdc-4bfd-a862-aea9467471f9"
,
"methodName"
:
"城区中心B"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
42
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
42
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
42
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
42
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"beb296f7-4d8e-4f52-b559-18a2698f7150"
,
"2dd20c6a-d1b5-4f87-a30c-228435e73034"
,
"68215c86-f5b1-46da-964f-2d27e706bc31"
,
"58bf3de9-36e4-426e-9195-2dba18a2e84b"
,
"73794f24-be62-44ab-b0c0-33bfd5e0614f"
,
"8cf2845b-e2a5-4669-ae3e-58a815144fb5"
,
"e7f7fc67-03bc-4596-aaa0-80b82e6b077f"
,
"ab9ff465-767d-409e-91cc-8cd0b29e6b30"
,
"68a5dfa3-d669-4ebe-ae00-932d6a7cf92d"
,
"6533faaf-f544-4c98-af8f-960c98fd53a6"
,
"84dcb1d4-bbf4-4f7c-933c-bd05357e7214"
,
"3cb79b8e-43eb-4cad-ad0d-cf381836d208"
,
"fc20b60e-8fca-44d1-991b-dd48ca1dc5f6"
],
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
44
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
44
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
44
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
44
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"7b8a036c-b856-478a-a1e4-02ad504805fd"
,
"3bc6556e-aa33-403c-80a9-11593026c483"
,
"508bf6e7-9c0f-48ef-afa1-209852d990eb"
,
"ef0864c6-1a01-41cf-94be-523b4d6063db"
,
"d8b9aecd-857c-4e2e-9e52-6768a3bb452b"
,
"e328fb83-fa92-4e14-a7aa-a67451098f4c"
,
"4cb6eb38-2378-4b71-8a28-bcc5fa4e0150"
,
"73cc8790-83ef-4fd5-ba1d-ca7f3f7fddc0"
,
"cf5d9799-14a8-46c4-af60-fa086b425cb6"
],
"methodId"
:
"5f20ed0c-0889-4d47-aa21-91ee6150403d"
,
"methodName"
:
"城区中心D"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
45
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
45
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
45
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
45
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"ebdb1f27-986d-4508-9570-5b3a6a6256d8"
,
"d007451e-5268-4d51-b486-87c55bd5e3b8"
,
"3ca78310-f360-4843-894c-a539fadcec2c"
,
"c1b724b2-9b33-4a68-9d68-c6f98fb54eca"
,
"b5cf862d-544c-42ca-83ab-e385901df1f4"
],
"methodId"
:
"acd94e7c-3a72-4f1d-8987-9114033a9b5e"
,
"methodName"
:
"城区中心E"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
46
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
46
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
46
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
46
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"2d76c35f-84cf-416e-8697-047b3d60db93"
,
"092facd2-7c86-456d-8710-138e1dd4bda9"
,
"00ed41c9-f825-4263-9e31-46416cd63ca1"
,
"8deb5573-bc95-4186-ade6-6b814d16f182"
,
"6a187184-7c68-4ef2-bcd8-83e426126ca6"
,
"e970e768-13e3-49a3-9283-9dec08ea2769"
],
"methodId"
:
"dc4b99ba-c73d-4fa0-9f5f-f37d890c27c1"
,
"methodName"
:
"城区中心F"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
46.5
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
46.5
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
46.5
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
46.5
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"ce0ac75f-8f49-43e6-9063-08fc35b3b74f"
,
"555ddd23-87ee-4cc6-8eb2-35562d520893"
,
"c603e06d-32c9-451d-8d61-362523108dd6"
,
"977a50b1-b3e5-40f0-9a16-89a1a4bfe57c"
,
"71eeabc9-ccca-4cde-8292-b3cea6fd0c74"
,
"aa1e1c8c-2893-4ef7-91b5-def8a9672dd7"
,
"d7281fb1-a9c6-4a4e-9871-f74e9b7006c0"
],
"methodId"
:
"f0e37b01-2e7d-4ccc-8578-9ae4a46c639a"
,
"methodName"
:
"城区中心G"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
47
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
47
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
47
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
47
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"bfff8176-79c7-4b91-a100-300149103f94"
,
"d5f8ebe6-1d81-4c10-a291-3223101913b8"
,
"b3d61496-b1b1-4d05-9d42-6421f299d36e"
,
"93e92fb1-a126-4bf5-a439-95ad92375c0d"
,
"20052568-449a-45a1-a1e6-e654819f2c1f"
,
"e50d5ff2-d87a-468c-b700-fbed371268d3"
],
"methodId"
:
"8b529293-cf7f-4138-a1b9-ca0b5942a10a"
,
"methodName"
:
"城区中心H"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
48
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
48
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
48
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
48
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"ea804181-88a0-4ca5-94c8-03913dafe0b6"
,
"12bb36b1-c83b-42a7-827a-434cae221838"
,
"75032d1e-b4b1-4b5b-bf3a-ee3536be7fd5"
,
"b5f228ca-4830-49f7-be8f-f2fb82ea884e"
],
"methodId"
:
"49340e05-fbc7-4c47-b513-410c7c178c5b"
,
"methodName"
:
"城区中心I"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
49
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
49
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
49
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
49
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"4e5719c0-fa4e-4ee3-9a64-0ec8086701f4"
,
"5b9d3c03-ff6e-4386-97d4-a9ea587ad2ea"
,
"f710c377-4184-4b17-9791-b680b416d475"
,
"6fc7c546-b20e-4bfd-8805-e5925f29b88f"
],
"methodId"
:
"162ad8be-14cf-4101-9c29-81b4a9a8afa2"
,
"methodName"
:
"城区中心J"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
40
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
40
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
40
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
40
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"18b5074e-feb2-4a91-9fb5-6c4eeae8cc76"
,
"46e0a12e-4769-4525-859d-b9879a405912"
,
"e9be2e6d-f7ea-48c0-a618-d61d3c98ef96"
],
"methodId"
:
"39de5021-a9a5-4873-8df5-ead5f38a664c"
,
"methodName"
:
"城区中心K"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
44.5
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
44.5
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
44.5
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
20
,
"tempGain4"
:
44.5
,
"temperature"
:
0.5
,
"wind"
:
0.029
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"9ddeb4bb-4a6f-4de1-985b-16059f29b0ad"
,
"5dec2dd0-6d86-422c-a582-23e385da6bf9"
,
"902ddef0-6466-44a0-a990-645d890d6877"
,
"275134a5-b9f4-436d-b768-6b0b14bcb3fb"
,
"5afe6e12-63dc-4d06-bc95-77362dcb215c"
,
"8b93c4d7-12f0-47de-8d12-9d534ab57ce4"
,
"ee5d8699-2f9f-4b74-a60d-d9e7a403925e"
,
"bb421b86-ede4-4729-802f-eb4eaea20746"
,
"1ded514b-e0f6-4263-92ea-ffb2828d97f5"
],
"methodId"
:
"f9271d72-70ea-4a7e-ac57-bb1c7604548d"
,
"methodName"
:
"港东 低流量<30吨/万平米"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
44.5
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
44
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
43.5
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
20
,
"tempGain4"
:
42
,
"temperature"
:
0.45
,
"wind"
:
0.19
,
"power"
:
0.0029
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"962b229d-11f2-42ed-bdce-2b3846c216ca"
,
"c51e6447-99c2-4364-ab29-2ff81fbbf4d6"
,
"769fb83c-7602-4a44-a78a-59866d627728"
,
"5f1494f3-cce4-4453-a0c5-85fba94c7a02"
,
"76f5fd18-dfc6-4a9a-bd7e-b3a119dbe57f"
,
"215b1b95-88fe-484a-af7e-d36bd97235e7"
,
"650002fe-86da-4b3c-83a6-dd6720b8b587"
],
"methodId"
:
"8d9efa3f-4ce1-4171-9e42-c1b7ca4bb9fc"
,
"methodName"
:
"港东A"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
37.5
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
37
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
37
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
36.5
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0
,
"outdoorStartHour1"
:
1
,
"outdoorStartMin1"
:
30
,
"outdoorEndHour1"
:
3
,
"outdoorEndMin1"
:
30
,
"cooling1"
:
1
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"8f5386e5-bf57-4336-b92a-09a62fc8e7f5"
,
"27d16f2e-14ba-4f6f-a7f0-12a4a5c6cef5"
,
"85b19446-f1d2-45b6-9ab0-1a3880190b5b"
,
"6a5d8708-340b-4288-82df-1bc44d992111"
,
"cbf567d2-6054-42bc-973c-214f8b512166"
,
"b3ee2a6c-e2ae-41b6-b18f-22eb122accc9"
,
"ca5bd09e-9773-4a6f-a974-3345245be295"
,
"4347555a-647a-4bb3-b758-4aa4d0b6f887"
,
"bfac6f50-4f8c-4f49-98ae-4b1a7459ee56"
,
"61bf1816-3d31-419d-a2ff-522c7264b2d1"
,
"95271d0e-9e13-4821-ad07-578b68a5fa56"
,
"c1880432-ff30-47ef-b8e7-5f97bfa059a9"
,
"7218626b-c3ab-45f6-8c26-61097c92de50"
,
"03ffc5cb-a0f7-4938-81b0-675d1a2afe7c"
,
"7a5d291e-3d10-4561-ba78-6ee21691666a"
,
"8c6c39d1-9b5b-433d-bf6d-73e463ba214a"
,
"17e9da15-00bb-4c0b-84af-78528390cded"
,
"96091bad-297b-4bed-bce7-7f761b5ff77c"
,
"38f14f4c-e5b6-46a6-8add-925672d40ea6"
,
"0462fddc-5b4a-4c8b-9508-95c8e5868abb"
,
"1ea41b93-4f9a-489b-8b94-9dca7ee07891"
,
"49cb040c-06e2-4d49-9a79-aa93c990668c"
,
"e9cc4871-2034-4a9a-bb4e-c6c9135ac003"
,
"68901efe-062f-447f-aabc-d2a3e607a2dd"
,
"ad78f42b-027d-4cac-b2e8-f07e8e5f600d"
,
"72dbc423-aed5-4033-9970-f0f67863efb5"
,
"83eba70c-ea58-4f5a-8237-fdc32b3de361"
],
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
40
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
39
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
39
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
38
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"7018653d-2dcc-48af-9988-1b0b02d21f75"
,
"d90b02b0-d077-45cd-95ab-2d39fe52cb36"
,
"f36eac93-5505-465d-8a83-4a3bfb466d5c"
,
"8c01dbe6-ab49-4c95-973d-4df08a734cac"
,
"b6216c70-d0c0-465f-8019-594dfa954a7c"
,
"d488fb15-cda9-432b-b80f-7997b9379e8d"
,
"06c1e172-3d3d-4cce-a830-7c9a071b2632"
,
"0c9b7ff2-9a3d-4d67-b616-90d271bef50c"
,
"26f6ba85-eb0f-42d2-90ce-977daad46bf9"
,
"af4dae68-9aaa-4b24-8ebe-a6bce5e8c194"
,
"79b491db-89e0-4831-8b5a-cb85cf33ac0c"
,
"e1289fbe-9d71-4426-a500-d3024a8c84c1"
,
"c4b05157-eac0-4e07-9600-d7912b6602cc"
,
"8d57c927-52cf-42ae-85b9-fa2fba06262e"
],
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
41
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
40.5
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
40.5
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
39.5
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
15
,
"outdoorStartMin1"
:
0
,
"outdoorEndHour1"
:
17
,
"outdoorEndMin1"
:
0
,
"cooling1"
:
-
1
,
"outdoorStartHour2"
:
0
,
"outdoorStartMin2"
:
0
,
"outdoorEndHour2"
:
0
,
"outdoorEndMin2"
:
0
,
"cooling2"
:
0
,
"outdoorStartHour3"
:
0
,
"outdoorStartMin3"
:
0
,
"outdoorEndHour3"
:
0
,
"outdoorEndMin3"
:
0
,
"cooling3"
:
0
,
"outdoorStartHour4"
:
0
,
"outdoorStartMin4"
:
0
,
"outdoorEndHour4"
:
0
,
"outdoorEndMin4"
:
0
,
"cooling4"
:
0
,
"outdoorStartHour5"
:
0
,
"outdoorStartMin5"
:
0
,
"outdoorEndHour5"
:
0
,
"outdoorEndMin5"
:
0
,
"cooling5"
:
0
,
"outdoorStartHour6"
:
0
,
"outdoorStartMin6"
:
0
,
"outdoorEndHour6"
:
0
,
"outdoorEndMin6"
:
0
,
"cooling6"
:
0
},{
"transferIds"
:[
"2ba23b0e-e9c0-4fb1-b387-01bfc2ff45bd"
,
"dabac14e-2d16-421f-a616-05f23afdb219"
,
"4f239394-58eb-4dc2-b65a-0660186ce0c1"
,
"ebee8bf5-942b-4658-97c0-07d254699b3a"
,
"4288797a-a5e1-4358-bf92-13615af8ae41"
,
"ae1b8c87-2e31-4688-9ef3-15b09fa13f69"
,
"5ec59cf1-a235-4a50-b47e-28446b890545"
,
"edf6ffe4-abb1-4852-ae32-4949bff872b9"
,
"0b596f22-f40e-4e16-a552-51b24feba66a"
,
"537dbc95-ef89-4261-934e-63652d789702"
,
"510e3f3c-af43-433c-9e68-63fc3c743f79"
,
"a7a4cee3-d031-45bc-a1f0-6666788935b8"
,
"1765f9fd-ba1a-4292-8c18-7d9d9e2987cd"
,
"7cefa974-e382-4458-a214-8c632db225ab"
,
"713e671d-b002-45e5-b7e3-a40652e4e4b0"
,
"34d8847c-489c-4879-bcdd-b69c44d8ca50"
,
"cfc7766c-0f8f-4310-b731-bb907c8b0fc5"
,
"d5542b27-fc6e-4a28-91b5-cc7c2918ecbc"
,
"dffb14fa-ed06-447f-857d-d3bbcc7c8049"
,
"329a6350-9fca-4e20-96f5-d849465d66f2"
,
"5690ef3e-4c56-4ee8-af64-f04e35c671dd"
,
"1c896790-ee70-46ec-acf6-f7da3133cbf8"
,
"9ad563a2-cf55-4ffa-a878-f9c85af106e1"
],
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
42
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
41.5
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
41.5
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
41
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"5e683ad0-bfe4-4117-b191-25f9317017c0"
,
"5ea173af-571e-4c7b-a56a-4022caa06674"
,
"63edc493-1e0e-40b5-b2c8-42866e75155d"
,
"ba164e9b-e39b-4a4e-8b51-535ec2629882"
,
"39e2a4b9-8986-4de3-880b-57e726c56507"
,
"f3e43b3b-8711-4fc0-bd9e-7dccf4571bcd"
,
"0ab6dece-7364-4f57-8eed-7fecd829d851"
,
"cd9694cf-62e1-4dcb-9fca-a989e90b46b1"
,
"d3992f5a-5d4c-4945-ab72-ad59b2c8c079"
,
"a1dc48f8-a867-48f3-8139-ba3b9f2275c1"
,
"934b647c-7e08-47b4-888a-c16fe6227e36"
,
"94b9724c-defc-47f6-a06e-c3442a85e907"
,
"291b1f03-9e32-40ff-915e-f14504e611fe"
],
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
43
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
42.5
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
42.5
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
41.5
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
1
,
"outdoorStartMin1"
:
30
,
"outdoorEndHour1"
:
3
,
"outdoorEndMin1"
:
30
,
"cooling1"
:
1
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"955d663d-173e-4de7-b6b4-1455d25784e5"
,
"239d77bf-7dd9-4b11-908e-604376149421"
,
"d5a53d6d-3632-460d-b794-ba6414be7ea4"
],
"methodId"
:
"039567b6-d3aa-4c5a-9789-c334ed2cbdc3"
,
"methodName"
:
"港东二部节能"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
46.5
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
46
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
46
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
30
,
"tempGain4"
:
44
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"523cdfa1-b342-4dbf-abb9-41f083e32e84"
,
"de2b12d5-6b69-4ea3-92f4-60e0913671b3"
,
"591de082-de90-4a28-abf6-6feb70b6e940"
,
"79bf5f12-cd45-44d3-b6b7-83d5c9d72068"
,
"867da9ea-b875-4c75-b40a-91fec6d9050a"
],
"methodId"
:
"553d1420-5a2c-44e1-9c55-5d1e81033dd9"
,
"methodName"
:
"小王庄"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
40
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
39.5
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
39
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
38
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
0
,
"outdoorStartMin1"
:
0
,
"outdoorEndHour1"
:
0
,
"outdoorEndMin1"
:
0
,
"cooling1"
:
0
,
"outdoorStartHour2"
:
0
,
"outdoorStartMin2"
:
0
,
"outdoorEndHour2"
:
0
,
"outdoorEndMin2"
:
0
,
"cooling2"
:
0
,
"outdoorStartHour3"
:
0
,
"outdoorStartMin3"
:
0
,
"outdoorEndHour3"
:
0
,
"outdoorEndMin3"
:
0
,
"cooling3"
:
0
,
"outdoorStartHour4"
:
0
,
"outdoorStartMin4"
:
0
,
"outdoorEndHour4"
:
0
,
"outdoorEndMin4"
:
0
,
"cooling4"
:
0
,
"outdoorStartHour5"
:
0
,
"outdoorStartMin5"
:
0
,
"outdoorEndHour5"
:
0
,
"outdoorEndMin5"
:
0
,
"cooling5"
:
0
,
"outdoorStartHour6"
:
0
,
"outdoorStartMin6"
:
0
,
"outdoorEndHour6"
:
0
,
"outdoorEndMin6"
:
0
,
"cooling6"
:
0
},{
"transferIds"
:[
"a5225e87-ccbe-488b-bc04-00633dc0138d"
],
"methodId"
:
"8ee26179-44df-438c-aaf9-aab2e4a5b004"
,
"methodName"
:
"小王庄公建方案"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
41
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
40.5
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
40
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
39
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
},{
"transferIds"
:[
"da3cb005-9626-4a11-8d0d-9351508ea89d"
],
"methodId"
:
"98bf7f95-387b-495d-b37f-2d94bb0460c8"
,
"methodName"
:
"小王庄小学幼儿园方案"
,
"isJD"
:
false
,
"isAuto"
:
true
,
"outdoorTempStart1"
:
-
20
,
"outdoorTempEnd1"
:
-
10
,
"tempGain1"
:
46.5
,
"outdoorTempStart2"
:
-
10
,
"outdoorTempEnd2"
:
0
,
"tempGain2"
:
46
,
"outdoorTempStart3"
:
0
,
"outdoorTempEnd3"
:
10
,
"tempGain3"
:
45.5
,
"outdoorTempStart4"
:
10
,
"outdoorTempEnd4"
:
40
,
"tempGain4"
:
44
,
"temperature"
:
0.5
,
"wind"
:
0.29
,
"power"
:
0.0038
,
"outdoorStartHour1"
:
null
,
"outdoorStartMin1"
:
null
,
"outdoorEndHour1"
:
null
,
"outdoorEndMin1"
:
null
,
"cooling1"
:
null
,
"outdoorStartHour2"
:
null
,
"outdoorStartMin2"
:
null
,
"outdoorEndHour2"
:
null
,
"outdoorEndMin2"
:
null
,
"cooling2"
:
null
,
"outdoorStartHour3"
:
null
,
"outdoorStartMin3"
:
null
,
"outdoorEndHour3"
:
null
,
"outdoorEndMin3"
:
null
,
"cooling3"
:
null
,
"outdoorStartHour4"
:
null
,
"outdoorStartMin4"
:
null
,
"outdoorEndHour4"
:
null
,
"outdoorEndMin4"
:
null
,
"cooling4"
:
null
,
"outdoorStartHour5"
:
null
,
"outdoorStartMin5"
:
null
,
"outdoorEndHour5"
:
null
,
"outdoorEndMin5"
:
null
,
"cooling5"
:
null
,
"outdoorStartHour6"
:
null
,
"outdoorStartMin6"
:
null
,
"outdoorEndHour6"
:
null
,
"outdoorEndMin6"
:
null
,
"cooling6"
:
null
}],
"transferList"
:[{
"rowIndex"
:
1
,
"transferId"
:
"1e227adf-bf20-43a4-b7ac-003820c33aaf"
,
"transferName"
:
"百郦学府高区"
,
"transferStatus"
:
0
,
"methodId"
:
"b2118d67-29ea-4459-8dde-e45fa2fc94ec"
,
"methodName"
:
"城区中心A"
},{
"rowIndex"
:
1
,
"transferId"
:
"c39f9bc6-da39-4aa8-931e-205a46464b6b"
,
"transferName"
:
"大港五中"
,
"transferStatus"
:
0
,
"methodId"
:
"b2118d67-29ea-4459-8dde-e45fa2fc94ec"
,
"methodName"
:
"城区中心A"
},{
"rowIndex"
:
1
,
"transferId"
:
"8fa5ee4c-6030-4b2e-9e83-8516b3eb847f"
,
"transferName"
:
"南开大学"
,
"transferStatus"
:
0
,
"methodId"
:
"b2118d67-29ea-4459-8dde-e45fa2fc94ec"
,
"methodName"
:
"城区中心A"
},{
"rowIndex"
:
1
,
"transferId"
:
"f97b818f-4c37-43ef-9d2d-953a0bdc47ac"
,
"transferName"
:
"百郦学府低区"
,
"transferStatus"
:
0
,
"methodId"
:
"b2118d67-29ea-4459-8dde-e45fa2fc94ec"
,
"methodName"
:
"城区中心A"
},{
"rowIndex"
:
1
,
"transferId"
:
"329f51c8-cd70-487c-a443-d764f86ebc74"
,
"transferName"
:
"中国联通"
,
"transferStatus"
:
0
,
"methodId"
:
"b2118d67-29ea-4459-8dde-e45fa2fc94ec"
,
"methodName"
:
"城区中心A"
},{
"rowIndex"
:
1
,
"transferId"
:
"31b4bbac-9a00-46b6-ab3d-de8da661ddcc"
,
"transferName"
:
"农行大港支行"
,
"transferStatus"
:
0
,
"methodId"
:
"b2118d67-29ea-4459-8dde-e45fa2fc94ec"
,
"methodName"
:
"城区中心A"
},{
"rowIndex"
:
1
,
"transferId"
:
"48859687-8573-469d-9139-e12297beba78"
,
"transferName"
:
"惩防教育基地机组1"
,
"transferStatus"
:
0
,
"methodId"
:
"b2118d67-29ea-4459-8dde-e45fa2fc94ec"
,
"methodName"
:
"城区中心A"
},{
"rowIndex"
:
1
,
"transferId"
:
"f067ed62-a00d-43fd-abd8-12b25f485b7e"
,
"transferName"
:
"老年大学"
,
"transferStatus"
:
0
,
"methodId"
:
"fcae032c-dfdc-4bfd-a862-aea9467471f9"
,
"methodName"
:
"城区中心B"
},{
"rowIndex"
:
1
,
"transferId"
:
"ec8c8dc2-2ee0-40ba-898b-2033c6bd3ccc"
,
"transferName"
:
"滨海监狱"
,
"transferStatus"
:
0
,
"methodId"
:
"fcae032c-dfdc-4bfd-a862-aea9467471f9"
,
"methodName"
:
"城区中心B"
},{
"rowIndex"
:
1
,
"transferId"
:
"c92fde80-fe4e-4294-ba18-723277ef317b"
,
"transferName"
:
"华苑学院"
,
"transferStatus"
:
0
,
"methodId"
:
"fcae032c-dfdc-4bfd-a862-aea9467471f9"
,
"methodName"
:
"城区中心B"
},{
"rowIndex"
:
1
,
"transferId"
:
"37f4d315-3a95-4958-b469-73126eba48bf"
,
"transferName"
:
"梁园公建"
,
"transferStatus"
:
0
,
"methodId"
:
"fcae032c-dfdc-4bfd-a862-aea9467471f9"
,
"methodName"
:
"城区中心B"
},{
"rowIndex"
:
1
,
"transferId"
:
"8f494ee0-7206-48a2-bfa6-7923e5d10f5d"
,
"transferName"
:
"天泽园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"fcae032c-dfdc-4bfd-a862-aea9467471f9"
,
"methodName"
:
"城区中心B"
},{
"rowIndex"
:
1
,
"transferId"
:
"62c7db05-8f5c-4421-b8e2-97fc88e4c776"
,
"transferName"
:
"古林里高区"
,
"transferStatus"
:
0
,
"methodId"
:
"fcae032c-dfdc-4bfd-a862-aea9467471f9"
,
"methodName"
:
"城区中心B"
},{
"rowIndex"
:
1
,
"transferId"
:
"455973df-53ac-44cc-8507-cecca53e3459"
,
"transferName"
:
"凯旋三期"
,
"transferStatus"
:
0
,
"methodId"
:
"fcae032c-dfdc-4bfd-a862-aea9467471f9"
,
"methodName"
:
"城区中心B"
},{
"rowIndex"
:
1
,
"transferId"
:
"a41fd010-1345-4944-9472-f8d32e75998a"
,
"transferName"
:
"福苑里高层"
,
"transferStatus"
:
0
,
"methodId"
:
"fcae032c-dfdc-4bfd-a862-aea9467471f9"
,
"methodName"
:
"城区中心B"
},{
"rowIndex"
:
1
,
"transferId"
:
"beb296f7-4d8e-4f52-b559-18a2698f7150"
,
"transferName"
:
"润泽园别墅南"
,
"transferStatus"
:
0
,
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
},{
"rowIndex"
:
1
,
"transferId"
:
"2dd20c6a-d1b5-4f87-a30c-228435e73034"
,
"transferName"
:
"建安里北公建"
,
"transferStatus"
:
0
,
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
},{
"rowIndex"
:
1
,
"transferId"
:
"68215c86-f5b1-46da-964f-2d27e706bc31"
,
"transferName"
:
"兴慧里东区"
,
"transferStatus"
:
0
,
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
},{
"rowIndex"
:
1
,
"transferId"
:
"58bf3de9-36e4-426e-9195-2dba18a2e84b"
,
"transferName"
:
"胜利里北区"
,
"transferStatus"
:
0
,
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
},{
"rowIndex"
:
1
,
"transferId"
:
"73794f24-be62-44ab-b0c0-33bfd5e0614f"
,
"transferName"
:
"润泽园别墅北"
,
"transferStatus"
:
0
,
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
},{
"rowIndex"
:
1
,
"transferId"
:
"8cf2845b-e2a5-4669-ae3e-58a815144fb5"
,
"transferName"
:
"春港花园北洋房区"
,
"transferStatus"
:
0
,
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
},{
"rowIndex"
:
1
,
"transferId"
:
"e7f7fc67-03bc-4596-aaa0-80b82e6b077f"
,
"transferName"
:
"振业里"
,
"transferStatus"
:
0
,
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
},{
"rowIndex"
:
1
,
"transferId"
:
"ab9ff465-767d-409e-91cc-8cd0b29e6b30"
,
"transferName"
:
"天泽园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
},{
"rowIndex"
:
1
,
"transferId"
:
"68a5dfa3-d669-4ebe-ae00-932d6a7cf92d"
,
"transferName"
:
"凯旋二期"
,
"transferStatus"
:
0
,
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
},{
"rowIndex"
:
1
,
"transferId"
:
"6533faaf-f544-4c98-af8f-960c98fd53a6"
,
"transferName"
:
"兴安里西南区"
,
"transferStatus"
:
0
,
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
},{
"rowIndex"
:
1
,
"transferId"
:
"84dcb1d4-bbf4-4f7c-933c-bd05357e7214"
,
"transferName"
:
"春港花园北别墅区"
,
"transferStatus"
:
0
,
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
},{
"rowIndex"
:
1
,
"transferId"
:
"3cb79b8e-43eb-4cad-ad0d-cf381836d208"
,
"transferName"
:
"胜利里南区"
,
"transferStatus"
:
0
,
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
},{
"rowIndex"
:
1
,
"transferId"
:
"fc20b60e-8fca-44d1-991b-dd48ca1dc5f6"
,
"transferName"
:
"兴安里西北区 "
,
"transferStatus"
:
0
,
"methodId"
:
"9ebc9846-e6b4-4945-8788-2a8fc9e33786"
,
"methodName"
:
"城区中心C"
},{
"rowIndex"
:
1
,
"transferId"
:
"7b8a036c-b856-478a-a1e4-02ad504805fd"
,
"transferName"
:
"重阳里北区"
,
"transferStatus"
:
0
,
"methodId"
:
"5f20ed0c-0889-4d47-aa21-91ee6150403d"
,
"methodName"
:
"城区中心D"
},{
"rowIndex"
:
1
,
"transferId"
:
"3bc6556e-aa33-403c-80a9-11593026c483"
,
"transferName"
:
"学府雅居低区"
,
"transferStatus"
:
0
,
"methodId"
:
"5f20ed0c-0889-4d47-aa21-91ee6150403d"
,
"methodName"
:
"城区中心D"
},{
"rowIndex"
:
1
,
"transferId"
:
"508bf6e7-9c0f-48ef-afa1-209852d990eb"
,
"transferName"
:
"学府雅居高区"
,
"transferStatus"
:
0
,
"methodId"
:
"5f20ed0c-0889-4d47-aa21-91ee6150403d"
,
"methodName"
:
"城区中心D"
},{
"rowIndex"
:
1
,
"transferId"
:
"ef0864c6-1a01-41cf-94be-523b4d6063db"
,
"transferName"
:
"兴安里东居民"
,
"transferStatus"
:
0
,
"methodId"
:
"5f20ed0c-0889-4d47-aa21-91ee6150403d"
,
"methodName"
:
"城区中心D"
},{
"rowIndex"
:
1
,
"transferId"
:
"d8b9aecd-857c-4e2e-9e52-6768a3bb452b"
,
"transferName"
:
"兴旺里西区"
,
"transferStatus"
:
0
,
"methodId"
:
"5f20ed0c-0889-4d47-aa21-91ee6150403d"
,
"methodName"
:
"城区中心D"
},{
"rowIndex"
:
1
,
"transferId"
:
"e328fb83-fa92-4e14-a7aa-a67451098f4c"
,
"transferName"
:
"兴盛里北环"
,
"transferStatus"
:
0
,
"methodId"
:
"5f20ed0c-0889-4d47-aa21-91ee6150403d"
,
"methodName"
:
"城区中心D"
},{
"rowIndex"
:
1
,
"transferId"
:
"4cb6eb38-2378-4b71-8a28-bcc5fa4e0150"
,
"transferName"
:
"兴安里东公建"
,
"transferStatus"
:
0
,
"methodId"
:
"5f20ed0c-0889-4d47-aa21-91ee6150403d"
,
"methodName"
:
"城区中心D"
},{
"rowIndex"
:
1
,
"transferId"
:
"73cc8790-83ef-4fd5-ba1d-ca7f3f7fddc0"
,
"transferName"
:
"兴旺里东区"
,
"transferStatus"
:
0
,
"methodId"
:
"5f20ed0c-0889-4d47-aa21-91ee6150403d"
,
"methodName"
:
"城区中心D"
},{
"rowIndex"
:
1
,
"transferId"
:
"cf5d9799-14a8-46c4-af60-fa086b425cb6"
,
"transferName"
:
"春港花园南区"
,
"transferStatus"
:
0
,
"methodId"
:
"5f20ed0c-0889-4d47-aa21-91ee6150403d"
,
"methodName"
:
"城区中心D"
},{
"rowIndex"
:
1
,
"transferId"
:
"ebdb1f27-986d-4508-9570-5b3a6a6256d8"
,
"transferName"
:
"润泽园公寓区"
,
"transferStatus"
:
0
,
"methodId"
:
"acd94e7c-3a72-4f1d-8987-9114033a9b5e"
,
"methodName"
:
"城区中心E"
},{
"rowIndex"
:
1
,
"transferId"
:
"d007451e-5268-4d51-b486-87c55bd5e3b8"
,
"transferName"
:
"兴盛里南环"
,
"transferStatus"
:
0
,
"methodId"
:
"acd94e7c-3a72-4f1d-8987-9114033a9b5e"
,
"methodName"
:
"城区中心E"
},{
"rowIndex"
:
1
,
"transferId"
:
"3ca78310-f360-4843-894c-a539fadcec2c"
,
"transferName"
:
"医大宿舍高区"
,
"transferStatus"
:
0
,
"methodId"
:
"acd94e7c-3a72-4f1d-8987-9114033a9b5e"
,
"methodName"
:
"城区中心E"
},{
"rowIndex"
:
1
,
"transferId"
:
"c1b724b2-9b33-4a68-9d68-c6f98fb54eca"
,
"transferName"
:
"古林里低区"
,
"transferStatus"
:
0
,
"methodId"
:
"acd94e7c-3a72-4f1d-8987-9114033a9b5e"
,
"methodName"
:
"城区中心E"
},{
"rowIndex"
:
1
,
"transferId"
:
"b5cf862d-544c-42ca-83ab-e385901df1f4"
,
"transferName"
:
"地球村北高区"
,
"transferStatus"
:
0
,
"methodId"
:
"acd94e7c-3a72-4f1d-8987-9114033a9b5e"
,
"methodName"
:
"城区中心E"
},{
"rowIndex"
:
1
,
"transferId"
:
"2d76c35f-84cf-416e-8697-047b3d60db93"
,
"transferName"
:
"凯旋一期"
,
"transferStatus"
:
0
,
"methodId"
:
"dc4b99ba-c73d-4fa0-9f5f-f37d890c27c1"
,
"methodName"
:
"城区中心F"
},{
"rowIndex"
:
1
,
"transferId"
:
"092facd2-7c86-456d-8710-138e1dd4bda9"
,
"transferName"
:
"兴慧里西区"
,
"transferStatus"
:
0
,
"methodId"
:
"dc4b99ba-c73d-4fa0-9f5f-f37d890c27c1"
,
"methodName"
:
"城区中心F"
},{
"rowIndex"
:
1
,
"transferId"
:
"00ed41c9-f825-4263-9e31-46416cd63ca1"
,
"transferName"
:
"兴德里北区"
,
"transferStatus"
:
0
,
"methodId"
:
"dc4b99ba-c73d-4fa0-9f5f-f37d890c27c1"
,
"methodName"
:
"城区中心F"
},{
"rowIndex"
:
1
,
"transferId"
:
"8deb5573-bc95-4186-ade6-6b814d16f182"
,
"transferName"
:
"福华里北区"
,
"transferStatus"
:
0
,
"methodId"
:
"dc4b99ba-c73d-4fa0-9f5f-f37d890c27c1"
,
"methodName"
:
"城区中心F"
},{
"rowIndex"
:
1
,
"transferId"
:
"6a187184-7c68-4ef2-bcd8-83e426126ca6"
,
"transferName"
:
"福华里南区"
,
"transferStatus"
:
0
,
"methodId"
:
"dc4b99ba-c73d-4fa0-9f5f-f37d890c27c1"
,
"methodName"
:
"城区中心F"
},{
"rowIndex"
:
1
,
"transferId"
:
"e970e768-13e3-49a3-9283-9dec08ea2769"
,
"transferName"
:
"兴德里南区"
,
"transferStatus"
:
0
,
"methodId"
:
"dc4b99ba-c73d-4fa0-9f5f-f37d890c27c1"
,
"methodName"
:
"城区中心F"
},{
"rowIndex"
:
1
,
"transferId"
:
"ce0ac75f-8f49-43e6-9063-08fc35b3b74f"
,
"transferName"
:
"开元里"
,
"transferStatus"
:
0
,
"methodId"
:
"f0e37b01-2e7d-4ccc-8578-9ae4a46c639a"
,
"methodName"
:
"城区中心G"
},{
"rowIndex"
:
1
,
"transferId"
:
"555ddd23-87ee-4cc6-8eb2-35562d520893"
,
"transferName"
:
"地球村南北环"
,
"transferStatus"
:
0
,
"methodId"
:
"f0e37b01-2e7d-4ccc-8578-9ae4a46c639a"
,
"methodName"
:
"城区中心G"
},{
"rowIndex"
:
1
,
"transferId"
:
"c603e06d-32c9-451d-8d61-362523108dd6"
,
"transferName"
:
"七邻里"
,
"transferStatus"
:
0
,
"methodId"
:
"f0e37b01-2e7d-4ccc-8578-9ae4a46c639a"
,
"methodName"
:
"城区中心G"
},{
"rowIndex"
:
1
,
"transferId"
:
"977a50b1-b3e5-40f0-9a16-89a1a4bfe57c"
,
"transferName"
:
"永明里"
,
"transferStatus"
:
0
,
"methodId"
:
"f0e37b01-2e7d-4ccc-8578-9ae4a46c639a"
,
"methodName"
:
"城区中心G"
},{
"rowIndex"
:
1
,
"transferId"
:
"71eeabc9-ccca-4cde-8292-b3cea6fd0c74"
,
"transferName"
:
"地球村北低区"
,
"transferStatus"
:
0
,
"methodId"
:
"f0e37b01-2e7d-4ccc-8578-9ae4a46c639a"
,
"methodName"
:
"城区中心G"
},{
"rowIndex"
:
1
,
"transferId"
:
"aa1e1c8c-2893-4ef7-91b5-def8a9672dd7"
,
"transferName"
:
"福华里别墅区"
,
"transferStatus"
:
0
,
"methodId"
:
"f0e37b01-2e7d-4ccc-8578-9ae4a46c639a"
,
"methodName"
:
"城区中心G"
},{
"rowIndex"
:
1
,
"transferId"
:
"d7281fb1-a9c6-4a4e-9871-f74e9b7006c0"
,
"transferName"
:
"港星里"
,
"transferStatus"
:
0
,
"methodId"
:
"f0e37b01-2e7d-4ccc-8578-9ae4a46c639a"
,
"methodName"
:
"城区中心G"
},{
"rowIndex"
:
1
,
"transferId"
:
"bfff8176-79c7-4b91-a100-300149103f94"
,
"transferName"
:
"地球村南南环"
,
"transferStatus"
:
0
,
"methodId"
:
"8b529293-cf7f-4138-a1b9-ca0b5942a10a"
,
"methodName"
:
"城区中心H"
},{
"rowIndex"
:
1
,
"transferId"
:
"d5f8ebe6-1d81-4c10-a291-3223101913b8"
,
"transferName"
:
"曙光里西区北环"
,
"transferStatus"
:
0
,
"methodId"
:
"8b529293-cf7f-4138-a1b9-ca0b5942a10a"
,
"methodName"
:
"城区中心H"
},{
"rowIndex"
:
1
,
"transferId"
:
"b3d61496-b1b1-4d05-9d42-6421f299d36e"
,
"transferName"
:
"曙光里东区"
,
"transferStatus"
:
0
,
"methodId"
:
"8b529293-cf7f-4138-a1b9-ca0b5942a10a"
,
"methodName"
:
"城区中心H"
},{
"rowIndex"
:
1
,
"transferId"
:
"93e92fb1-a126-4bf5-a439-95ad92375c0d"
,
"transferName"
:
"惩防教育基地机组2"
,
"transferStatus"
:
0
,
"methodId"
:
"8b529293-cf7f-4138-a1b9-ca0b5942a10a"
,
"methodName"
:
"城区中心H"
},{
"rowIndex"
:
1
,
"transferId"
:
"20052568-449a-45a1-a1e6-e654819f2c1f"
,
"transferName"
:
"福安里"
,
"transferStatus"
:
0
,
"methodId"
:
"8b529293-cf7f-4138-a1b9-ca0b5942a10a"
,
"methodName"
:
"城区中心H"
},{
"rowIndex"
:
1
,
"transferId"
:
"e50d5ff2-d87a-468c-b700-fbed371268d3"
,
"transferName"
:
"曙光里西区南环"
,
"transferStatus"
:
0
,
"methodId"
:
"8b529293-cf7f-4138-a1b9-ca0b5942a10a"
,
"methodName"
:
"城区中心H"
},{
"rowIndex"
:
1
,
"transferId"
:
"ea804181-88a0-4ca5-94c8-03913dafe0b6"
,
"transferName"
:
"建安里北区"
,
"transferStatus"
:
0
,
"methodId"
:
"49340e05-fbc7-4c47-b513-410c7c178c5b"
,
"methodName"
:
"城区中心I"
},{
"rowIndex"
:
1
,
"transferId"
:
"12bb36b1-c83b-42a7-827a-434cae221838"
,
"transferName"
:
"福苑里北区"
,
"transferStatus"
:
0
,
"methodId"
:
"49340e05-fbc7-4c47-b513-410c7c178c5b"
,
"methodName"
:
"城区中心I"
},{
"rowIndex"
:
1
,
"transferId"
:
"75032d1e-b4b1-4b5b-bf3a-ee3536be7fd5"
,
"transferName"
:
"建安里南区"
,
"transferStatus"
:
0
,
"methodId"
:
"49340e05-fbc7-4c47-b513-410c7c178c5b"
,
"methodName"
:
"城区中心I"
},{
"rowIndex"
:
1
,
"transferId"
:
"b5f228ca-4830-49f7-be8f-f2fb82ea884e"
,
"transferName"
:
"福苑里南区"
,
"transferStatus"
:
0
,
"methodId"
:
"49340e05-fbc7-4c47-b513-410c7c178c5b"
,
"methodName"
:
"城区中心I"
},{
"rowIndex"
:
1
,
"transferId"
:
"4e5719c0-fa4e-4ee3-9a64-0ec8086701f4"
,
"transferName"
:
"大港医院高区"
,
"transferStatus"
:
0
,
"methodId"
:
"162ad8be-14cf-4101-9c29-81b4a9a8afa2"
,
"methodName"
:
"城区中心J"
},{
"rowIndex"
:
1
,
"transferId"
:
"5b9d3c03-ff6e-4386-97d4-a9ea587ad2ea"
,
"transferName"
:
"重阳里南低区"
,
"transferStatus"
:
0
,
"methodId"
:
"162ad8be-14cf-4101-9c29-81b4a9a8afa2"
,
"methodName"
:
"城区中心J"
},{
"rowIndex"
:
1
,
"transferId"
:
"f710c377-4184-4b17-9791-b680b416d475"
,
"transferName"
:
"重阳里南高区"
,
"transferStatus"
:
0
,
"methodId"
:
"162ad8be-14cf-4101-9c29-81b4a9a8afa2"
,
"methodName"
:
"城区中心J"
},{
"rowIndex"
:
1
,
"transferId"
:
"6fc7c546-b20e-4bfd-8805-e5925f29b88f"
,
"transferName"
:
"大港医院低区"
,
"transferStatus"
:
0
,
"methodId"
:
"162ad8be-14cf-4101-9c29-81b4a9a8afa2"
,
"methodName"
:
"城区中心J"
},{
"rowIndex"
:
1
,
"transferId"
:
"18b5074e-feb2-4a91-9fb5-6c4eeae8cc76"
,
"transferName"
:
"医科大学"
,
"transferStatus"
:
0
,
"methodId"
:
"39de5021-a9a5-4873-8df5-ead5f38a664c"
,
"methodName"
:
"城区中心K"
},{
"rowIndex"
:
1
,
"transferId"
:
"46e0a12e-4769-4525-859d-b9879a405912"
,
"transferName"
:
"医大宿舍低区"
,
"transferStatus"
:
0
,
"methodId"
:
"39de5021-a9a5-4873-8df5-ead5f38a664c"
,
"methodName"
:
"城区中心K"
},{
"rowIndex"
:
1
,
"transferId"
:
"e9be2e6d-f7ea-48c0-a618-d61d3c98ef96"
,
"transferName"
:
"外国语学院"
,
"transferStatus"
:
0
,
"methodId"
:
"39de5021-a9a5-4873-8df5-ead5f38a664c"
,
"methodName"
:
"城区中心K"
},{
"rowIndex"
:
1
,
"transferId"
:
"9ddeb4bb-4a6f-4de1-985b-16059f29b0ad"
,
"transferName"
:
"福汇园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"f9271d72-70ea-4a7e-ac57-bb1c7604548d"
,
"methodName"
:
"港东 低流量<30吨/万平米"
},{
"rowIndex"
:
1
,
"transferId"
:
"5dec2dd0-6d86-422c-a582-23e385da6bf9"
,
"transferName"
:
"福源花园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"f9271d72-70ea-4a7e-ac57-bb1c7604548d"
,
"methodName"
:
"港东 低流量<30吨/万平米"
},{
"rowIndex"
:
1
,
"transferId"
:
"902ddef0-6466-44a0-a990-645d890d6877"
,
"transferName"
:
"海韵园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"f9271d72-70ea-4a7e-ac57-bb1c7604548d"
,
"methodName"
:
"港东 低流量<30吨/万平米"
},{
"rowIndex"
:
1
,
"transferId"
:
"275134a5-b9f4-436d-b768-6b0b14bcb3fb"
,
"transferName"
:
"福居园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"f9271d72-70ea-4a7e-ac57-bb1c7604548d"
,
"methodName"
:
"港东 低流量<30吨/万平米"
},{
"rowIndex"
:
1
,
"transferId"
:
"5afe6e12-63dc-4d06-bc95-77362dcb215c"
,
"transferName"
:
"海邻园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"f9271d72-70ea-4a7e-ac57-bb1c7604548d"
,
"methodName"
:
"港东 低流量<30吨/万平米"
},{
"rowIndex"
:
1
,
"transferId"
:
"8b93c4d7-12f0-47de-8d12-9d534ab57ce4"
,
"transferName"
:
"福源花园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"f9271d72-70ea-4a7e-ac57-bb1c7604548d"
,
"methodName"
:
"港东 低流量<30吨/万平米"
},{
"rowIndex"
:
1
,
"transferId"
:
"ee5d8699-2f9f-4b74-a60d-d9e7a403925e"
,
"transferName"
:
"海信园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"f9271d72-70ea-4a7e-ac57-bb1c7604548d"
,
"methodName"
:
"港东 低流量<30吨/万平米"
},{
"rowIndex"
:
1
,
"transferId"
:
"bb421b86-ede4-4729-802f-eb4eaea20746"
,
"transferName"
:
"福居园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"f9271d72-70ea-4a7e-ac57-bb1c7604548d"
,
"methodName"
:
"港东 低流量<30吨/万平米"
},{
"rowIndex"
:
1
,
"transferId"
:
"1ded514b-e0f6-4263-92ea-ffb2828d97f5"
,
"transferName"
:
"福汇园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"f9271d72-70ea-4a7e-ac57-bb1c7604548d"
,
"methodName"
:
"港东 低流量<30吨/万平米"
},{
"rowIndex"
:
1
,
"transferId"
:
"962b229d-11f2-42ed-bdce-2b3846c216ca"
,
"transferName"
:
"观溪庭院海钰园"
,
"transferStatus"
:
0
,
"methodId"
:
"8d9efa3f-4ce1-4171-9e42-c1b7ca4bb9fc"
,
"methodName"
:
"港东A"
},{
"rowIndex"
:
1
,
"transferId"
:
"c51e6447-99c2-4364-ab29-2ff81fbbf4d6"
,
"transferName"
:
"逸盛苑低区"
,
"transferStatus"
:
0
,
"methodId"
:
"8d9efa3f-4ce1-4171-9e42-c1b7ca4bb9fc"
,
"methodName"
:
"港东A"
},{
"rowIndex"
:
1
,
"transferId"
:
"769fb83c-7602-4a44-a78a-59866d627728"
,
"transferName"
:
"观溪庭院观溪"
,
"transferStatus"
:
0
,
"methodId"
:
"8d9efa3f-4ce1-4171-9e42-c1b7ca4bb9fc"
,
"methodName"
:
"港东A"
},{
"rowIndex"
:
1
,
"transferId"
:
"5f1494f3-cce4-4453-a0c5-85fba94c7a02"
,
"transferName"
:
"海居园一期公建"
,
"transferStatus"
:
0
,
"methodId"
:
"8d9efa3f-4ce1-4171-9e42-c1b7ca4bb9fc"
,
"methodName"
:
"港东A"
},{
"rowIndex"
:
1
,
"transferId"
:
"76f5fd18-dfc6-4a9a-bd7e-b3a119dbe57f"
,
"transferName"
:
"天晟庭院"
,
"transferStatus"
:
0
,
"methodId"
:
"8d9efa3f-4ce1-4171-9e42-c1b7ca4bb9fc"
,
"methodName"
:
"港东A"
},{
"rowIndex"
:
1
,
"transferId"
:
"215b1b95-88fe-484a-af7e-d36bd97235e7"
,
"transferName"
:
"大港七幼"
,
"transferStatus"
:
0
,
"methodId"
:
"8d9efa3f-4ce1-4171-9e42-c1b7ca4bb9fc"
,
"methodName"
:
"港东A"
},{
"rowIndex"
:
1
,
"transferId"
:
"650002fe-86da-4b3c-83a6-dd6720b8b587"
,
"transferName"
:
"云岚庭院低区"
,
"transferStatus"
:
0
,
"methodId"
:
"8d9efa3f-4ce1-4171-9e42-c1b7ca4bb9fc"
,
"methodName"
:
"港东A"
},{
"rowIndex"
:
1
,
"transferId"
:
"8f5386e5-bf57-4336-b92a-09a62fc8e7f5"
,
"transferName"
:
"海怡园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"27d16f2e-14ba-4f6f-a7f0-12a4a5c6cef5"
,
"transferName"
:
"街道"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"85b19446-f1d2-45b6-9ab0-1a3880190b5b"
,
"transferName"
:
"海华园"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"6a5d8708-340b-4288-82df-1bc44d992111"
,
"transferName"
:
"海居园一期民建"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"cbf567d2-6054-42bc-973c-214f8b512166"
,
"transferName"
:
"福合园"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"b3ee2a6c-e2ae-41b6-b18f-22eb122accc9"
,
"transferName"
:
"天启园_天瑞"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"ca5bd09e-9773-4a6f-a974-3345245be295"
,
"transferName"
:
"海诚园北区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"4347555a-647a-4bb3-b758-4aa4d0b6f887"
,
"transferName"
:
"人民法院"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"bfac6f50-4f8c-4f49-98ae-4b1a7459ee56"
,
"transferName"
:
"公路局"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"61bf1816-3d31-419d-a2ff-522c7264b2d1"
,
"transferName"
:
"海榕园中区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"95271d0e-9e13-4821-ad07-578b68a5fa56"
,
"transferName"
:
"海宁园北区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"c1880432-ff30-47ef-b8e7-5f97bfa059a9"
,
"transferName"
:
"海榕园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"7218626b-c3ab-45f6-8c26-61097c92de50"
,
"transferName"
:
"海花园"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"03ffc5cb-a0f7-4938-81b0-675d1a2afe7c"
,
"transferName"
:
"海诚园南区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"7a5d291e-3d10-4561-ba78-6ee21691666a"
,
"transferName"
:
"检察院"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"8c6c39d1-9b5b-433d-bf6d-73e463ba214a"
,
"transferName"
:
"中国移动"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"17e9da15-00bb-4c0b-84af-78528390cded"
,
"transferName"
:
"海怡园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"96091bad-297b-4bed-bce7-7f761b5ff77c"
,
"transferName"
:
"天启园_天宸"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"38f14f4c-e5b6-46a6-8add-925672d40ea6"
,
"transferName"
:
"海天园二期高区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"0462fddc-5b4a-4c8b-9508-95c8e5868abb"
,
"transferName"
:
"天启园_天启"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"1ea41b93-4f9a-489b-8b94-9dca7ee07891"
,
"transferName"
:
"海清园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"49cb040c-06e2-4d49-9a79-aa93c990668c"
,
"transferName"
:
"海清园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"e9cc4871-2034-4a9a-bb4e-c6c9135ac003"
,
"transferName"
:
"海保园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"68901efe-062f-447f-aabc-d2a3e607a2dd"
,
"transferName"
:
"海雅园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"ad78f42b-027d-4cac-b2e8-f07e8e5f600d"
,
"transferName"
:
"福雅园北区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"72dbc423-aed5-4033-9970-f0f67863efb5"
,
"transferName"
:
"海天园二期低区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"83eba70c-ea58-4f5a-8237-fdc32b3de361"
,
"transferName"
:
"海保园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"bd384fd5-b867-4cfd-9f94-95152d8fd36b"
,
"methodName"
:
"港东B"
},{
"rowIndex"
:
1
,
"transferId"
:
"7018653d-2dcc-48af-9988-1b0b02d21f75"
,
"transferName"
:
"海雅园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"d90b02b0-d077-45cd-95ab-2d39fe52cb36"
,
"transferName"
:
"海邻园二期"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"f36eac93-5505-465d-8a83-4a3bfb466d5c"
,
"transferName"
:
"海都园小学"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"8c01dbe6-ab49-4c95-973d-4df08a734cac"
,
"transferName"
:
"海宁园二期公建区"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"b6216c70-d0c0-465f-8019-594dfa954a7c"
,
"transferName"
:
"大港一中学校"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"d488fb15-cda9-432b-b80f-7997b9379e8d"
,
"transferName"
:
"福芳园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"06c1e172-3d3d-4cce-a830-7c9a071b2632"
,
"transferName"
:
"海滨园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"0c9b7ff2-9a3d-4d67-b616-90d271bef50c"
,
"transferName"
:
"福雅园南区"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"26f6ba85-eb0f-42d2-90ce-977daad46bf9"
,
"transferName"
:
"福芳园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"af4dae68-9aaa-4b24-8ebe-a6bce5e8c194"
,
"transferName"
:
"福渔园东高区"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"79b491db-89e0-4831-8b5a-cb85cf33ac0c"
,
"transferName"
:
"海滨园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"e1289fbe-9d71-4426-a500-d3024a8c84c1"
,
"transferName"
:
"港东锅炉房"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"c4b05157-eac0-4e07-9600-d7912b6602cc"
,
"transferName"
:
"海宁园南区"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"8d57c927-52cf-42ae-85b9-fa2fba06262e"
,
"transferName"
:
"福润园"
,
"transferStatus"
:
0
,
"methodId"
:
"079e4f56-18b4-4a01-a231-740ca8683556"
,
"methodName"
:
"港东C"
},{
"rowIndex"
:
1
,
"transferId"
:
"2ba23b0e-e9c0-4fb1-b387-01bfc2ff45bd"
,
"transferName"
:
"海都园"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"dabac14e-2d16-421f-a616-05f23afdb219"
,
"transferName"
:
"汇康园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"4f239394-58eb-4dc2-b65a-0660186ce0c1"
,
"transferName"
:
"海韵园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"ebee8bf5-942b-4658-97c0-07d254699b3a"
,
"transferName"
:
"福渔园中区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"4288797a-a5e1-4358-bf92-13615af8ae41"
,
"transferName"
:
"海天园"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"ae1b8c87-2e31-4688-9ef3-15b09fa13f69"
,
"transferName"
:
"汇德园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"5ec59cf1-a235-4a50-b47e-28446b890545"
,
"transferName"
:
"福锦园"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"edf6ffe4-abb1-4852-ae32-4949bff872b9"
,
"transferName"
:
"福欣园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"0b596f22-f40e-4e16-a552-51b24feba66a"
,
"transferName"
:
"福津园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"537dbc95-ef89-4261-934e-63652d789702"
,
"transferName"
:
"福满园"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"510e3f3c-af43-433c-9e68-63fc3c743f79"
,
"transferName"
:
"海明园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"a7a4cee3-d031-45bc-a1f0-6666788935b8"
,
"transferName"
:
"海明园二期"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"1765f9fd-ba1a-4292-8c18-7d9d9e2987cd"
,
"transferName"
:
"福欣园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"7cefa974-e382-4458-a214-8c632db225ab"
,
"transferName"
:
"汇丰园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"713e671d-b002-45e5-b7e3-a40652e4e4b0"
,
"transferName"
:
"福绣园"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"34d8847c-489c-4879-bcdd-b69c44d8ca50"
,
"transferName"
:
"大港十中北区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"cfc7766c-0f8f-4310-b731-bb907c8b0fc5"
,
"transferName"
:
"海明园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"d5542b27-fc6e-4a28-91b5-cc7c2918ecbc"
,
"transferName"
:
"福渔园东低区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"dffb14fa-ed06-447f-857d-d3bbcc7c8049"
,
"transferName"
:
"海川园南区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"329a6350-9fca-4e20-96f5-d849465d66f2"
,
"transferName"
:
"海璇园"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"5690ef3e-4c56-4ee8-af64-f04e35c671dd"
,
"transferName"
:
"汇德园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"1c896790-ee70-46ec-acf6-f7da3133cbf8"
,
"transferName"
:
"汇丰园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"9ad563a2-cf55-4ffa-a878-f9c85af106e1"
,
"transferName"
:
"大港十中南区"
,
"transferStatus"
:
0
,
"methodId"
:
"994e57b9-5262-4eb9-a64b-151c58ef5cbb"
,
"methodName"
:
"港东D"
},{
"rowIndex"
:
1
,
"transferId"
:
"5e683ad0-bfe4-4117-b191-25f9317017c0"
,
"transferName"
:
"大港一中福港园"
,
"transferStatus"
:
0
,
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
},{
"rowIndex"
:
1
,
"transferId"
:
"5ea173af-571e-4c7b-a56a-4022caa06674"
,
"transferName"
:
"海通园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
},{
"rowIndex"
:
1
,
"transferId"
:
"63edc493-1e0e-40b5-b2c8-42866e75155d"
,
"transferName"
:
"汇康园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
},{
"rowIndex"
:
1
,
"transferId"
:
"ba164e9b-e39b-4a4e-8b51-535ec2629882"
,
"transferName"
:
"福波园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
},{
"rowIndex"
:
1
,
"transferId"
:
"39e2a4b9-8986-4de3-880b-57e726c56507"
,
"transferName"
:
"福渔园西区"
,
"transferStatus"
:
0
,
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
},{
"rowIndex"
:
1
,
"transferId"
:
"f3e43b3b-8711-4fc0-bd9e-7dccf4571bcd"
,
"transferName"
:
"海信园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
},{
"rowIndex"
:
1
,
"transferId"
:
"0ab6dece-7364-4f57-8eed-7fecd829d851"
,
"transferName"
:
"海邻园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
},{
"rowIndex"
:
1
,
"transferId"
:
"cd9694cf-62e1-4dcb-9fca-a989e90b46b1"
,
"transferName"
:
"福津园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
},{
"rowIndex"
:
1
,
"transferId"
:
"d3992f5a-5d4c-4945-ab72-ad59b2c8c079"
,
"transferName"
:
"福泽园"
,
"transferStatus"
:
0
,
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
},{
"rowIndex"
:
1
,
"transferId"
:
"a1dc48f8-a867-48f3-8139-ba3b9f2275c1"
,
"transferName"
:
"海通园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
},{
"rowIndex"
:
1
,
"transferId"
:
"934b647c-7e08-47b4-888a-c16fe6227e36"
,
"transferName"
:
"海景园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
},{
"rowIndex"
:
1
,
"transferId"
:
"94b9724c-defc-47f6-a06e-c3442a85e907"
,
"transferName"
:
"福波园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
},{
"rowIndex"
:
1
,
"transferId"
:
"291b1f03-9e32-40ff-915e-f14504e611fe"
,
"transferName"
:
"海景园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"00223ace-e9a0-4aab-b43c-acf6fc3ca680"
,
"methodName"
:
"港东E"
},{
"rowIndex"
:
1
,
"transferId"
:
"955d663d-173e-4de7-b6b4-1455d25784e5"
,
"transferName"
:
"仁源公寓"
,
"transferStatus"
:
0
,
"methodId"
:
"039567b6-d3aa-4c5a-9789-c334ed2cbdc3"
,
"methodName"
:
"港东二部节能"
},{
"rowIndex"
:
1
,
"transferId"
:
"239d77bf-7dd9-4b11-908e-604376149421"
,
"transferName"
:
"海川园北低区"
,
"transferStatus"
:
0
,
"methodId"
:
"039567b6-d3aa-4c5a-9789-c334ed2cbdc3"
,
"methodName"
:
"港东二部节能"
},{
"rowIndex"
:
1
,
"transferId"
:
"d5a53d6d-3632-460d-b794-ba6414be7ea4"
,
"transferName"
:
"海川园北高区"
,
"transferStatus"
:
0
,
"methodId"
:
"039567b6-d3aa-4c5a-9789-c334ed2cbdc3"
,
"methodName"
:
"港东二部节能"
},{
"rowIndex"
:
1
,
"transferId"
:
"523cdfa1-b342-4dbf-abb9-41f083e32e84"
,
"transferName"
:
"翰锦园"
,
"transferStatus"
:
0
,
"methodId"
:
"553d1420-5a2c-44e1-9c55-5d1e81033dd9"
,
"methodName"
:
"小王庄"
},{
"rowIndex"
:
1
,
"transferId"
:
"de2b12d5-6b69-4ea3-92f4-60e0913671b3"
,
"transferName"
:
"圣美园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"553d1420-5a2c-44e1-9c55-5d1e81033dd9"
,
"methodName"
:
"小王庄"
},{
"rowIndex"
:
1
,
"transferId"
:
"591de082-de90-4a28-abf6-6feb70b6e940"
,
"transferName"
:
"瑞景园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"553d1420-5a2c-44e1-9c55-5d1e81033dd9"
,
"methodName"
:
"小王庄"
},{
"rowIndex"
:
1
,
"transferId"
:
"79bf5f12-cd45-44d3-b6b7-83d5c9d72068"
,
"transferName"
:
"瑞景园低区"
,
"transferStatus"
:
0
,
"methodId"
:
"553d1420-5a2c-44e1-9c55-5d1e81033dd9"
,
"methodName"
:
"小王庄"
},{
"rowIndex"
:
1
,
"transferId"
:
"867da9ea-b875-4c75-b40a-91fec6d9050a"
,
"transferName"
:
"枫雅园"
,
"transferStatus"
:
0
,
"methodId"
:
"553d1420-5a2c-44e1-9c55-5d1e81033dd9"
,
"methodName"
:
"小王庄"
},{
"rowIndex"
:
1
,
"transferId"
:
"a5225e87-ccbe-488b-bc04-00633dc0138d"
,
"transferName"
:
"枫雅园_幼儿园"
,
"transferStatus"
:
0
,
"methodId"
:
"8ee26179-44df-438c-aaf9-aab2e4a5b004"
,
"methodName"
:
"小王庄公建方案"
},{
"rowIndex"
:
1
,
"transferId"
:
"da3cb005-9626-4a11-8d0d-9351508ea89d"
,
"transferName"
:
"圣美园高区"
,
"transferStatus"
:
0
,
"methodId"
:
"98bf7f95-387b-495d-b37f-2d94bb0460c8"
,
"methodName"
:
"小王庄小学幼儿园方案"
}]}
}
src/views/RemotePage/CtrlSecondTemp.vue
View file @
10394bf0
...
...
@@ -575,7 +575,7 @@
import
{
vFloatNumber
,
vSignedFloatNumber
}
from
"../../utils/directives.js"
;
import
type
{
FormInstance
,
FormRules
}
from
'element-plus'
import
{
ctrlSecondTempRules
}
from
'../../utils/ctrlSecondTempRules.js'
import
{
remoteGetCtrlSecondTemp
}
from
"@/dataJson/Remote/CtrlSecondTemp"
// const rules = ctrlSecondTempRules;
const
isAdd
=
ref
(
false
)
...
...
@@ -680,6 +680,58 @@
},
{
deep
:
true
// 确保深度监听
});
const
handleRowClick
=
(
row
)
=>
{
forms
.
methodId
=
row
.
methodId
;
forms
.
methodName
=
row
.
methodName
;
forms
.
transferIds
=
row
.
transferIds
;
forms
.
isJD
=
row
.
isJD
;
forms
.
isAuto
=
row
.
isAuto
;
forms
.
outdoorTempStart1
=
row
.
outdoorTempStart1
;
forms
.
outdoorTempStart2
=
row
.
outdoorTempStart2
;
forms
.
outdoorTempStart3
=
row
.
outdoorTempStart3
;
forms
.
outdoorTempStart4
=
row
.
outdoorTempStart4
;
forms
.
outdoorTempEnd1
=
row
.
outdoorTempEnd1
;
forms
.
outdoorTempEnd2
=
row
.
outdoorTempEnd2
;
forms
.
outdoorTempEnd3
=
row
.
outdoorTempEnd3
;
forms
.
outdoorTempEnd4
=
row
.
outdoorTempEnd4
;
forms
.
tempGain1
=
row
.
tempGain1
;
forms
.
tempGain2
=
row
.
tempGain2
;
forms
.
tempGain3
=
row
.
tempGain3
;
forms
.
tempGain4
=
row
.
tempGain4
;
forms
.
temperature
=
row
.
temperature
;
forms
.
power
=
row
.
power
;
forms
.
wind
=
row
.
wind
;
forms
.
outdoorStartHour1
=
row
.
outdoorStartHour1
;
forms
.
outdoorStartHour2
=
row
.
outdoorStartHour2
;
forms
.
outdoorStartHour3
=
row
.
outdoorStartHour3
;
forms
.
outdoorStartHour4
=
row
.
outdoorStartHour4
;
forms
.
outdoorStartHour5
=
row
.
outdoorStartHour5
;
forms
.
outdoorStartHour6
=
row
.
outdoorStartHour6
;
forms
.
outdoorStartMin1
=
row
.
outdoorStartMin1
;
forms
.
outdoorStartMin2
=
row
.
outdoorStartMin2
;
forms
.
outdoorStartMin3
=
row
.
outdoorStartMin3
;
forms
.
outdoorStartMin4
=
row
.
outdoorStartMin4
;
forms
.
outdoorStartMin5
=
row
.
outdoorStartMin5
;
forms
.
outdoorStartMin6
=
row
.
outdoorStartMin6
;
forms
.
outdoorEndHour1
=
row
.
outdoorEndHour1
;
forms
.
outdoorEndHour2
=
row
.
outdoorEndHour2
;
forms
.
outdoorEndHour3
=
row
.
outdoorEndHour3
;
forms
.
outdoorEndHour4
=
row
.
outdoorEndHour4
;
forms
.
outdoorEndHour5
=
row
.
outdoorEndHour5
;
forms
.
outdoorEndHour6
=
row
.
outdoorEndHour6
;
forms
.
outdoorEndMin1
=
row
.
outdoorEndMin1
;
forms
.
outdoorEndMin2
=
row
.
outdoorEndMin2
;
forms
.
outdoorEndMin3
=
row
.
outdoorEndMin3
;
forms
.
outdoorEndMin4
=
row
.
outdoorEndMin4
;
forms
.
outdoorEndMin5
=
row
.
outdoorEndMin5
;
forms
.
outdoorEndMin6
=
row
.
outdoorEndMin6
;
forms
.
cooling1
=
row
.
cooling1
;
forms
.
cooling2
=
row
.
cooling2
;
forms
.
cooling3
=
row
.
cooling3
;
forms
.
cooling4
=
row
.
cooling4
;
forms
.
cooling5
=
row
.
cooling5
;
forms
.
cooling6
=
row
.
cooling6
;
}
function
initPage
(){
isLoading
.
value
=
true
;
...
...
@@ -688,23 +740,30 @@
}
initPage
();
//原读取
// async function getSecondTemp(){
// try{
// var result = await http.post('/api/remote/GetCtrlSecondTemp', enterpriseId);
// console.log (JSON.stringify(result))
// if(result){
// if(result.success){
// secondTemp.value = result.data.ctrolSecTempList;
// methodId.value = secondTemp.value[0].methodId;
// transfers.value = result.data.transferList;
// getTransfer();
// }else{
// ElMessage.error(result.message);
// }
// }
// }catch(error){
// ElMessage.error(error.message);
// }
// }
async
function
getSecondTemp
(){
try
{
var
result
=
await
http
.
post
(
'/api/remote/GetCtrlSecondTemp'
,
enterpriseId
);
if
(
result
){
if
(
result
.
success
){
secondTemp
.
value
=
result
.
data
.
ctrolSecTempList
;
secondTemp
.
value
=
remoteGetCtrlSecondTemp
.
data
.
ctrolSecTempList
;
methodId
.
value
=
secondTemp
.
value
[
0
].
methodId
;
transfers
.
value
=
result
.
data
.
transferList
;
transfers
.
value
=
remoteGetCtrlSecondTemp
.
data
.
transferList
;
getTransfer
();
}
else
{
ElMessage
.
error
(
result
.
message
);
}
}
}
catch
(
error
){
ElMessage
.
error
(
error
.
message
);
}
}
function
getTransfer
(){
...
...
@@ -754,153 +813,154 @@
}
}
async
function
DelSecTemp
(){
try
{
isLoading
.
value
=
true
;
dialogVisible
.
value
=
false
;
var
result
=
await
http
.
post
(
'/api/remote/DeleteSecTemp'
,
{
methodId
:
forms
.
methodId
,
methodName
:
forms
.
methodName
});
if
(
result
){
if
(
result
.
success
){
ElMessage
.
success
(
"'"
+
forms
.
methodName
+
"' "
+
result
.
message
);
getSecondTemp
();
}
else
{
ElMessage
.
error
(
result
.
message
);
}
}
}
catch
(
error
){
ElMessage
.
error
(
error
.
message
);
}
finally
{
isLoading
.
value
=
false
;
}
}
//
async function DelSecTemp(){
//
try {
//
isLoading.value = true;
//
dialogVisible.value = false;
//
var result = await http.post('/api/remote/DeleteSecTemp', {methodId: forms.methodId, methodName: forms.methodName });
//
if(result){
//
if(result.success){
//
ElMessage.success("'"+ forms.methodName +"' "+ result.message);
//
getSecondTemp();
//
}else{
//
ElMessage.error(result.message);
//
}
//
}
//
}catch(error){
//
ElMessage.error(error.message);
//
}finally{
//
isLoading.value = false;
//
}
//
}
const
submitForm
=
async
(
formEl
:
FormInstance
|
undefined
)
=>
{
if
(
!
formEl
)
return
await
formEl
.
validate
((
valid
,
fields
)
=>
{
if
(
valid
)
{
SaveSecTemp
();
}
else
{
ElMessage
.
error
(
'提交失败!'
);
console
.
log
(
'error submit!'
,
fields
)
}
})
}
async
function
SaveSecTemp
(){
try
{
isLoading
.
value
=
true
;
var
url
=
"/api/remote/UpdateSecTemp"
if
(
isAdd
.
value
===
true
)
{
//url = "/api/remote/AddSecTemp"
forms
.
methodId
=
"00000000-0000-0000-0000-000000000000"
;
var
oldValue
=
secondTemp
.
value
.
findIndex
(
obj
=>
obj
.
methodName
===
forms
.
methodName
);
if
(
oldValue
>=
0
)
{
ElMessage
.
error
(
"'"
+
forms
.
methodName
+
"' "
+
'方案名已存在'
);
return
;
}
}
else
{
var
oldValue
=
secondTemp
.
value
.
findIndex
(
obj
=>
obj
.
methodName
===
forms
.
methodName
&&
obj
.
methodId
!==
forms
.
methodId
);
if
(
oldValue
>=
0
)
{
ElMessage
.
error
(
"'"
+
forms
.
methodName
+
"' "
+
'方案名已存在'
);
return
;
}
}
var
currTransfers
=
[];
selectedRows
.
value
.
forEach
(
item
=>
{
currTransfers
.
push
(
item
.
transferId
);
});
var
result
=
await
http
.
post
(
url
,
{
reqSecTempInfo
:
forms
,
transferIds
:
currTransfers
});
if
(
result
){
if
(
result
.
success
)
{
ElMessage
.
success
(
"'"
+
forms
.
methodName
+
"' "
+
result
.
message
);
getSecondTemp
();
}
else
{
ElMessage
.
error
(
result
.
message
);
}
}
}
catch
(
error
){
ElMessage
.
error
(
error
.
message
);
}
finally
{
isLoading
.
value
=
false
;
if
(
isAdd
.
value
===
true
)
{
CancelSecTemp
();
}
}
}
const
exceForm
=
async
(
formEl
:
FormInstance
|
undefined
)
=>
{
if
(
!
formEl
)
return
await
formEl
.
validate
((
valid
,
fields
)
=>
{
if
(
valid
)
{
WriteAllStatus
();
}
else
{
ElMessage
.
error
(
'提交失败!'
);
console
.
log
(
'error submit!'
,
fields
)
}
})
}
async
function
WriteAllStatus
()
{
try
{
isLoading
.
value
=
true
;
myIndeterminate
.
value
=
!
myIndeterminate
.
value
;
progress
.
value
=
1
;
if
(
!
selectedRows
||
selectedRows
.
value
.
length
===
0
)
{
ElMessage
.
warning
(
"请勾选需要远程控制的换热站!"
);
return
;
}
const
item
=
secondTemp
.
value
.
find
(
item
=>
item
.
methodId
===
forms
.
methodId
);
if
(
!
item
)
{
ElMessage
.
warning
(
"未获取到二次网方案内容,先保存后再执行!"
);
return
;
}
if
(
!
checkSave
(
item
))
{
ElMessage
.
warning
(
"二次网方案内容有修改,先保存后再执行!"
);
return
;
}
var
total
=
selectedRows
.
value
.
length
;
var
count
=
0
;
for
(
const
item
of
selectedRows
.
value
)
{
item
.
transferStatus
=
0
;
}
for
(
const
item
of
selectedRows
.
value
)
{
await
WriteStation
(
item
);
count
=
count
+
1
;
progress
.
value
=
(
count
/
total
*
100
).
toFixed
(
2
);
}
}
catch
(
error
)
{
ElMessage
.
error
(
error
.
message
);
}
finally
{
isLoading
.
value
=
false
;
myIndeterminate
.
value
=
!
myIndeterminate
.
value
;
progress
.
value
=
100
;
}
}
async
function
WriteStation
(
element
){
try
{
//console.log(writeValue);
var
result
=
await
http
.
post
(
'/api/remote/ExcecuteSecTemp'
,
{
"TransferId"
:
element
.
transferId
,
"remoteInfo"
:
forms
});
if
(
result
.
success
){
ElMessage
.
success
(
element
.
transferName
+
" "
+
result
.
message
);
element
.
transferStatus
=
1
;
}
else
{
ElMessage
.
error
(
element
.
transferName
+
" "
+
result
.
message
);
if
(
result
.
message
===
"连接异常"
){
element
.
transferStatus
=
3
;
}
else
{
element
.
transferStatus
=
2
;
}
}
}
catch
(
error
){
ElMessage
.
error
(
element
.
transferName
+
" "
+
error
.
message
);
element
.
transferStatus
=
3
;
}
}
//保存修改
// const submitForm = async (formEl: FormInstance | undefined) => {
// if (!formEl) return
// await formEl.validate((valid, fields) => {
// if (valid) {
// SaveSecTemp();
// } else {
// ElMessage.error('提交失败!');
// console.log('error submit!', fields)
// }
// })
// }
//
// async function SaveSecTemp(){
// try {
// isLoading.value = true;
// var url = "/api/remote/UpdateSecTemp"
// if (isAdd.value === true) {
// //url = "/api/remote/AddSecTemp"
// forms.methodId = "00000000-0000-0000-0000-000000000000";
// var oldValue = secondTemp.value.findIndex(obj => obj.methodName === forms.methodName);
// if (oldValue>=0) {
// ElMessage.error("'" + forms.methodName + "' " + '方案名已存在');
// return;
// }
// } else {
// var oldValue = secondTemp.value.findIndex(obj => obj.methodName === forms.methodName && obj.methodId !== forms.methodId);
// if (oldValue>=0) {
// ElMessage.error("'" + forms.methodName + "' " + '方案名已存在');
// return;
// }
// }
//
// var currTransfers = [];
// selectedRows.value.forEach(item => {
// currTransfers.push(item.transferId);
// });
// var result = await http.post(url, {reqSecTempInfo: forms, transferIds: currTransfers});
// if(result){
// if (result.success) {
// ElMessage.success("'" + forms.methodName + "' " + result.message);
// getSecondTemp();
// }else{
// ElMessage.error(result.message);
// }
// }
// }catch(error){
// ElMessage.error(error.message);
// }finally{
// isLoading.value = false;
// if (isAdd.value === true) {
// CancelSecTemp();
// }
// }
// }
//原执行方案
// const exceForm = async (formEl: FormInstance | undefined) => {
// if (!formEl) return
// await formEl.validate((valid, fields) => {
// if (valid) {
// WriteAllStatus();
// } else {
// ElMessage.error('提交失败!');
// console.log('error submit!', fields)
// }
// })
// }
//原写入
// async function WriteAllStatus() {
// try {
// isLoading.value = true;
// myIndeterminate.value = !myIndeterminate.value;
// progress.value = 1;
//
// if (!selectedRows || selectedRows.value.length === 0) {
// ElMessage.warning("请勾选需要远程控制的换热站!");
// return;
// }
// const item = secondTemp.value.find(item => item.methodId === forms.methodId);
// if (!item) {
// ElMessage.warning("未获取到二次网方案内容,先保存后再执行!");
// return;
// }
// if (!checkSave(item)) {
// ElMessage.warning("二次网方案内容有修改,先保存后再执行!");
// return;
// }
//
// var total = selectedRows.value.length;
// var count = 0;
// for (const item of selectedRows.value) {
// item.transferStatus = 0;
// }
// for (const item of selectedRows.value) {
// await WriteStation(item);
// count = count + 1;
// progress.value = (count / total * 100).toFixed(2);
// }
//
// } catch (error) {
// ElMessage.error(error.message);
// } finally {
// isLoading.value = false;
// myIndeterminate.value = !myIndeterminate.value;
// progress.value = 100;
// }
// }
//
// async function WriteStation(element){
// try{
// //console.log(writeValue);
// var result = await http.post('/api/remote/ExcecuteSecTemp', {"TransferId":element.transferId, "remoteInfo": forms});
// if(result.success){
// ElMessage.success(element.transferName +" "+ result.message);
// element.transferStatus = 1;
// }else{
// ElMessage.error(element.transferName +" "+ result.message);
// if(result.message === "连接异常"){
// element.transferStatus = 3;
// }else{
// element.transferStatus = 2;
// }
// }
// }catch(error){
// ElMessage.error(element.transferName +" "+ error.message);
// element.transferStatus = 3;
// }
// }
function
checkSave
(
item
){
...
...
@@ -989,60 +1049,6 @@
const
handleSelectionChange
=
(
selection
)
=>
{
selectedRows
.
value
=
selection
;
};
const
handleRowClick
=
(
row
)
=>
{
forms
.
methodId
=
row
.
methodId
;
forms
.
methodName
=
row
.
methodName
;
forms
.
transferIds
=
row
.
transferIds
;
forms
.
isJD
=
row
.
isJD
;
forms
.
isAuto
=
row
.
isAuto
;
forms
.
outdoorTempStart1
=
row
.
outdoorTempStart1
;
forms
.
outdoorTempStart2
=
row
.
outdoorTempStart2
;
forms
.
outdoorTempStart3
=
row
.
outdoorTempStart3
;
forms
.
outdoorTempStart4
=
row
.
outdoorTempStart4
;
forms
.
outdoorTempEnd1
=
row
.
outdoorTempEnd1
;
forms
.
outdoorTempEnd2
=
row
.
outdoorTempEnd2
;
forms
.
outdoorTempEnd3
=
row
.
outdoorTempEnd3
;
forms
.
outdoorTempEnd4
=
row
.
outdoorTempEnd4
;
forms
.
tempGain1
=
row
.
tempGain1
;
forms
.
tempGain2
=
row
.
tempGain2
;
forms
.
tempGain3
=
row
.
tempGain3
;
forms
.
tempGain4
=
row
.
tempGain4
;
forms
.
temperature
=
row
.
temperature
;
forms
.
power
=
row
.
power
;
forms
.
wind
=
row
.
wind
;
forms
.
outdoorStartHour1
=
row
.
outdoorStartHour1
;
forms
.
outdoorStartHour2
=
row
.
outdoorStartHour2
;
forms
.
outdoorStartHour3
=
row
.
outdoorStartHour3
;
forms
.
outdoorStartHour4
=
row
.
outdoorStartHour4
;
forms
.
outdoorStartHour5
=
row
.
outdoorStartHour5
;
forms
.
outdoorStartHour6
=
row
.
outdoorStartHour6
;
forms
.
outdoorStartMin1
=
row
.
outdoorStartMin1
;
forms
.
outdoorStartMin2
=
row
.
outdoorStartMin2
;
forms
.
outdoorStartMin3
=
row
.
outdoorStartMin3
;
forms
.
outdoorStartMin4
=
row
.
outdoorStartMin4
;
forms
.
outdoorStartMin5
=
row
.
outdoorStartMin5
;
forms
.
outdoorStartMin6
=
row
.
outdoorStartMin6
;
forms
.
outdoorEndHour1
=
row
.
outdoorEndHour1
;
forms
.
outdoorEndHour2
=
row
.
outdoorEndHour2
;
forms
.
outdoorEndHour3
=
row
.
outdoorEndHour3
;
forms
.
outdoorEndHour4
=
row
.
outdoorEndHour4
;
forms
.
outdoorEndHour5
=
row
.
outdoorEndHour5
;
forms
.
outdoorEndHour6
=
row
.
outdoorEndHour6
;
forms
.
outdoorEndMin1
=
row
.
outdoorEndMin1
;
forms
.
outdoorEndMin2
=
row
.
outdoorEndMin2
;
forms
.
outdoorEndMin3
=
row
.
outdoorEndMin3
;
forms
.
outdoorEndMin4
=
row
.
outdoorEndMin4
;
forms
.
outdoorEndMin5
=
row
.
outdoorEndMin5
;
forms
.
outdoorEndMin6
=
row
.
outdoorEndMin6
;
forms
.
cooling1
=
row
.
cooling1
;
forms
.
cooling2
=
row
.
cooling2
;
forms
.
cooling3
=
row
.
cooling3
;
forms
.
cooling4
=
row
.
cooling4
;
forms
.
cooling5
=
row
.
cooling5
;
forms
.
cooling6
=
row
.
cooling6
;
}
function
setCellStyle
({
row
,
column
,
rowIndex
,
columnIndex
})
{
let
css_color
=
{};
css_color
[
'padding-left'
]
=
'0px'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment