avue点击添加跳转新页面
vue页面<avue-crud...:before-open="beforeOpen"...>方法:beforeOpen(done, type) {//添加的时候,跳转之前的操作if (type == "add") {this.$router.push({path: "/yss/index",query: {},});}//修改的时候,跳转之前的操作if (["edit", "view
·
vue页面
<avue-crud
...
:before-open="beforeOpen"
...
>
方法:
beforeOpen(done, type) {
//添加的时候,跳转之前的操作
if (type == "add") {
this.$router.push({
path: "/yss/index",
query: {
},
});
}
//修改的时候,跳转之前的操作
if (["edit", "view"].includes(type)) {
//预留
}
done();
},
更多推荐
已为社区贡献2条内容
所有评论(0)