首页 > 其他 > 详细

vue +antd 动态表单

时间:2021-05-07 19:05:38      阅读:26      评论:0      收藏:0      [点我收藏+]

先说下效果:

技术分享图片

 

 

 

代码

<template>
  
  <div>
    <a-card title="form-data" :bordered="true" style="width: 40%">

      <div>
        <a-form ref="form" layout="inline" :model="form" >
          <div v-for="(item, index) in form.dynamicItem" :key="index">
                <a-form-item
                label="key"
                :prop="‘dynamicItem.‘ + index + ‘.key‘"
                :label-col="formItemLayout.labelCol"
                :wrapper-col="formItemLayout.wrapperCol"
              >
                <a-input v-model="item.name"></a-input>
              </a-form-item>
           
          
                <a-form-item
                label="value"
                :prop="‘dynamicItem.‘ + index + ‘.value‘"
                :label-col="formItemLayout.labelCol"
                :wrapper-col="formItemLayout.wrapperCol"
              >
                <a-input v-model="item.value"></a-input>
              </a-form-item>
              <a-form-item>
                <a-icon v-if="index !== 0" @click="deleteItem(item, index)"  class="dynamic-delete-button"
                  type="minus-circle-o"></a-icon>
              </a-form-item>
          </div>
        </a-form>
  
        <div style="display: flex; justify-content: center;">
          <a-button type="dashed"  @click="addItem" >
            <a-icon type="plus" /> Add field
          </a-button>
        </div>
      </div>

    </a-card>


  </div>




</template>


<script>

  export default{


      computed: {
        
          formItemLayout() {
            const { formLayout } = this;
            return{
              
                  labelCol: { span: 5},
                  wrapperCol: { span: 19 }
                } 
          }
             },
    data () {
      return {
        form: {
          // index:0,
        dynamicItem: [
          {
            key: "",
            value: ""
          }
        ]
      },

      }
    },
    //methods 

    methods: {
      
      addItem() {
      this.form.dynamicItem.push({
        key: "",
        value: ""
      });
    },
    sure(form) {
      console.log(this.form.dynamicItem.length, "length");
      this.$refs[form].validate(valid => {
        if (valid) {
          alert("submit!");
        } else {
          console.log("error submit!!");
          return false;
        }
      });
    },
    deleteItem(item, index) {
      this.form.dynamicItem.splice(index, 1);
      console.log(this.form.dynamicItem, "删除");
    },

    }

  }
  
</script>

  

vue +antd 动态表单

原文:https://www.cnblogs.com/SunshineKimi/p/14741527.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!