赞
踩
有时候我们需要写一些表单,但是项目里如果表单太多,写起来真的挺烦的,这个时候我们就不得不去想一些办法实现一劳永逸了,循环表单应运而生,只需要将这些表单结构存储在数据库中,使用v-for循环将表单结构循环出来就可以了
input、select,radio,checkbox,time,date,date-picker,textarea,rate
等类型<template>
<el-form ref="form" :model="formData" label-width="80px">
<el-form-item
v-for="item in formList"
:key="item.prop"
:label="item.label"
:prop="item.prop"
>
<div class="form-item-container">
<template v-if="item.prefix">
<span class="prefix">{
{ item.prefix }}</span> --前置单位
</template>
<template v-if="item.type === 'input'">
<el-input
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。