feat:订单搜索增加电池编号

This commit is contained in:
yangqingyuan
2024-08-08 15:23:56 +08:00
parent c92f09d621
commit ee6dcc3557

View File

@@ -121,6 +121,10 @@
where.merchantCode = searchText.value;
where.orderNo = undefined;
}
if(type.value == 'equipmentCode'){
where.keywords = searchText.value;//直接通过模糊查询来查询电池编号
where.orderNo = undefined;
}
if (type.value == 'keywords') {
where.keywords = searchText.value;
}