From d148c84296628becc2eb33ebf915209baadfc7db Mon Sep 17 00:00:00 2001 From: LiJianZhao Date: Mon, 19 May 2025 13:50:03 +0800 Subject: [PATCH] dev --- src/assets/config/directory/clrType.json | 7 + .../ArtificialReconciliation.vue | 194 ++++++++++++++++++ src/router/index.ts | 6 +- src/views/LayoutSocial.vue | 5 + src/views/social/accountRecords.vue | 57 +++-- src/views/social/reconciliationRecord.vue | 101 +++++++++ 6 files changed, 339 insertions(+), 31 deletions(-) create mode 100644 src/assets/config/directory/clrType.json create mode 100644 src/components/social/reconciliation/ArtificialReconciliation.vue create mode 100644 src/views/social/reconciliationRecord.vue diff --git a/src/assets/config/directory/clrType.json b/src/assets/config/directory/clrType.json new file mode 100644 index 0000000..e7a78c9 --- /dev/null +++ b/src/assets/config/directory/clrType.json @@ -0,0 +1,7 @@ +{ + "99959": "医疗费用清算", + "41": "药店购药", + "99952": "异地医疗费用清算", + "9914": "签约服务费", + "99939": "门诊统筹清算" +} diff --git a/src/components/social/reconciliation/ArtificialReconciliation.vue b/src/components/social/reconciliation/ArtificialReconciliation.vue new file mode 100644 index 0000000..ab0962b --- /dev/null +++ b/src/components/social/reconciliation/ArtificialReconciliation.vue @@ -0,0 +1,194 @@ + + + + + \ No newline at end of file diff --git a/src/router/index.ts b/src/router/index.ts index c1b053e..2935882 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -9,7 +9,7 @@ const router = createRouter({ }, { path: '/manager/login', - component: ()=>import('../views/Login.vue'), + component: () => import('../views/Login.vue'), }, { path: '/home', @@ -155,6 +155,10 @@ const router = createRouter({ path: "accountRecord", component: () => import('@/views/social/accountRecords.vue'), }, + { + path: "reconciliationRecord", + component: () => import('@/views/social/reconciliationRecord.vue'), + }, ] }, diff --git a/src/views/LayoutSocial.vue b/src/views/LayoutSocial.vue index c918c29..b420fc7 100644 --- a/src/views/LayoutSocial.vue +++ b/src/views/LayoutSocial.vue @@ -108,6 +108,11 @@ const childMenuList = ref([ { name: '对账', path: '/social/accountRecord', + }, + { + name: '对账记录', + path: '/social/reconciliationRecord', } + ]) \ No newline at end of file diff --git a/src/views/social/accountRecords.vue b/src/views/social/accountRecords.vue index 80535fd..dd68de8 100644 --- a/src/views/social/accountRecords.vue +++ b/src/views/social/accountRecords.vue @@ -12,40 +12,43 @@ /> - - + + + + + + - - - + + \ No newline at end of file