1、Element UI中表格數據的修改
- 在
Element UI
中,實現修改操做,須要彈出一個對話框,可使用Dialog
對話框組件。在data
中,咱們須要定義一個數據editDialogVisible
,它的做用是控制添加用戶對話框的顯示與隱藏,默認爲隱藏,代碼以下:
editDialogVisible: false
複製代碼
- 在頁面當中,使用
Dialog
對話框組件,title
爲對話框的標題,visible
爲是否顯示 Dialog
,支持 .sync
修飾符,是boolean
類型的值,默認值爲false
,咱們能夠給它綁定屬性editDialogVisible
控制顯示與隱藏。width
爲Dialog
的寬度,能夠設置爲50%
,也就是佔據屏幕的百分之五十的位置,代碼以下:
<el-dialog title="修改用戶" :visible.sync="editDialogVisible" width="50%">
<span>這是一段信息</span>
<span slot="footer" class="dialog-footer">
<el-button @click="editDialogVisible = false">取 消</el-button>
<el-button type="primary" @click="editDialogVisible = false">確 定</el-button>
</span>
</el-dialog>
複製代碼
- 當點擊在每一行的修改按鈕上,纔可以彈出對話框,經過點擊事件調用
showEditDialog()
方法,代碼以下:
<el-button type="primary" icon="el-icon-edit" size="mini" @click="showEditDialog()"></el-button>
複製代碼
- 在這個方法
showEditDialog()
中,將data
中的editDialogVisible
的值設置爲true
,對話框就顯示了,代碼以下:
showEditDialog() {
this.editDialogVisible = true
}
複製代碼
- 當點擊修改按鈕的時候,要可以獲取到當前行的數據以及
id
值,咱們能夠經過scope.row
獲取到當前行的數據,scope.row.id
就能夠獲取到當前行的id
值,傳入showEditDialog
方法中,代碼以下:
<el-button type="primary" icon="el-icon-edit" size="mini" @click="showEditDialog(scope.row.id)"></el-button>
複製代碼
- 在
data
中定義一個數據editForm
,用來接收響應的值,代碼以下:
editForm: {}
複製代碼
- 在
showEditDialog()
方法中就能夠接收點擊的id
值,傳參進去,調用編輯的接口。因爲返回值是promise
對象,因此能夠用async
和await
進行簡化操做。若是響應的狀態碼不爲200
,說明修改失敗,進行提示,反之則成功,將返回來的值res.data
賦值給data
中的editForm
,代碼以下:
async showEditDialog(id) {
const {data: res} = await this.$http.get('users/' + id)
if (res.meta.status !== 200) {
return this.$message.error('查詢用戶信息失敗!')
}
this.editForm = res.data
this.editDialogVisible = true
}
複製代碼
- 對於數據的修改填寫,須要用到
Element UI
中的Form
表單組件,咱們能夠引用Form
表單。el-form
是表單的主體對象,el-form-item
是表單的每一項。在el-form
中,ref
是可以經過引用拿到表單的引用對象。model
是綁定表單的數據項,rules
是綁定表單的校驗規則,label-width
是每一項的寬度。在el-form-item
中,label
是標籤文本,prop
是傳入表單域的驗證規則。在el-input
中,v-model
是可以實現表單域的雙向數據綁定。 對於表單中的每一項值,經過data
中的editForm
,響應得到的數據進行獲取,好比editForm.username
的值就是用戶名的值,代碼以下:
<el-dialog title="修改用戶" :visible.sync="editDialogVisible" width="50%">
<el-form :model="editForm" :rules="editFormRules" ref="editFormRef" label-width="70px">
<el-form-item label="用戶名">
<el-input v-model="editForm.username" disabled></el-input>
</el-form-item>
<el-form-item label="郵箱" prop="email">
<el-input v-model="editForm.email"></el-input>
</el-form-item>
<el-form-item label="手機" prop="mobile">
<el-input v-model="editForm.mobile"></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="editDialogVisible = false">取 消</el-button>
<el-button type="primary" @click="editDialogVisible = false">確 定</el-button>
</span>
</el-dialog>
複製代碼
- 對於表單的每一項,也須要進行規制驗證,判斷輸入框中輸入的值是不是正確的。在
el-form
中,:rules="editFormRules"
是綁定的表單驗證規則,也就是須要在data
中定義一個數據editFormRules
,裏面包含了全部項的驗證規則,在裏面定義規則。對於表單的每一項值,拿到相應對於的規則,須要經過prop
屬性,所接受的值就是在editFormRules
中定義的規則名稱,required
表示爲必填項,min
和max
表示爲限定的最小長度和最大長度,validator
是綁定的自定義驗證規則,代碼以下:
editFormRules: {
email: [
{ required: true, message: '請輸入郵箱', trigger: 'blur' },
{ validator: checkEmail, trigger: 'blur' }
],
mobile: [
{ required: true, message: '請輸入手機號', trigger: 'blur' },
{ validator: checkMobile, trigger: 'blur' }
]
}
複製代碼
- 在修改數據,對話框的表單中修改數據之後,而後再關閉對話框,下一次再修改數據的時候,會發現以前修改的數據還會保留,沒有被清空,而咱們所但願的是每一次打開對話框的時候,表單都是新的,沒有數據內容,須要重置。咱們須要在對話框中綁定一個重置的事件,經過
@close
綁定editDialogClosed
事件,進行重置表單,代碼以下:
<el-dialog title="修改用戶" :visible.sync="editDialogVisible" width="50%" @close="editDialogClosed">
複製代碼
- 在
method
中,定義editDialogClosed
方法。在Form Methods
中,有resetFields
方法,它的做用是對整個表單進行重置,將全部字段值重置爲初始值並移除校驗結果。經過ref
獲取表單的引用對象,而後再將this.$refs.editFormRef
獲取整個表單的數據,調用resetFields()
方法,進行表單的重置,代碼以下:
editDialogClosed () {
this.$refs.editFormRef.resetFields()
}
複製代碼
- 在點擊肯定按鈕進行提交表單的時候,須要對於表單的數據進行一次預校驗,先進行綁定點擊事件,代碼以下:
<el-button type="primary" @click="editUserInfo">確 定</el-button>
複製代碼
- 在
method
中,定義editUserInfo()
函數,經過this.$refs.editFormRef
獲取到整個表單的數據,經過validate
方法進行預校驗。若是valid
的值爲false
,說明校驗失敗,反之則校驗成功。代碼以下:
editUserInfo () {
this.$refs.editFormRef.validate(valid => {
console.log(valid)
if (!valid) return
})
}
複製代碼
- 對於保存修改信息,須要調用編輯用戶提交的接口,進行相應的拼接。若是響應的狀態碼不爲
200
,說明響應失敗,進行錯誤的提示,反之則響應成功了。在響應修改爲功之後,關閉對話框,從新獲取一次數據列表,最後再進行修改爲功之後的提示,代碼以下:
editUserInfo () {
this.$refs.editFormRef.validate(async valid => {
console.log(valid)
if (!valid) return
const {data: res} = await this.$http.put('users/' + this.editForm.id, {
email: this.editForm.email,
mobile: this.editForm.mobile
})
if (res.meta.status !== 200) {
return this.$message.error('更新用戶信息失敗!')
}
this.editDialogVisible = false
this.getUserList()
this.$message.success('更新用戶信息成功!')
})
}
複製代碼
2、Element UI中表格數據的編輯實現
- Element表格數據的編輯,完整代碼以下:
<template>
<div>
<el-breadcrumb separator-class="el-icon-arrow-right">
<el-breadcrumb-item :to="{ path: '/home' }">首頁</el-breadcrumb-item>
<el-breadcrumb-item>用戶管理</el-breadcrumb-item>
<el-breadcrumb-item>用戶列表</el-breadcrumb-item>
</el-breadcrumb>
<el-card class="box-card">
<el-row :gutter="20">
<el-col :span="8">
<el-input placeholder="請輸入內容" v-model="queryInfo.query" clearable @clear="getUserList()">
<el-button slot="append" icon="el-icon-search" @click="getUserList()"></el-button>
</el-input>
</el-col>
<el-col :span="4">
<el-button type="primary" @click="dialogVisible=true">添加用戶</el-button>
</el-col>
</el-row>
<el-table :data="userList" :stripe="true" :border="true">
<el-table-column type="index"></el-table-column>
<el-table-column prop="username" label="用戶名稱"></el-table-column>
<el-table-column prop="email" label="郵箱"></el-table-column>
<el-table-column prop="mobile" label="電話"></el-table-column>
<el-table-column prop="role_name" label="角色"></el-table-column>
<el-table-column prop="mg_state" label="狀態">
<template slot-scope="scope">
<el-switch v-model="scope.row.mg_state" @change="userStateChange(scope.row)">
</el-switch>
</template>
</el-table-column>
<el-table-column label="操做">
<template slot-scope="scope">
<el-button type="primary" icon="el-icon-edit" size="mini" @click="showEditDialog(scope.row.id)"></el-button>
<el-button type="danger" icon="el-icon-delete" size="mini"></el-button>
<el-tooltip effect="dark" content="分配角色" placement="top" :enterable="false">
<el-button type="warning" icon="el-icon-setting" size="mini"></el-button>
</el-tooltip>
</template>
</el-table-column>
</el-table>
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="queryInfo.pagenum" :page-sizes="[1, 2, 5, 10]" :page-size="queryInfo.pagesize" layout="total, sizes, prev, pager, next, jumper" :total="total">
</el-pagination>
</el-card>
<el-dialog title="添加用戶" :visible.sync="dialogVisible" width="50%" @close="addDialogClosed">
<el-form ref="addFormRef" :model="addForm" :rules="addFormRules" label-width="70px">
<el-form-item label="用戶名" prop="username">
<el-input v-model="addForm.username"></el-input>
</el-form-item>
<el-form-item label="密碼" prop="password">
<el-input v-model="addForm.password"></el-input>
</el-form-item>
<el-form-item label="郵箱" prop="email">
<el-input v-model="addForm.email"></el-input>
</el-form-item>
<el-form-item label="手機號" prop="mobile">
<el-input v-model="addForm.mobile"></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisible = false">取 消</el-button>
<el-button type="primary" @click="addUser">確 定</el-button>
</span>
</el-dialog>
<el-dialog title="修改用戶" :visible.sync="editDialogVisible" width="50%" @close="editDialogClosed">
<el-form :model="editForm" :rules="editFormRules" ref="editFormRef" label-width="70px">
<el-form-item label="用戶名">
<el-input v-model="editForm.username" disabled></el-input>
</el-form-item>
<el-form-item label="郵箱" prop="email">
<el-input v-model="editForm.email"></el-input>
</el-form-item>
<el-form-item label="手機" prop="mobile">
<el-input v-model="editForm.mobile"></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="editDialogVisible = false">取 消</el-button>
<el-button type="primary" @click="editUserInfo">確 定</el-button>
</span>
</el-dialog>
</div>
</template>
<script> export default { data () { var checkEmail = (rule, value, callback) => { const regEmail = /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/ if (regEmail.test(value)) { return callback() } callback(new Error('請輸入合法的郵箱')) } var checkMobile = (rule, value, callback) => { const regMobile = /^(13[0-9]|14[5|7]|15[0|1|2|3|5|6|7|8|9]|18[0|1|2|3|5|6|7|8|9])\d{8}$/ if (regMobile.test(value)) { return callback() } callback(new Error('請輸入合法的手機號')) } return { queryInfo: { query: '', pagenum: 1, pagesize: 2 }, userList: [], total: 0, dialogVisible: false, addForm: { username: '', password: '', email: '', mobile: '' }, addFormRules: { username: [ { required: true, message: '請輸入用戶名', trigger: 'blur' }, { min: 3, max: 10, message: '長度在 3 到 10 個字符', trigger: 'blur' } ], password: [ { required: true, message: '請輸入密碼', trigger: 'blur' }, { min: 3, max: 10, message: '長度在 6 到 15 個字符', trigger: 'blur' } ], email: [ { required: true, message: '請輸入郵箱', trigger: 'blur' }, { validator: checkEmail, trigger: 'blur' } ], mobile: [ { required: true, message: '請輸入手機號', trigger: 'blur' }, { validator: checkMobile, trigger: 'blur' } ] }, editDialogVisible: false, editForm: {}, editFormRules: { email: [ { required: true, message: '請輸入郵箱', trigger: 'blur' }, { validator: checkEmail, trigger: 'blur' } ], mobile: [ { required: true, message: '請輸入手機號', trigger: 'blur' }, { validator: checkMobile, trigger: 'blur' } ] } } }, created () { this.getUserList() }, methods: { async getUserList () { const {data: res} = await this.$http.get('users', { params: this.queryInfo }) if (res.meta.status !== 200) { return this.$message('獲取用戶列表失敗!') } this.userList = res.data.users this.total = res.data.total console.log(res) }, handleSizeChange (newSize) { this.queryInfo.pagesize = newSize this.getUserList() }, handleCurrentChange (newPage) { this.queryInfo.pagenum = newPage this.getUserList() }, async userStateChange (userInfo) { console.log(userInfo) const {data: res} = await this.$http.put(`users/${userInfo.id}/state/${userInfo.mg_state}`) if (res.meta.status !== 200) { this.userInfo.mg_state = !this.userInfo.mg_state this.$message.error('更新用戶狀態失敗!') } this.$message.success('更新用戶狀態成功!') }, addDialogClosed () { this.$refs.addFormRef.resetFields() }, addUser () { this.$refs.addFormRef.validate(async valid => { if (!valid) return const {data: res} = await this.$http.post('users', this.addForm) if (res.meta.status !== 201) { this.$message.error('添加用戶失敗!') } this.$message.success('添加用戶成功!') this.dialogVisible = false this.getUserList() }) }, async showEditDialog(id) { const {data: res} = await this.$http.get('users/' + id) if (res.meta.status !== 200) { return this.$message.error('查詢用戶信息失敗!') } this.editForm = res.data this.editDialogVisible = true }, editDialogClosed () { this.$refs.editFormRef.resetFields() }, editUserInfo () { this.$refs.editFormRef.validate(async valid => { console.log(valid) if (!valid) return const {data: res} = await this.$http.put('users/' + this.editForm.id, { email: this.editForm.email, mobile: this.editForm.mobile }) if (res.meta.status !== 200) { return this.$message.error('更新用戶信息失敗!') } this.editDialogVisible = false this.getUserList() this.$message.success('更新用戶信息成功!') }) } } } </script>
<style lang="less" scoped> </style>
複製代碼