1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
export default [
{
icon: "ssihome",
path: "/home",
title: "主页面",
children: [],
},
{
icon: "ssiuser",
path: "1",
title: "客户信息",
children: [
{
path: "/customer",
title: "客户查询",
},
],
},
// {
// icon: "ssimanage_msg",
// path: "2",
// title: "福利信息管理",
// children: [
// {
// path: "/welfare",
// title: "福利查询",
// }
// ],
// },
// {
// icon: "ssimanage",
// path: "pre-auth",
// title: "预授权信息管理",
// children: [
// {
// path: "/pre-auth",
// title: "预授权查询",
// },
// // {
// // path: "/pre-auth/add",
// // title: "新建预授权",
// // },
// ],
// },
{
icon: "ssisearch",
path: "charge-query",
title: "收费查询",
children: [
{
path: "/charge-query",
title: "账单查询",
},
{
path: "/charge-query/lpjManage",
title: "理赔件管理",
},
],
},
{
icon: "ssiorder",
path: "verification",
title: "核销管理",
children: [
// {
// path: "/verification",
// title: "EOB管理",
// },
{
path: "/verification/collection",
title: "回款管理",
},
],
},
{
icon: "ssidata",
path: "info",
title: "系统设置",
children: [
{
path: "/info",
title: "医疗机构设置",
},
{
path: "/info/company",
title: "保险公司设置",
},
{
path: "/welfare/edit",
title: "福利信息设置",
}
],
},
{
icon: "ssiscan",
path: "report",
title: "报表管理",
children: [
// {
// path: "/report/bi",
// title: "财务账单报表",
// },
{
path: "/report/returnedMoney",
title: "账单回款报表",
},
],
},
];