ludc
2023-11-24 b267ac7499877043675bbd25d1478b1731c12ec9
代码提交
已修改3个文件
25 ■■■■■ 文件已修改
Source/UBCS-WEB/src/api/logs.js 22 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/views/monitor/log/localLog.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/service/impl/MdmIOServiceImpl.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/api/logs.js
@@ -62,3 +62,25 @@
  })
}
export const getLazyList = (data) => {
  return request({
    url: '/api/ubcs-log/localLog/lazy-list',
    method: 'post',
    data: data,
  })
}
export const downLoadLog = (data) => {
  return request({
    url: '/api/ubcs-log/localLog/downLoadLog',
    method: 'post',
    data:data,
  })
}
export const deleteLocalLog = (data) => {
  return request({
    url: '/api/ubcs-log/localLog/deleteLogFile',
    method: 'delete',
    data: data
  })
}
Source/UBCS-WEB/src/views/monitor/log/localLog.vue
@@ -205,4 +205,3 @@
  
  <style>
  </style>
Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/service/impl/MdmIOServiceImpl.java
@@ -885,7 +885,7 @@
            String idFieldName = attrVOS.stream().filter(s -> VciQueryWrapperForDO.ID_FIELD.equalsIgnoreCase(s.getId())).findFirst().orElseGet(() -> new CodeClassifyTemplateAttrVO()).getName();
            getFieldIndexMap(titleRowData, attrNameIdMap, fieldIndexMap);
            //先不用管属性是否都存在,先转换一下数据
            List<ClientBusinessObject> cboList = new CopyOnWriteArrayList<>();
            List<ClientBusinessObject> cboList = new ArrayList<>();
            String fullPath = getFullPath(classifyFullInfo);
            //我们需要获取到所有的下级分类的oid的路径,因为后面需要
            Map<String/**主键**/, String/**路径**/> childOidPathMap = getChildClassifyPathMap(classifyFullInfo, fullPath);