|
@@ -670,7 +670,8 @@ export default {
|
|
|
|
|
|
// 个贷获取最新备注
|
|
|
queryPersonalComments(businessIds){
|
|
|
- queryLastComments(businessIds).then(res=>{
|
|
|
+ if (businessIds && businessIds.length>0){
|
|
|
+ queryLastComments(businessIds).then(res=>{
|
|
|
if (res.code === 200){
|
|
|
for (let i in this.personalListData){
|
|
|
for (let j in res.data){
|
|
@@ -681,6 +682,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
})
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
};
|