美文网首页
两个找相同的

两个找相同的

作者: 糖醋里脊120625 | 来源:发表于2023-08-06 15:58 被阅读0次
    goodsGroup(infoID).then((res) => {
    
          function FindItem(itemID,moreList){
            let findData = moreList.find(x => x.piId == itemID.piId);
            return findData
          }
    
    
    
          let newdata= res.data.map((item) => {
            if(item.products){
              var childFloor = item.products.map((each)=>{
                return {
                  ...each,         
                  ProductDes:each.piSpec+'、'+each.piNetContent+each.piNetContentUnit+'/'+each.piSpec,
    
                  showAddOrSub:FindItem(each,that.data.SeledGoods)==undefined?false:true,
                  SelNum:FindItem(each,that.data.SeledGoods)==undefined?0:FindItem(each,this.data.SeledGoods).SelNum,
                  
                }
              })
            }else{
              var childFloor=[]
            }
            
            return {
              ...item,
              text:item.ptItemName,
              products: childFloor,
            };
          });
          this.setData({
            goodsList:newdata
          })
          this.TotalAllSelecteFun()
    
        })
    

    相关文章

      网友评论

          本文标题:两个找相同的

          本文链接:https://www.haomeiwen.com/subject/hshwpdtx.html