Browse Source

修复体系运行记录盒排序报错

tianxinyu 5 days ago
parent
commit
cd11b1f907
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/views/platform/bpmn/bpmInstHis/list.vue

+ 3 - 0
src/views/platform/bpmn/bpmInstHis/list.vue

@@ -849,6 +849,9 @@ export default {
     },
     // 处理排序
     handleSortChange(sort) {
+      if(sort && sort.sortBy && sort.sortBy == 'COMPILE_TIME_'){
+        sort.sortBy = 'COMPILE_TIME'
+      }
       ActionUtils.setSorts(this.sorts, sort)
       this.loadData()
     },