...
|
...
|
@@ -208,7 +208,7 @@ export default { |
|
|
busId: busTypeArr.value.join(','),
|
|
|
configId: config.value,
|
|
|
page: 1,
|
|
|
limit: 10
|
|
|
limit: 10,
|
|
|
})
|
|
|
|
|
|
let loadFirstList = (reload) => {
|
...
|
...
|
@@ -229,6 +229,15 @@ export default { |
|
|
// if (!reload && tabSecondList.value.length > 0) {
|
|
|
// return false;
|
|
|
// }
|
|
|
//lsq 未添加的列表中增加已添加列表的参数,未添加中不显示已添加的数据 2022-08-30
|
|
|
let addedId=[];
|
|
|
if(tabFirstList.value && tabFirstList.value.length>0){
|
|
|
tabFirstList.value.map(item=>{
|
|
|
addedId.push({resId:item.resId,kpiId:item.kpiId,flag:item.flag});
|
|
|
})
|
|
|
}
|
|
|
getParams.value.addedId=JSON.stringify(addedId) //lsq 已添加的id集
|
|
|
|
|
|
proxy.$http.get(`/api-web/ContrastAnalysis/notAdded`, getParams.value, function (res) {
|
|
|
if (res && res.success) {
|
|
|
proxy.count = res.count;
|
...
|
...
|
|