优化 巡检 清空统计页面

This commit is contained in:
wuxw 2022-11-16 15:21:06 +08:00
parent a6f537c211
commit 80e71b62c2

View File

@ -81,9 +81,9 @@
_term = params.term; _term = params.term;
} }
return { return {
machineName: _term, machineNameLike: _term,
page: 1, page: 1,
row: 10, row: 100,
communityId: vc.getCurrentCommunity().communityId communityId: vc.getCurrentCommunity().communityId
}; };
}, },
@ -117,7 +117,7 @@
for (var i = 0; i < _machines.length; i++) { for (var i = 0; i < _machines.length; i++) {
var _tmpMachine = { var _tmpMachine = {
id: _machines[i].machineId, id: _machines[i].machineId,
text: _machines[i].machineName text: _machines[i].machineName + "("+_machines[i].machineCode +")"
}; };
_tmpMachines.push(_tmpMachine); _tmpMachines.push(_tmpMachine);
} }