Commit ebc294ee authored by 沈翠玲's avatar 沈翠玲

调解中心回款金额过滤name为空的数据

parent 02a785c6
...@@ -269,7 +269,7 @@ ...@@ -269,7 +269,7 @@
load.value = true; load.value = true;
getReturn(param).then((res) => { getReturn(param).then((res) => {
if (res.result) { if (res.result) {
const arr = res.result; const arr = res.result.filter(v => v.name);
arr.sort((a, b) => b.totalReturn - a.totalReturn); arr.sort((a, b) => b.totalReturn - a.totalReturn);
console.log('arr', arr); console.log('arr', arr);
salvProName.value = arr.map((v) => v.name); salvProName.value = arr.map((v) => v.name);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment