一日流程评估优化

This commit is contained in:
zhanglipeng 2021-05-20 16:06:39 +08:00
parent b3bea0526e
commit 46faa3ab3d
2 changed files with 4 additions and 2 deletions

View File

@ -495,7 +495,7 @@ export const constantRoutes = [
hidden: true,
children: [
{
path: "teacher",
path: "teacher/:id(\\d+)",
component: () => import("@/views/benyi/dayflowassessment/teacher"),
name: "dayflowassessmentteacher",
meta: {

View File

@ -287,7 +287,9 @@ export default {
this.$router.push({ path: "/benyi/dayflowassessments/details/" + id });
},
handleAdd() {
this.$router.push({ path: "/benyi/dayflowassessment/teacher" });
this.$router.push({
path: "/benyi/dayflowassessment/teacher/" + Date.now(),
});
},
/** 删除按钮操作 */
handleDelete(row) {