add contract-formpage

This commit is contained in:
hayatie
2025-11-05 15:55:01 +08:00
parent db04675390
commit 9684de5071
21 changed files with 18142 additions and 70 deletions
+33 -1
View File
@@ -51,6 +51,9 @@ import AdminIndex from './components/demo/admin/index.vue';
import ManageAccountAdd from './components/demo/admin/admin/add.vue';
import ManagePembiayaan from './components/demo/admin/admin/pembiayaan.vue';
import ManageBelianKomoditi from './components/demo/admin/admin/beliankomoditi.vue';
import ManageKontrakMurabahah from './components/demo/admin/admin/kontrakmurabahah.vue';
import CetakPermohonan from './components/demo/admin/admin/cetakpermohonan.vue';
const default_component = {
@@ -313,7 +316,36 @@ export default [
path: '/pembiayaan',
name: 'Pembiayaan',
component: ManagePembiayaan
}
},
{
path: '/beliankomoditi',
name: 'BelianKomoditi',
component: ManageBelianKomoditi
},
{
path: '/kontrakmurabahah',
name: 'KontrakMurabahah',
component: ManageKontrakMurabahah
},
{
path: '/cetakpermohonan',
name: 'CetakPermohonan',
component: CetakPermohonan
},
{
path: '/:pathMatch(.*)*',
name: 'NotFound',
component: {
template: '<div class="text-center mt-5">Not found: {{ $route.path }}</div>'
}
}
]