Authored by 王涛

【性能曲线】测试名称重复 BUG#273

... ... @@ -1980,9 +1980,13 @@ layui.define(['laytpl', 'admin', 'form', 'table', 'echarts', 'sessions', 'xmSele
ident:ident,
trend:trend,
unit:unit,
name:kpiName + " " + name
// Start Wang 2022/2/8 14:28 BUG#273 【性能曲线】测试名称重复
name:kpiName,
};
common.openLineChart(kpiName + " " + name, params);
// common.openLineChart(kpiName + " " + name, params);
common.openLineChart(kpiName, params);
// End Wang 2022/2/8 14:29
});
//更多点击事件
$("#" + tableId + "More").unbind("click").on("click", function () {
... ... @@ -3845,7 +3849,10 @@ layui.define(['laytpl', 'admin', 'form', 'table', 'echarts', 'sessions', 'xmSele
ident:ident,
trend:trend,
unit:unit,
name:kpiName + " " + name,
// Start Wang 2022/2/8 14:28 BUG#273 【性能曲线】测试名称重复
// name:kpiName + " " + name,
name:kpiName,
// End Wang 2022/2/8 14:29
subFlag: subFlag,
resType: resType
};
... ...
... ... @@ -167,9 +167,9 @@ export default {
let params={
timeScope:timeScope.value,
// keys:keysVal
keys:keysVal
// timeScope:'2022-02-07 10:00:00,2022-02-08 10:00:00',
keys:'C620C1D453B79095A64314C8215335D5:KPI7054BC34:cpu'
// keys:'C620C1D453B79095A64314C8215335D5:KPI7054BC34:cpu'
}
proxy.$http.get(`/api-web/cm-date-range/loadPerformanceCustomFromInfluxdb`, params, function (res) {
emit('callbackinflux',res)
... ...