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();
},
Logo

前往低代码交流专区

更多推荐