您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“vue+element怎么創建動態form表單”,內容詳細,步驟清晰,細節處理妥當,希望這篇“vue+element怎么創建動態form表單”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
<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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。