|
@ -56,11 +56,52 @@ export default { |
|
|
let devs = []; |
|
|
let devs = []; |
|
|
// Promise.all([this.getAc('A1'), this.getAc('A2'), this.getAc('A3'), this.getAc('A4'), this.getAc('A5'), this.getAc('A6')]).then(res => { |
|
|
// Promise.all([this.getAc('A1'), this.getAc('A2'), this.getAc('A3'), this.getAc('A4'), this.getAc('A5'), this.getAc('A6')]).then(res => { |
|
|
|
|
|
|
|
|
const res = await this.getAc(); |
|
|
await request({ |
|
|
|
|
|
url: `/business/device/batchFunctions`, |
|
|
|
|
|
method: "post", |
|
|
|
|
|
data: { |
|
|
|
|
|
devices: [{ |
|
|
|
|
|
iotDeviceId: this.dialogData.iotDeviceId, |
|
|
|
|
|
id: this.dialogData.id, |
|
|
|
|
|
deviceType: 15 |
|
|
|
|
|
}], |
|
|
|
|
|
functions: [ |
|
|
|
|
|
{ |
|
|
|
|
|
functionId: "A1", |
|
|
|
|
|
params: {} |
|
|
|
|
|
}, { |
|
|
|
|
|
functionId: "A2", |
|
|
|
|
|
params: {} |
|
|
|
|
|
}, { |
|
|
|
|
|
functionId: "A3", |
|
|
|
|
|
params: {} |
|
|
|
|
|
}, { |
|
|
|
|
|
functionId: "A4", |
|
|
|
|
|
params: {} |
|
|
|
|
|
}, { |
|
|
|
|
|
functionId: "A5", |
|
|
|
|
|
params: {} |
|
|
|
|
|
}, { |
|
|
|
|
|
functionId: "A6", |
|
|
|
|
|
params: {} |
|
|
|
|
|
} |
|
|
|
|
|
], |
|
|
|
|
|
// parameter: {} |
|
|
|
|
|
} |
|
|
|
|
|
}).then(res => { |
|
|
console.log('res', res) |
|
|
console.log('res', res) |
|
|
if (res.code == 500) { |
|
|
if (res.msg == 500) { |
|
|
await this.getAc(); |
|
|
this.getAc(); |
|
|
} |
|
|
} |
|
|
|
|
|
}) |
|
|
|
|
|
.catch((err) => { |
|
|
|
|
|
console.log('err', err) |
|
|
|
|
|
this.getAc(); |
|
|
|
|
|
}) |
|
|
|
|
|
// console.log('res', res) |
|
|
|
|
|
// if (res.code == 500) { |
|
|
|
|
|
// await this.getAc(); |
|
|
|
|
|
// } |
|
|
request({ |
|
|
request({ |
|
|
url: `/business/device/properties/latest/${this.dialogData.iotDeviceId}`, |
|
|
url: `/business/device/properties/latest/${this.dialogData.iotDeviceId}`, |
|
|
method: "get", |
|
|
method: "get", |
|
|