From f7de87860bc484fbb647c490ee1f3f8b899cbde6 Mon Sep 17 00:00:00 2001 From: Auora <14587305+auoraasd@user.noreply.gitee.com> Date: Thu, 6 Nov 2025 17:20:42 +0800 Subject: [PATCH] =?UTF-8?q?1=E5=A2=9E=E5=8A=A0=E6=8C=82=E5=8F=B7=E6=94=B6?= =?UTF-8?q?=E8=B4=B9=E7=B3=BB=E7=BB=9F=E5=8F=82=E6=95=B0=E7=BB=B4=E6=8A=A4?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E6=8C=82=E5=8F=B7=E5=A4=84=E7=90=86=E7=9A=84?= =?UTF-8?q?=E7=9B=B8=E5=85=B3=E5=8F=82=E6=95=B0=202=E5=9C=A8=E6=89=93?= =?UTF-8?q?=E5=8D=B0=E8=AE=BE=E7=BD=AEtba=E9=A1=B5=E9=9D=A2=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E6=98=AF=E5=90=A6=E6=89=93=E5=8D=B0=E6=8C=82=E5=8F=B7?= =?UTF-8?q?=E5=8D=95=E7=BB=B4=E6=8A=A4=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- openhis-ui-vue3/src/router/index.js | 19 ++ .../maintainSystem/chargeConfig/index.vue | 271 ++++++++++++++++++ 2 files changed, 290 insertions(+) create mode 100644 openhis-ui-vue3/src/views/maintainSystem/chargeConfig/index.vue 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