Commit ce5f888e authored by jingnan's avatar jingnan 👀

库位搜索去除前后空格

parent 6ce5f21e
...@@ -86,7 +86,7 @@ export default { ...@@ -86,7 +86,7 @@ export default {
'fieldName': 'extCenterId', 'operator': 'EQ', 'value': this.storageZoneId 'fieldName': 'extCenterId', 'operator': 'EQ', 'value': this.storageZoneId
}, },
{ {
'fieldName': 'extcode', 'operator': 'LIKE', 'value': query 'fieldName': 'extcode', 'operator': 'LIKE', 'value': query.trim()
} }
], ],
'operator': 'AND' 'operator': 'AND'
......
...@@ -95,7 +95,7 @@ export default { ...@@ -95,7 +95,7 @@ export default {
'fieldName': 'extCenterId', 'operator': 'EQ', 'value': this.storageZoneId 'fieldName': 'extCenterId', 'operator': 'EQ', 'value': this.storageZoneId
}, },
{ {
'fieldName': 'extcode', 'operator': 'LIKE', 'value': query 'fieldName': 'extcode', 'operator': 'LIKE', 'value': query.trim()
} }
], ],
'operator': 'AND' 'operator': 'AND'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment