This commit is contained in:
2024-04-19 11:05:22 +08:00
parent f2f7299618
commit 9f09f19b52

View File

@ -4,6 +4,7 @@
<el-form-item label="编辑专病管理路径">
</el-form-item>
<el-form-item style="float: right;">
<el-button @click="back">返回</el-button>
<el-button type="primary" @click="preserve">保存</el-button>
<!-- <el-button type="primary">发布</el-button> -->
</el-form-item>
@ -413,6 +414,13 @@ export default {
})
})
},
back() {
this.$store.dispatch('tagsView/delView', this.$route).then(({ visitedViews }) => {
this.$router.push({
path: "/specialdisease/specialDiseaseRoute",
});
})
},
},
};
</script>