btsArray:[
  0:[
    {...},
    {...}
  ],
  1:[
    {...},
    {...}
  ]
]
 let formlists = [];
    for (let i = 0; i < this.btsArray.length; i++) {
      for (let j = 0; j < this.btsArray[i].length; j++) {
        var letcount = this.btsArray[i][j];
        letcount.affiliation = i;
        letcount.affiliationInfo = "签署方" + (i + 1);
        formlists.push(letcount);
      }
    }

 

posted on 2020-10-21 22:13  小菟同学  阅读(400)  评论(0编辑  收藏  举报

……