Merge branch 'nice_dev' into develop
# Conflicts: # src/modules/15_development/router.ts
This commit is contained in:
commit
a231dda03d
3 changed files with 1080 additions and 3 deletions
|
|
@ -9,6 +9,10 @@ const Scholarship = () =>
|
|||
import("@/modules/15_development/views/Scholarship.vue");
|
||||
const historyAdd = () => import('@/modules/15_development/components/history/AddPage.vue')
|
||||
const historyEmployeeAdd = () => import('@/modules/15_development/components/historyEmployee/AddPage.vue')
|
||||
const ScholarshipDetail = () =>
|
||||
import("@/modules/15_development/components/scholarship/DetailView.vue");
|
||||
const historyAdd = () =>
|
||||
import("@/modules/15_development/components/history/AddPage.vue");
|
||||
export default [
|
||||
{
|
||||
path: "/development",
|
||||
|
|
@ -70,6 +74,26 @@ export default [
|
|||
Role: "development",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/development/scholarship/add",
|
||||
name: "developmentScholarshipAdd",
|
||||
component: ScholarshipDetail,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [1.6],
|
||||
Role: "development",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/development/scholarship/:id",
|
||||
name: "developmentScholarshipid",
|
||||
component: ScholarshipDetail,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [1.6],
|
||||
Role: "development",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/development/history/add",
|
||||
name: "developmentHistoryAdd",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue