[TOC]
编辑功能与添加功能相似,采⽤同⼀组件,操作时通过 isEdit 传递状态
// list.vue … data () { return { … // 添加或编辑 isEdit: false, … } }, … …⼦组件接收状态
// create-or-edit.vue props: { isEdit: { type: Boolean, default: false } },点击添加时,设置 isEdit 为false
// list.vue点击编辑按钮,设置 isEdit 为 true,同时弹出对话框。(事件在初始化布局时设置过了,参数为当前⻆⾊信息)
// list.vue … handleEdit (role) { // 显示对话框 this.dialogVisible = true // 设置编辑状态 this.isEdit = true },点击编辑时将数据绑定给表单,需要⽗传⼦将编辑的⻆⾊ id 传⼊。
传⼊ id 由⼦组件重新查询,可以确保数据为最新,也可以避免原数据不全的情况 // list.vue … data () { … // 正在编辑的⻆⾊ID roleId: null } }, handleEdit (role) { this.dialogVisible = true this.isEdit = true // 将要编辑的⻆⾊ ID 传递给表单展示 this.roleId = role.id }, … …⼦组件接收,并在 created 时进⾏展示
// create-or-list.vue props: { … roleId: { type: Object } }, created () { if (this.isEdit) { console.log(roleId) } },由于当前组件只是显示隐藏,组件没有销毁与创建,所以通过 v-if 来控制对话框即可
// list.vue封装请求⻆⾊功能
// services/role.js … // 获取⻆⾊ export const getRoleById = id => { return request({ method: ‘GET’, url:/boss/role/${</font><font style="color:rgb(0,92,197);">id</font><font style="color:rgb(102,153,0);">}
,
})
}