constants.js 3.62 KB
Newer Older
1
/* eslint-disable global-require */
2 3 4 5 6 7 8 9 10
/* eslint-disable prettier/prettier */
/*
 * @Title: 引导页模板
 * @Author: hongmye
 * @Date: 2024-06-11 15:07:45
 */
import Demonstration from './demonstration';
import PandaBootPage from './panda';
import IntegrationPage from './integration';
周宏民's avatar
周宏民 committed
11
import IntegrationPage2 from './integration2';
周宏民's avatar
周宏民 committed
12
import TaihuPage from './project/taihu';
周宏民's avatar
周宏民 committed
13
import JimusaerPage from './project/jimusaer';
周宏民's avatar
周宏民 committed
14 15
import YixingPage from './project/yixing';
import DanlingPage from './project/danling';
周宏民's avatar
周宏民 committed
16
import MilePage from './project/mile';
周宏民's avatar
周宏民 committed
17
import DongyingPage from './project/dongying';
周宏民's avatar
周宏民 committed
18
import QinzhouPage from './project/qinzhou';
19
import WuliangyePage from './project/wuliangye';
周宏民's avatar
周宏民 committed
20
import JianshiPage from './project/jianshi';
周宏民's avatar
周宏民 committed
21
import XinyuanPage from './project/xinyuan';
22
import SuzhouPage from './project/suzhou';
23
import IntegrationNewPage from './integrationNew';
24
export const guidePage = [
周宏民's avatar
周宏民 committed
25
  // type 为true 则需要 功能配置 isPanda 为true
26 27 28
  {
    label: '集成登录(默认)',
    value: 'default',
29
    previewSrc: require('@/assets/images/integration/previewImg/集成登录.png'),
30
  },
31 32 33
  {
    label: '集成登录(新)',
    value: 'integrationNew',
34
    previewSrc: require('@/assets/images/integration/previewImg/集成登录新.png'),
35
  },
周宏民's avatar
周宏民 committed
36
  {
周宏民's avatar
周宏民 committed
37
    label: '集成登录演示',
周宏民's avatar
周宏民 committed
38
    value: 'integration2',
39
    previewSrc: require('@/assets/images/integration/previewImg/集成演示.png'),
周宏民's avatar
周宏民 committed
40
  },
周宏民's avatar
周宏民 committed
41 42 43
  {
    label: '太湖集成登录',
    value: 'taihuPage',
44
    previewSrc: require('@/assets/images/integration/previewImg/太湖.png'),
周宏民's avatar
周宏民 committed
45
  },
周宏民's avatar
周宏民 committed
46 47 48
  {
    label: '吉尔木萨集成登录',
    value: 'jimusaerPage',
49
    previewSrc: require('@/assets/images/integration/previewImg/吉木萨尔.png'),
周宏民's avatar
周宏民 committed
50
  },
周宏民's avatar
周宏民 committed
51 52 53
  {
    label: '宜兴集成登录',
    value: 'yixingPage',
54
    previewSrc: require('@/assets/images/integration/previewImg/宜兴.png'),
周宏民's avatar
周宏民 committed
55 56 57 58
  },
  {
    label: '丹棱集成登录',
    value: 'danlingPage',
59
    previewSrc: require('@/assets/images/integration/previewImg/丹棱.png'),
周宏民's avatar
周宏民 committed
60
  },
周宏民's avatar
周宏民 committed
61 62 63
  {
    label: '弥勒集成登录',
    value: 'milePage',
64
    previewSrc: require('@/assets/images/integration/previewImg/弥勒.png'),
周宏民's avatar
周宏民 committed
65
  },
周宏民's avatar
周宏民 committed
66 67 68
  {
    label: '东营集成登录',
    value: 'dongyingPage',
69
    previewSrc: require('@/assets/images/integration/previewImg/东营.png'),
周宏民's avatar
周宏民 committed
70
  },
周宏民's avatar
周宏民 committed
71 72 73
  {
    label: '钦州集成登录',
    value: 'qinzhouPage',
74
    previewSrc: require('@/assets/images/integration/previewImg/钦州.png'),
周宏民's avatar
周宏民 committed
75
  },
76 77 78 79 80
  {
    label: '五粮液集成登录',
    value: 'wulaingyePage',
    previewSrc: require('@/assets/images/integration/previewImg/五粮液.png'),
  },
周宏民's avatar
周宏民 committed
81 82 83 84 85
  {
    label: '建始集成登录',
    value: 'jianshiPage',
    previewSrc: require('@/assets/images/integration/previewImg/建始.png'),
  },
周宏民's avatar
周宏民 committed
86 87 88 89 90
  {
    label: '新源集成登录',
    value: 'xinyuanPage',
    previewSrc: require('@/assets/images/integration/previewImg/新源.png'),
  },
91 92
  {
    label: '宿州集成登录',
周宏民's avatar
周宏民 committed
93
    value: 'suzhouPage',
94 95
    previewSrc: require('@/assets/images/integration/previewImg/宿州北排.png'),
  },
96 97
  {
    label: '演示环境(旧版)',
周宏民's avatar
周宏民 committed
98
    type: true,
99 100 101 102 103 104 105 106 107 108
    value: 'panda',
  },
  {
    label: '演示环境',
    type: true,
    value: 'demonstration',
  },
];
export const BootPageTemplate = {
  default: IntegrationPage,
109
  integrationNew: IntegrationNewPage,
110
  panda: PandaBootPage,
周宏民's avatar
周宏民 committed
111
  integration2: IntegrationPage2,
112
  demonstration: Demonstration,
周宏民's avatar
周宏民 committed
113
  taihuPage: TaihuPage,
周宏民's avatar
周宏民 committed
114 115 116
  jimusaerPage: JimusaerPage,
  yixingPage: YixingPage,
  danlingPage: DanlingPage,
周宏民's avatar
周宏民 committed
117
  milePage: MilePage,
周宏民's avatar
周宏民 committed
118
  dongyingPage: DongyingPage,
周宏民's avatar
周宏民 committed
119
  qinzhouPage: QinzhouPage,
周宏民's avatar
周宏民 committed
120
  jianshiPage: JianshiPage,
周宏民's avatar
周宏民 committed
121
  xinyuanPage: XinyuanPage,
122
  wulaingyePage: WuliangyePage,
123
  suzhouPage: SuzhouPage,
124
};