index.js 2.76 KB
Newer Older
程恺文's avatar
程恺文 committed
1 2 3 4
/*
 * @Author: 634665781 634665781@qq.com
 * @Date: 2022-07-08 14:28:01
 * @LastEditors: 634665781 634665781@qq.com
程恺文's avatar
程恺文 committed
5
 * @LastEditTime: 2022-09-05 17:38:26
程恺文's avatar
程恺文 committed
6 7 8
 * @FilePath: \CivWeb\src\pages\user\login\index.js
 * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
 */
9
import React, { useEffect } from 'react';
10 11
import BaseLogin from './template/baseLogin';
import NewYear from './template/newYear';
尚顺利's avatar
尚顺利 committed
12
import InfoLogin from './template/infoLogin';
徐乐's avatar
徐乐 committed
13
import Yulin from './template/yulin';
14
// import { useParams } from '@wisdom-utils/runtime';
15
import EnergyQuota from './template/energy_quota/index';
程恺文's avatar
程恺文 committed
16
import EnergGz from './template/energy_GZ/index';
程恺文's avatar
程恺文 committed
17
import EnergJS2 from './template/energy_JS2/index';
18
import CloudLogin from './template/cloud';
19
import WaterLogin from './template/water';
20
import JSZHLogin from './template/project/JSZH';
21
import ChengmaiLogin from './template/project/chengmai';
22
import HuhehaoteLogin from './template/project/huhehaote';
王万里's avatar
王万里 committed
23
import XinganLogin from './template/project/xingan';
王万里's avatar
王万里 committed
24
import ErlianhaoteLogin from './template/project/erlianhaote';
王万里's avatar
王万里 committed
25
import YixianLogin from './template/project/yixian';
xuchaozou's avatar
xuchaozou committed
26
import PanoramaLogin from './template/panorama';
邓晓峰's avatar
邓晓峰 committed
27
import { AppInitState } from '../../../render';
28 29 30 31
const LoginTemplate = {
  '新春 - 智联.html': NewYear,
  'Dark - IOTMultiLogin.html': BaseLogin,
  'Dark.html': BaseLogin,
程恺文's avatar
程恺文 committed
32 33
  'DarkCloud.html':
    window.location.origin.replace(/^(http|https):\/\//, '') === 'panda-water.cn' ? CloudLogin : BaseLogin,
34 35
  '信息化.html': InfoLogin,
  '项目 - 榆林.html': Yulin,
36
  '能源-定额平台.html': EnergyQuota,
程恺文's avatar
程恺文 committed
37
  '节水主题一.html': EnergGz,
38
  'Water.html': WaterLogin,
39
  '项目 - 江水置换.html': JSZHLogin,
程恺文's avatar
程恺文 committed
40
  '节水主题二.html': EnergJS2,
41
  '项目 - 澄迈.html': ChengmaiLogin,
42
  '项目 - 呼和浩特.html': HuhehaoteLogin,
王万里's avatar
王万里 committed
43
  '项目 - 新干.html': XinganLogin,
王万里's avatar
王万里 committed
44
  '项目 - 二连浩特.html': ErlianhaoteLogin,
王万里's avatar
王万里 committed
45
  '项目 - 易县.html': YixianLogin,
xuchaozou's avatar
xuchaozou committed
46
  '全景图.html' : PanoramaLogin,   
47
  default: BaseLogin,
48
};
邓晓峰's avatar
邓晓峰 committed
49
/* eslint-disable */
50
export default (props) => {
邓晓峰's avatar
邓晓峰 committed
51
  const {location} = props.history;
52
  useEffect(() => {
邓晓峰's avatar
邓晓峰 committed
53 54 55
    if(location.state && location.state.reload) {
      AppInitState();
    }
56
  }, []);
邓晓峰's avatar
邓晓峰 committed
57
  if(Object.keys(window.globalConfig || {}).length === 0) return null;
程恺文's avatar
程恺文 committed
58 59 60 61 62 63 64 65
  let template = window.globalConfig && window.globalConfig.loginTemplate;

  let  arr =template.split('|')
  let loginParams=[]
  if(arr.length>1){
    template=arr[0]
    loginParams =arr[1].split('&')
  }
杨思琦's avatar
杨思琦 committed
66 67 68
  if(template.indexOf('.html') == -1){
    template += '.html';
  } 
69
  const RenderComponent = LoginTemplate[template] ? LoginTemplate[template]: LoginTemplate['default'];
程恺文's avatar
程恺文 committed
70
  return <RenderComponent {...props} loginParams={loginParams}/>
邓晓峰's avatar
邓晓峰 committed
71
};
邓晓峰's avatar
邓晓峰 committed
72