Commit c8ef357c by wusiyi

feat: 优化生产单查询

parent e10551d7
...@@ -88,7 +88,7 @@ const trackcodeInput = async () => { ...@@ -88,7 +88,7 @@ const trackcodeInput = async () => {
const underscoreCount = (TrackingNumber.value.match(/_/g) || []).length const underscoreCount = (TrackingNumber.value.match(/_/g) || []).length
if (underscoreCount > 3) { if (underscoreCount >= 3) {
orderNumber = TrackingNumber.value.split('_')[3] orderNumber = TrackingNumber.value.split('_')[3]
} else { } else {
orderNumber = TrackingNumber.value orderNumber = TrackingNumber.value
......
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