|
|
@ -129,10 +129,22 @@ |
|
|
|
let text = e ==true? "打开" : "关闭"; |
|
|
|
this.$modal.confirm('确认要"' + text + '"门锁').then(() => { |
|
|
|
return request({ |
|
|
|
url: `/business/device/functions/${this.dialogData.iotDeviceId}/SL`, |
|
|
|
url: `/business/device/batchFunctions`, |
|
|
|
method: "post", |
|
|
|
data: { |
|
|
|
switch:e?1:0 |
|
|
|
devices: [{ |
|
|
|
iotDeviceId: this.dialogData.iotDeviceId, |
|
|
|
id: this.dialogData.id, |
|
|
|
deviceType: 17 |
|
|
|
}], |
|
|
|
functions: [ |
|
|
|
{ |
|
|
|
functionId: "SL", |
|
|
|
params: { |
|
|
|
switch:e?1:0 |
|
|
|
} |
|
|
|
} |
|
|
|
], |
|
|
|
}, |
|
|
|
}) |
|
|
|
.then((result)=>{ |
|
|
@ -169,9 +181,21 @@ |
|
|
|
// return this.lightningReset =e |
|
|
|
// } |
|
|
|
return request({ |
|
|
|
url: `/business/device/functions/${this.dialogData.iotDeviceId}/TL`, |
|
|
|
url: `/business/device/batchFunctions`, |
|
|
|
method: "post", |
|
|
|
data: {}, |
|
|
|
data: { |
|
|
|
devices: [{ |
|
|
|
iotDeviceId: this.dialogData.iotDeviceId, |
|
|
|
id: this.dialogData.id, |
|
|
|
deviceType: 17 |
|
|
|
}], |
|
|
|
functions: [ |
|
|
|
{ |
|
|
|
functionId: "TL", |
|
|
|
params: {} |
|
|
|
} |
|
|
|
], |
|
|
|
}, |
|
|
|
}) |
|
|
|
.then((result)=>{ |
|
|
|
if (result.code != 200) { |
|
|
@ -202,9 +226,21 @@ |
|
|
|
return this.recloserReset =e |
|
|
|
} |
|
|
|
return request({ |
|
|
|
url: `/business/device/functions/${this.dialogData.iotDeviceId}/SR`, |
|
|
|
url: `/business/device/batchFunctions`, |
|
|
|
method: "post", |
|
|
|
data: {}, |
|
|
|
data: { |
|
|
|
devices: [{ |
|
|
|
iotDeviceId: this.dialogData.iotDeviceId, |
|
|
|
id: this.dialogData.id, |
|
|
|
deviceType: 17 |
|
|
|
}], |
|
|
|
functions: [ |
|
|
|
{ |
|
|
|
functionId: "SR", |
|
|
|
params: {} |
|
|
|
} |
|
|
|
], |
|
|
|
}, |
|
|
|
}) |
|
|
|
.then((result)=>{ |
|
|
|
if (result.code != 200) { |
|
|
@ -235,9 +271,21 @@ |
|
|
|
return this.reclosing =e |
|
|
|
} |
|
|
|
return request({ |
|
|
|
url: `/business/device/functions/${this.dialogData.iotDeviceId}/RS`, |
|
|
|
url: `/business/device/batchFunctions`, |
|
|
|
method: "post", |
|
|
|
data: {}, |
|
|
|
data: { |
|
|
|
devices: [{ |
|
|
|
iotDeviceId: this.dialogData.iotDeviceId, |
|
|
|
id: this.dialogData.id, |
|
|
|
deviceType: 17 |
|
|
|
}], |
|
|
|
functions: [ |
|
|
|
{ |
|
|
|
functionId: "RS", |
|
|
|
params: {} |
|
|
|
} |
|
|
|
], |
|
|
|
}, |
|
|
|
}) |
|
|
|
.then((result)=>{ |
|
|
|
if (result.code != 200) { |
|
|
|