当前位置:   article > 正文

elementui的组件:form表单之动态增减表单项_element-ui 动态增减表单项

element-ui 动态增减表单项

记录一下对这个组件的使用。

源代码是这样的:

  1. <el-form :model="dynamicValidateForm" ref="dynamicValidateForm" label-width="100px" class="demo-dynamic">
  2. <el-form-item
  3. prop="email"
  4. label="邮箱"
  5. :rules="[
  6. { required: true, message: '请输入邮箱地址', trigger: 'blur' },
  7. { type: 'email', message: '请输入正确的邮箱地址', trigger: ['blur', 'change'] }
  8. ]"
  9. >
  10. <el-input v-model="dynamicValidateForm.email"></el-input>
  11. </el-form-item>
  12. <el-form-item
  13. v-for="(domain, index) in dynamicValidateForm.domains"
  14. :label="'域名' + index"
  15. :key="domain.key"
  16. :prop="'domains.' + index + '.value'"
  17. :rules="{
  18. required: true, message: '域名不能为空', trigger: 'blur'
  19. }"
  20. >
  21. <el-input v-model="domain.value"></el-input><el-button @click.prevent="removeDomain(domain)">删除</el-button>
  22. </el-form-item>
  23. <el-form-item>
  24. <el-button type="primary" @click="submitForm('dynamicValidateForm')">提交</el-button>
  25. <el-button @click="addDomain">新增域名</el-button>
  26. <el-button @click="resetForm('dynamicValidateForm')">重置</el-button>
  27. </el-form-item>
  28. </el-form>
  29. <script>
  30. export default {
  31. data() {
  32. return {
  33. dynamicValidateForm: {
  34. domains: [{
  35. value: ''
  36. }],
  37. email: ''
  38. }
  39. };
  40. },
  41. methods: {
  42. submitForm(formName) {
  43. this.$refs[formName].validate((valid) => {
  44. if (valid) {
  45. alert('submit!');
  46. } else {
  47. console.log('error submit!!');
  48. return false;
  49. }
  50. });
  51. },
  52. resetForm(formName) {
  53. this.$refs[formName].resetFields();
  54. },
  55. removeDomain(item) {
  56. var index = this.dynamicValidateForm.domains.indexOf(item)
  57. if (index !== -1) {
  58. this.dynamicValidateForm.domains.splice(index, 1)
  59. }
  60. },
  61. addDomain() {
  62. this.dynamicValidateForm.domains.push({
  63. value: '',
  64. key: Date.now()
  65. });
  66. }
  67. }
  68. }
  69. </script>

但是我的需求是:自动增减的表单项是下拉选,从所有人中选择审批人,自动增减的就是审批人1,审批人2...

面对源代码的增减项是一个input输入框,我是这样改的:

  1. <el-form-item
  2. v-for="(user, index) in model.userList"
  3. :label="'审批人' + (index + 1)"
  4. :rules="{required: true, message: '审批人不能为空', trigger: 'blur'}">
  5. <template slot-scope="scope">
  6. <el-select
  7. v-model="model.userList[index]"
  8. value-key="userId" placeholder="请选择">
  9. <el-option
  10. v-for="item in teacherList"
  11. :key="item.userId"
  12. :label="item.userName"
  13. :value="item">
  14. </el-option>
  15. </el-select>
  16. <el-button @click.prevent="removeDomain(user)">删除</el-button>
  17. </template>
  18. </el-form-item>
  19. <el-form-item>
  20. <el-button @click="addDomain">添加审批人</el-button>
  21. <el-button type="primary" @click="goBack">返回</el-button>
  22. <el-button type="primary" @click="saveModel">保存</el-button>
  23. </el-form-item>
  24. </el-form>

还有一点值得记录得就是下拉选,如果想保存的是整个对象,就得用上value-key。

下拉选的回显,之前的属性和下拉选List里的对象的属性是一样的才能显示出来,不然是不能回显的。

好了,还有好多工作待完成,这篇写的着实潦草了些,不过因为昨天我用到这个功能的时候以为我早就记录过了,结果并没有,所以非常有必要先记录下来。以后有时间在完善吧。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/91379
推荐阅读