diff --git a/src/router/modules/Supplier.js b/src/router/modules/Supplier.js index 64c48146b7..588c44960c 100644 --- a/src/router/modules/Supplier.js +++ b/src/router/modules/Supplier.js @@ -46,6 +46,7 @@ export default { name: 'SupplierCreate', meta: { title: 'create', + icon: 'add', }, component: () => import('src/pages/Supplier/SupplierCreate.vue'), }, diff --git a/src/router/modules/entry.js b/src/router/modules/entry.js index 50a651af56..1856ba5257 100644 --- a/src/router/modules/entry.js +++ b/src/router/modules/entry.js @@ -35,6 +35,7 @@ export default { name: 'EntryCreate', meta: { title: 'create', + icon: 'add', }, component: () => import('src/pages/Entry/EntryCreate.vue'), }, diff --git a/src/router/modules/travel.js b/src/router/modules/travel.js index 2f1e2150ed..e1a08e9ded 100644 --- a/src/router/modules/travel.js +++ b/src/router/modules/travel.js @@ -44,6 +44,7 @@ export default { name: 'TravelCreate', meta: { title: 'travelCreate', + icon: 'add', }, component: () => import('src/pages/Travel/TravelCreate.vue'), }, diff --git a/src/router/modules/worker.js b/src/router/modules/worker.js index 68f0962207..e0c7137179 100644 --- a/src/router/modules/worker.js +++ b/src/router/modules/worker.js @@ -52,7 +52,7 @@ export default { name: 'WorkerCreate', meta: { title: 'workerCreate', - icon: '', + icon: 'add', }, component: () => import('src/pages/Worker/WorkerCreate.vue'), },