基于el-table實現(xiàn)行內(nèi)增刪改功能
更新時間:2024年04月01日 10:32:55 作者:@小匠
這篇文章主要介紹了基于el-table實現(xiàn)行內(nèi)增刪改功能,用過通過操作按鈕點擊刪除或者編輯功能即可實現(xiàn)相應(yīng)的效果,下面小編給大家分享實例代碼感興趣的朋友跟隨小編一起看看吧
實現(xiàn)效果:
核心代碼:
<el-table :data="items" style="width: 100%;margin-top: 16px" border :key="randomKey"> <el-table-column label="計劃名稱" property="name"> <template slot-scope="{row}"> <template v-if="row.edit"> <el-input v-model="row.name"></el-input> </template> <span v-else>{{ row.name }}</span> </template> </el-table-column> <el-table-column label="計劃完成時間" property="executionDate" width="175"> <template slot-scope="scope"> <el-date-picker v-if="scope.row.edit" style="width: 153px;" type="date" v-model="scope.row.timeEnd"> </el-date-picker> <span v-else>{{ parseTime(scope.row.timeEnd) }}</span> </template> </el-table-column> <el-table-column label="協(xié)同人" property="leaderList"> <template slot-scope="scope"> <template v-if="scope.row.edit"> <el-select v-model="scope.row.leaderList" clearable filterable multiple> <el-option v-for="item in userList" :key="item.userId" :label="item.nickname" :value="item.userId"> </el-option> </el-select> </template> <span v-else>{{ scope.row.leaderName }}</span> </template> </el-table-column> <el-table-column label="執(zhí)行人" width="80"> <template> <span>{{ $store.getters.name }}</span> </template> </el-table-column> <el-table-column align="center" label="操作" width="100"> <template slot-scope="{row,column,$index}"> <el-button v-if="row.edit" type="success" icon="el-icon-check" circle size="small" @click="confirmEdit(row)" > </el-button> <el-button v-if="row.edit" icon="el-icon-close" circle size="small" @click="cancelEdit(row)" > </el-button> <el-button type="primary" icon="el-icon-edit" circle v-if="!row.edit" size="small" @click="row.edit=!row.edit" > </el-button> <el-button type="danger" icon="el-icon-delete" circle size="small" @click="handleDelete($index)" v-if="!row.edit" > </el-button> </template> </el-table-column> </el-table> </div> <div style="display: flex;margin-top: 28px;justify-content: center;"> <el-button @click="addSon" size="small" icon="el-icon-plus">添加子計劃</el-button> </div>
Method:
cancelEdit(row) { row.name = row.oldName row.leaderList = row.oldLeaderList row.timeEnd = row.oldTimeEnd row.leaderName = row.oldLeaderName row.edit = false this.$message({ message: '已恢復(fù)原值', type: 'warning' }) }, confirmEdit(row) { row.edit = false row.oldName = row.name row.oldLeaderList = row.leaderList row.oldTimeEnd = row.timeEnd let arr = [] row.leaderList.forEach(i => { let userName = this.userList.find(({userId}) => userId === i).nickname arr.push(userName) }) row.leaderName = arr.join() row.oldLeaderName = row.leaderName this.$message({ message: '修改成功', type: 'success' }) }, handleDelete(index) { this.items.splice(index, 1) }, addSon() { this.items.push({ name: null, timeEnd: null, leaderList: [], leaderName: null, edit: true }) },
到此這篇關(guān)于基于el-table實現(xiàn)行內(nèi)增刪改的文章就介紹到這了,更多相關(guān)el-table行內(nèi)增刪改內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
詳解Vue webapp項目通過HBulider打包原生APP(vue+webpack+HBulider)
這篇文章主要介紹了詳解Vue webapp項目通過HBulider打包原生APP(vue+webpack+HBulider),小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2019-02-02淺談vue單一組件下動態(tài)修改數(shù)據(jù)時的全部重渲染
下面小編就為大家分享一篇淺談vue單一組件下動態(tài)修改數(shù)據(jù)時的全部重渲染,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-03-03