CN-1063: 人工测试--实体详情流量折线图和底下3个tab
This commit is contained in:
@@ -241,7 +241,7 @@ export const api = {
|
||||
openPort: '',
|
||||
basicInfo: BASE_CONFIG.apiVersion + '/entity/detail/basic',
|
||||
tags: BASE_CONFIG.apiVersion + '/entity/detail/kb/intelligence/tag',
|
||||
informationAggregation: BASE_CONFIG.apiVersion + '/entity/kb/intelligence/list'
|
||||
informationAggregation: BASE_CONFIG.apiVersion + '/entity/detail/kb/intelligence/list'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1271,3 +1271,15 @@ export function copySelectionText () {
|
||||
}
|
||||
return copySuccess
|
||||
}
|
||||
|
||||
/**
|
||||
* 字符串首字母转大写
|
||||
* @param str
|
||||
* @returns {*}
|
||||
*/
|
||||
export function toUpperCaseByString (str) {
|
||||
if (str) {
|
||||
str = str.slice(0, 1).toUpperCase() + str.slice(1).toLowerCase()
|
||||
}
|
||||
return str
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user