diff --git a/openhis-ui-vue3/src/router/index.js b/openhis-ui-vue3/src/router/index.js index b3496fe8..a9e33aa3 100644 --- a/openhis-ui-vue3/src/router/index.js +++ b/openhis-ui-vue3/src/router/index.js @@ -88,6 +88,25 @@ export const constantRoutes = [ // 动态路由,基于用户权限动态去加载 export const dynamicRoutes = [ + { + path: '/maintainSystem', + component: Layout, + redirect: '/maintainSystem/chargeConfig', + name: 'MaintainSystem', + meta: { title: '维护系统', icon: 'system' }, + children: [ + { + path: '', + redirect: 'chargeConfig' + }, + { + path: 'chargeConfig', + component: () => import('@/views/maintainSystem/chargeConfig/index.vue'), + name: 'ChargeConfig', + meta: { title: '挂号收费系统参数维护', icon: 'config', permissions: ['maintainSystem:chargeConfig:list'] } + } + ] + }, { path: '/system', component: Layout, diff --git a/openhis-ui-vue3/src/views/maintainSystem/chargeConfig/index.vue b/openhis-ui-vue3/src/views/maintainSystem/chargeConfig/index.vue new file mode 100644 index 00000000..dc1c56cb --- /dev/null +++ b/openhis-ui-vue3/src/views/maintainSystem/chargeConfig/index.vue @@ -0,0 +1,271 @@ + + + + + \ No newline at end of file