// socket获取到新工单信息
getNewOrder(response) {
// 提醒开启时填充列表
if (this.remindStatus === 1) {
let obj = JSON.parse(response.data);
let i = 0;
while (i < this.list.length && this.list[i].incidentState === 3) {
i++;
}
this.list.splice(i, 0, obj);
// 设备震动250ms
plus.device.vibrate(250);
// 设备发出2次蜂鸣声
plus.device.beep(2);
}
}
cuteshell
- 发布:2022-03-11 14:33
- 更新:2022-03-11 14:33
- 阅读:820
0 个回复