uniapp新增一条数据增加一个折叠栏

//折叠栏

			
        
          
            
              年份
              {{item.fatCalfNum}}
            
          
          
            
              货币资金(万元)
              {{item.fatCalfNum1}}
            
          
			
		

//新增按钮

      
    

//弹窗

      
    
addInventory(){
            this.$refs.inventoryPopup.open()
      },
      addInventoryHandle(data){
        this.$refs.inventoryPopup.close()
        this.dataForm.beefCattleNums.push(Object.assign({}, data))  
      },
      closeInventoryHandle(){
        this.$refs.inventoryPopup.close()
      },

子组件:


          年份
          
            
          
        
        
          货币资金(万元)
          
            
          
        

        取消
        确定
      

async submitHandle() {
      this.$emit('addInventoryHandle',this.dataForm)
    },
    cancelHandle(){
      this.$emit('closeInventoryHandle')
    }

你可能感兴趣的:(uni-app,前端,数据库)