Browse Source

update:打印证书的顺序

lrf402788946 4 years ago
parent
commit
4b4d4e4277
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/service/cerconfirm.js

+ 1 - 1
app/service/cerconfirm.js

@@ -73,7 +73,7 @@ class CerconfirmService extends CrudService {
       groupScoreList,
       list
     );
-    list = _.orderBy(list, 'number');
+    list = _.orderBy(list, [ 'is_fine' ], [ 'desc' ]);
     return list;
   }
 }