|
@@ -487,9 +487,13 @@ const showList = computed(() => {
|
|
|
// }
|
|
|
|
|
|
array.forEach((item) => {
|
|
|
- item.baseOperationList = item.baseOperationList.filter((op) => {
|
|
|
- return op.operationName.includes(list1SearchStr.value);
|
|
|
- });
|
|
|
+ item.baseOperationList = item.baseOperationList
|
|
|
+ .filter((op) => {
|
|
|
+ return op.operationName.includes(list1SearchStr.value);
|
|
|
+ })
|
|
|
+ .sort((a, b) => {
|
|
|
+ return a.operationCode.localeCompare(b.operationCode);
|
|
|
+ });
|
|
|
});
|
|
|
return array;
|
|
|
});
|