|
@@ -38,6 +38,12 @@ const filterTagListByMerchantId = (merchantId, tagList) => {
|
|
|
const arraySort = (subArray = [], parentArray = []) => {
|
|
|
let cursor = 0;
|
|
|
const newArray = [...parentArray];
|
|
|
+ subArray.forEach((sub) => {
|
|
|
+ const sInP = parentArray.findIndex(data => data.id === sub.id);
|
|
|
+ if (sInP !== -1) {
|
|
|
+ newArray.splice(sInP, 1);
|
|
|
+ }
|
|
|
+ });
|
|
|
while (cursor < subArray.length - 1) {
|
|
|
const prevId = subArray[cursor].id;
|
|
|
const nextId = subArray[cursor + 1].id;
|