iview table中生成多个Input双向绑定数据

5 篇文章 0 订阅
//iview table 的columns的部分代码
title: '面积(公顷)',
key: "protectArea",
render: (h, params) => {
  return h("Input", {
    props: {
      type: 'text',
      value: params.row.protectArea
    },
    on: {
      input: (event) => {
        if(params.index==0){
          this.patientData.woodlandProtectionOneArea=event
        }
        else if(params.index==1){
          this.patientData.woodlandProtectionTwoArea=event
        }
        else if(params.index==2){
          this.patientData.woodlandProtectionThreeArea=event
        }
        else{
          this.patientData.woodlandProtectionFourArea=event
        }
      }
    }
  })
}

//iview table 的date

forestTypeData: [
  {
    protectGrade: "Ⅰ",
    countryGrade: "一",
    naturalGrade: '国家级',
    protectArea: "",
    countryArea: "",
    naturalArea: ""
  },]

这里面是通过遍历出多个Input,分别给每个字段赋值,通过判断params.index来查询对应的Input

如果要编辑的话,首先要将input的内容给自动赋值进去,然后根据columns中对Input的value赋的值(这里是protectArea )来进行赋值编辑,进行编辑和新增一样的操作,下面代码是将从后台获取的值赋值到对应的input中

this.forestTypeData[0].protectArea = this.patientData.woodlandProtectionOneArea
this.forestTypeData[1].protectArea = this.patientData.woodlandProtectionTwoArea
this.forestTypeData[2].protectArea = this.patientData.woodlandProtectionThreeArea具体可以通过npm下载  https://www.npmjs.com/package/vue-multi-input

 

 

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值