1、给父页面跳转的地方设置事件
页面上展示的信息
//带参数进行编辑
删除
@H_403_9@
名称" prop="name">
//v-model绑定formData.name(name为需要的字段,formDataw为表格ref绑定的数据)
确定
@H_403_9@
@H_403_9@
//要跳转过去的页面用隐藏来代替
<div v-if="addShow" class="add-category ">
<el-col :span="20" :offset="2">
<el-form :model="formData" :rules="rules" ref="formData" label-position="left">
2、JS部分
显示的页面部分默认为false,隐藏
checkdDistributor: null,},methods: {
// 编辑按钮
handleEdit(index,row){
this.checkdDistributor = row; //接受传参
this.addShow = true; // addshow为要显示的页面
}
}
watch: {
// 带参数编辑
checkdDistributor(){
for(let attr in this.formData){
this.formData[attr] = ('' + this.checkdDistributor[attr]); //写入参数
}
}
},
@H_403_9@
3、最后上效果图
补充:
vue router-link跳转传值示例
1、router-link
@H_403_9@
2、routes路由