vue.js

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > javascript类库 > vue.js > Vue数据连续添加

Vue使用antd组件a-form-model实现数据连续添加功能

作者:JackieDYH

这篇文章主要介绍了Vue使用antd组件a-form-model实现数据连续添加功能,本文结合示例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

源码

<a-form-model ref="ruleForm" :model="form" :rules="rules" :label-col="{ span: 5 }" :wrapper-col="{ span: 19 }">
	<a-form-model-item ref="zcfl" label="资产分类" prop="zcfl">
	  <!-- <a-input style="width: 60%" v-model="form.zcfl" /> -->
	  <a-form-model-item
		:prop="'zcfl.' + index + '.value'"
		:rules="{
		  required: true,
		  message: '请输入内容',
		  trigger: 'blur',
		}"
		v-for="(domain, index) in form.zcfl"
		:key="domain.key"
	  >
		<a-input v-model="domain.value" style="width: 40%; margin-right: 8px" />
		<a-icon
		  v-if="form.zcfl.length > 1"
		  class="dynamic-delete-button"
		  type="minus-circle-o"
		  :disabled="form.zcfl.length === 1"
		  @click="removeDomain(domain)"
		/>
	  </a-form-model-item>
	  <a-button type="dashed" style="width: 30%" @click="addDomain"> <a-icon type="plus" /> 添加分类 </a-button>
	</a-form-model-item>
</a-form-model>

 data

form: {
	zcfl: [{ value: undefined, key: 1 }], //资产分类
},
rules: {
	zcfl: [{ required: true, message: '请输入!', trigger: 'blur' }],
},

添加逻辑

// 添加分类
removeDomain(item) {
  let index = this.form.zcfl.indexOf(item)
  if (index !== -1) {
	this.form.zcfl.splice(index, 1)
  }
},
addDomain() {
  this.form.zcfl.push({
	value: '',
	key: Date.now(),
  })
},

到此这篇关于Vue使用antd组件a-form-model-实现数据连续添加的文章就介绍到这了,更多相关Vue数据连续添加内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文