This commit is contained in:
2021-06-10 19:23:55 +00:00
parent 7fd4bf9bb7
commit 3ac3b65a0e
7 changed files with 941 additions and 26 deletions

View File

@@ -788,11 +788,25 @@ export default new Router({
)
},
{
path: "/customer-csr-list",
name: "customer-csr-list",
path: "/customer-workorders/:recordid",
name: "customer-workorder-edit",
component: () =>
import(
/* webpackChunkName: "customer" */ "./views/customer-csr-list.vue"
/* webpackChunkName: "customer" */ "./views/customer-workorder.vue"
)
},
{
path: "/customer-csr",
name: "customer-csr",
component: () =>
import(/* webpackChunkName: "customer" */ "./views/customer-csr.vue")
},
{
path: "/customer-csr/:recordid",
name: "customer-csr-edit",
component: () =>
import(
/* webpackChunkName: "customer" */ "./views/customer-csr-edit.vue"
)
},