Authored by XuHaoJie

杭州-对比分析-编辑时优化已添加和未添加列表

... ... @@ -199,8 +199,8 @@ export default {
kpiId: kpiTypeArr.value.join(','),
busId: busTypeArr.value.join(','),
configId: config.value,
page:2,
limit:10
page: 1,
limit: 50
}
}
... ... @@ -210,8 +210,8 @@ export default {
// }
proxy.$http.get(`/api-web/ContrastAnalysis/added`, getParams(), function (res) {
if (res && res.data) {
proxy.countFirst=res.count;
if (res && res.success) {
proxy.countFirst = res.count;
tabFirstList.value = res.data;
}
});
... ... @@ -222,8 +222,8 @@ export default {
// return false;
// }
proxy.$http.get(`/api-web/ContrastAnalysis/notAdded`, getParams(), function (res) {
if (res && res.data) {
proxy.count=res.count;
if (res && res.success) {
proxy.count = res.count;
tabSecondList.value = res.data;
}
});
... ...