wupengfei
2025-03-21 ca8fc597599e8a85288b5d771957bb1bd712e8c7
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
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: '灵工平台',
  },
  jx: {
    title: '江西保险理赔后台管理系统',
    loginFormTitle: '江西保险理赔后台管理系统',
    MenuTitle: '江西保险理赔',
  },
};
 
export function getAppSetting(appType: AppType) {
  return AppSettingMap[appType];
}