| 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
 | | import { defineConfig } from '@bole-core/core'; |  |   |  | export default defineConfig({ |  |   /** |  |    * @description 网页title |  |    */ |  |   title: '灵工企业客户端', |  |   |  |   errorLog: 'production', |  |   |  |   loginFormTitle: '灵工企业客户端', |  | }); |  |   |  | type AppType = 'one' | 'rz' | 'jx'; |  |   |  | const AppSettingMap = { |  |   one: { |  |     title: '灵工企业客户端', |  |     loginFormTitle: '灵工企业客户端', |  |     MenuTitle: '灵工企业客户端', |  |   }, |  |   rz: { |  |     title: '聚千保理赔管理工具', |  |     loginFormTitle: '聚千保理赔管理工具', |  |     MenuTitle: '聚千保理赔', |  |   }, |  |   jx: { |  |     title: '江西保险理赔管理工具', |  |     loginFormTitle: '江西保险理赔管理工具', |  |     MenuTitle: '江西保险理赔', |  |   }, |  | }; |  |   |  | export function getAppSetting(appType: AppType) { |  |   return AppSettingMap[appType]; |  | } | 
 |