{ ...item, ...tabLst[index] }得到的数据没有把后面的添加进去
把里面的内容修改成这样Object.assign(item, tabLst[index])
{ ...item, tabLst[index] }