1 let protocalNum = [];
2 //数组循环
3 sampleList.cbpiList.forEach((item,index) => {                        
4    protocalNum.push(item.STR_BALANCE_CODE);
5 });
6 /* 多条勾选打印结算单会出现重复的结算单号 去重处理 */
7 let getProtocalNum = new Set(protocalNum);
8 let getProtocalNumArr = Array.from(getProtocalNum);

 

相关文章:

  • 2022-03-01
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-22
  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
相关资源
相似解决方案