|
@@ -326,8 +326,9 @@ export function formatOrder (arr, key = 'orderNumber') {
|
|
|
n2.push(p)
|
|
|
}
|
|
|
}
|
|
|
+ const newN1 = n1.sort((a, b) => a[key] - b[key])
|
|
|
const newN2 = n2.sort((a, b) => a.index - b.index)
|
|
|
- return [...n1, ...newN2]
|
|
|
+ return [...newN1, ...newN2]
|
|
|
}
|
|
|
|
|
|
export const Format = (fmt, date) => {
|