This commit is contained in:
2021-04-01 21:24:22 +00:00
parent b534eaea30
commit 258b747159
3 changed files with 15 additions and 1 deletions

View File

@@ -18,6 +18,12 @@ export default {
tid.type = Number.parseInt(tid.type, 10);
tid.id = Number.parseInt(tid.id, 10);
switch (tid.type) {
case ayatype.WorkOrder:
vm.$router.push({
name: "workorder-edit",
params: { recordid: tid.id }
});
break;
case ayatype.Memo:
vm.$router.push({
name: "memo-edit",