您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“vue+element如何創建動態form表單”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“vue+element如何創建動態form表單”這篇文章吧。
動態創建form表單,網上有插件 (form-create)
不過我不知道它怎么用,沒有使用成功,如果你使用成功了,歡迎下方留言.
最后我使用了笨方法,針對各個表單寫好通用的組件,然后根據type用v-if來渲染對應的表單,數據,事件什么的都可以動態的傳進去,比較好用
<el-form size="mini" class="lj-form lj-form-s1"> <div v-for="(item,i) in table.customerList" :key="i"> <!-- 0單行文本 --> <el-form-item :label="item.field_title + ': '" v-if="item.field_type == '0' && item.is_show == '1'" > <el-input v-model="item.value" :placeholder="item.placeholder"></el-input> </el-form-item> <!-- 3下拉菜單 --> <el-form-item :label="item.field_title + ': '" v-if="item.field_type == '3' && item.is_show == '1'" > <el-select v-model="item.value" :placeholder="item.placeholder"> <span v-for="(item1,i) in item.field_value" :key="i"> <el-option :label="item1" :value="item1"></el-option> </span> </el-select> </el-form-item> </div> </el-form>
動態生成表格的行和列,主要是要求后端返回的數據格式,根據數據來動態渲染
注意點:這里兩個數組 : 表格字段數據: titleData: [], 表格詳細數據: tables: [], 數據通過字段來查找/渲染成表格的
<template> <div class="boxShadow"> <div > <el-table :data="tables" ref="multipleTable" tooltip-effect="dark" @selection-change='selectArInfo'> <el-table-column type="selection" width="45px"></el-table-column> <el-table-column label="序號" width="62px" type="index"> </el-table-column> <template v-for='(col) in titleData'> <el-table-column sortable :show-overflow-tooltip="true" :prop="col.dataItem" :label="col.dataName" :key="col.dataItem" width="124px"> </el-table-column> </template> <el-table-column label="操作" width="80" align="center"> <template slot-scope="scope"> <el-button size="mini" class="del-com" @click="delTabColOne()" ><i class="iconfont icon-shanchu"></i></el-button> </template> </el-table-column> </el-table> </div> </div> </template> data () { return { tables: [{ xiaoxue: '福蘭', chuzhong: '加芳', gaozhong: '蒲廟', daxue: '西安', yanjiusheng: '西安', shangban: '北京' }, { xiaoxue: '南坊', chuzhong: '禮泉', gaozhong: '禮泉', daxue: '西安', yanjiusheng: '西安', shangban: '南坊' }, ], titleData: [{ dataItem: 'xiaoxue', dataName: '小學' }, { dataItem: 'chuzhong', dataName: '初中' }, { dataItem: 'gaozhong', dataName: '高中' }, { dataItem: 'daxue', dataName: '大學' }, { dataItem: 'yanjiusheng', dataName: '研究生' }, { dataItem: 'shangban', dataName: '上班' }] }
以上是“vue+element如何創建動態form表單”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。