cfel-base-components 2.5.43 → 2.5.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/layout/index.scss +488 -60
- package/src/components/layout/index.tsx +391 -40
- package/src/components/layout-copy/index.scss +169 -0
- package/src/components/layout-copy/index.tsx +218 -0
- package/src/components/layout-copy/user-card/index.scss +180 -0
- package/src/components/layout-copy/user-card/index.tsx +162 -0
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
import React, { useEffect, useState } from 'react'
|
|
2
|
+
import { Layout, Menu, MenuProps, Popover } from 'antd'
|
|
3
|
+
import UserCard from './user-card'
|
|
4
|
+
import './index.scss'
|
|
5
|
+
|
|
6
|
+
const { Sider } = Layout
|
|
7
|
+
|
|
8
|
+
export interface LiosLayoutlProps {
|
|
9
|
+
appName?: any
|
|
10
|
+
productCode: string
|
|
11
|
+
children: any
|
|
12
|
+
menuList: any
|
|
13
|
+
onMenuClick: (item: any) => void
|
|
14
|
+
selectedKeys: string[]
|
|
15
|
+
customAction?: (item: any) => void
|
|
16
|
+
actions?: any[]
|
|
17
|
+
myWalletInfo?: {
|
|
18
|
+
availableCashAmount: string
|
|
19
|
+
availableAmount: string
|
|
20
|
+
currency: string
|
|
21
|
+
}
|
|
22
|
+
MyLoginInfo?: {
|
|
23
|
+
isAdmin: any
|
|
24
|
+
}
|
|
25
|
+
amountInfo?: {
|
|
26
|
+
residueNum: string
|
|
27
|
+
currencyCode: string
|
|
28
|
+
}
|
|
29
|
+
myWalletInfoAction?: Function
|
|
30
|
+
myLoginInfoAction?: Function
|
|
31
|
+
logoutUrl?: string
|
|
32
|
+
switchTenantUrl?: string
|
|
33
|
+
defaultOpenKeys?: string[]
|
|
34
|
+
isHideHeader?: boolean //是否隐藏header
|
|
35
|
+
onCollapse?: (value: boolean) => void
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export default function LiosLayout(props: LiosLayoutlProps) {
|
|
39
|
+
const {
|
|
40
|
+
appName,
|
|
41
|
+
productCode,
|
|
42
|
+
menuList,
|
|
43
|
+
onMenuClick,
|
|
44
|
+
selectedKeys,
|
|
45
|
+
|
|
46
|
+
customAction,
|
|
47
|
+
actions,
|
|
48
|
+
|
|
49
|
+
defaultOpenKeys,
|
|
50
|
+
myWalletInfo,
|
|
51
|
+
MyLoginInfo,
|
|
52
|
+
amountInfo,
|
|
53
|
+
myWalletInfoAction,
|
|
54
|
+
myLoginInfoAction,
|
|
55
|
+
isHideHeader,
|
|
56
|
+
onCollapse,
|
|
57
|
+
} = props
|
|
58
|
+
|
|
59
|
+
const { user, logo, subLogo } = (window as any)?.g_config
|
|
60
|
+
const { name, avatar } = user || {}
|
|
61
|
+
|
|
62
|
+
const [openKeys, setOpenKeys] = useState<any>(defaultOpenKeys || [])
|
|
63
|
+
|
|
64
|
+
//处理搜索菜单后自动展开目录
|
|
65
|
+
interface TreeNode {
|
|
66
|
+
key: string
|
|
67
|
+
children?: TreeNode[]
|
|
68
|
+
}
|
|
69
|
+
const findParentMenu = (menuList: any[], pathname: string) => {
|
|
70
|
+
const result: TreeNode[] = []
|
|
71
|
+
|
|
72
|
+
const findNode = (nodes: TreeNode[], path: TreeNode[]): boolean => {
|
|
73
|
+
for (const node of nodes) {
|
|
74
|
+
if (node.key === pathname) {
|
|
75
|
+
result.push(...path)
|
|
76
|
+
return true
|
|
77
|
+
}
|
|
78
|
+
if (node.children && findNode(node.children, [...path, node])) {
|
|
79
|
+
return true
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
return false
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
findNode(menuList, [])
|
|
86
|
+
return result
|
|
87
|
+
}
|
|
88
|
+
useEffect(() => {
|
|
89
|
+
//在这里找到当前菜单的上层目录
|
|
90
|
+
const paMenu = findParentMenu(menuList, '/' + location.pathname.split('/')[2])
|
|
91
|
+
//去重
|
|
92
|
+
const set = new Set(paMenu.map((item) => item.key))
|
|
93
|
+
openKeys.forEach((element: string) => {
|
|
94
|
+
set.add(element)
|
|
95
|
+
})
|
|
96
|
+
setOpenKeys(Array.from(set))
|
|
97
|
+
}, [location.pathname])
|
|
98
|
+
|
|
99
|
+
const [collapsed, setCollapsed] = useState(localStorage.getItem('layout_collapsed') === 'true')
|
|
100
|
+
const [isCopied, setIsCopied] = useState({
|
|
101
|
+
account: false,
|
|
102
|
+
id: false,
|
|
103
|
+
tenantName: false,
|
|
104
|
+
tenantId: false,
|
|
105
|
+
})
|
|
106
|
+
|
|
107
|
+
const onOpenChange: MenuProps['onOpenChange'] = (keys) => {
|
|
108
|
+
setOpenKeys(keys)
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
const copyTextToClipboard = async (text: string, key: string) => {
|
|
112
|
+
try {
|
|
113
|
+
await navigator.clipboard.writeText(text)
|
|
114
|
+
setIsCopied({ ...isCopied, [key]: true })
|
|
115
|
+
} catch (err) {}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
return (
|
|
119
|
+
<Layout className="layout-warp">
|
|
120
|
+
{Array.isArray(menuList) && menuList.length > 0 && (
|
|
121
|
+
<Sider
|
|
122
|
+
className="layout-side"
|
|
123
|
+
style={{
|
|
124
|
+
backgroundSize: collapsed ? '1800%' : '900%',
|
|
125
|
+
}}
|
|
126
|
+
collapsible
|
|
127
|
+
collapsed={collapsed}
|
|
128
|
+
width={240}
|
|
129
|
+
onCollapse={(value) => {
|
|
130
|
+
onCollapse && onCollapse(value)
|
|
131
|
+
localStorage.setItem('layout_collapsed', value.toString())
|
|
132
|
+
setCollapsed(value)
|
|
133
|
+
}}
|
|
134
|
+
>
|
|
135
|
+
<div
|
|
136
|
+
className="layout-logo"
|
|
137
|
+
onClick={() => {
|
|
138
|
+
window.open('/home')
|
|
139
|
+
}}
|
|
140
|
+
>
|
|
141
|
+
{<img className={`logo-img ${!collapsed ? 'current-logo' : 'hide-logo'}`} src={logo || ''} />}
|
|
142
|
+
{
|
|
143
|
+
<img
|
|
144
|
+
className={`logo-img sub-logo
|
|
145
|
+
${collapsed ? 'current-logo' : 'hide-sub-logo'}`}
|
|
146
|
+
src={subLogo || 'https://cdn.chengfengerlai.com/logo/company-logo/chengfengerlai-white.png'}
|
|
147
|
+
/>
|
|
148
|
+
}
|
|
149
|
+
</div>
|
|
150
|
+
|
|
151
|
+
<div className="layout-menu-container">
|
|
152
|
+
<Menu
|
|
153
|
+
mode="inline"
|
|
154
|
+
openKeys={openKeys}
|
|
155
|
+
onOpenChange={onOpenChange}
|
|
156
|
+
items={menuList}
|
|
157
|
+
onClick={(item): any => {
|
|
158
|
+
onMenuClick && onMenuClick(item)
|
|
159
|
+
}}
|
|
160
|
+
selectedKeys={selectedKeys}
|
|
161
|
+
theme="dark"
|
|
162
|
+
color="red"
|
|
163
|
+
/>
|
|
164
|
+
</div>
|
|
165
|
+
</Sider>
|
|
166
|
+
)}
|
|
167
|
+
|
|
168
|
+
<div className="layout-main">
|
|
169
|
+
{!isHideHeader && (
|
|
170
|
+
<div className="layout-header">
|
|
171
|
+
{appName && (
|
|
172
|
+
<div className="app-name">
|
|
173
|
+
<strong>{appName}</strong>
|
|
174
|
+
</div>
|
|
175
|
+
)}
|
|
176
|
+
|
|
177
|
+
<div className="layout-header-fill" />
|
|
178
|
+
|
|
179
|
+
<div className="layout-header-actions">
|
|
180
|
+
{actions?.map((item, index) => {
|
|
181
|
+
return (
|
|
182
|
+
<div className="actions-item" key={index}>
|
|
183
|
+
{item}
|
|
184
|
+
</div>
|
|
185
|
+
)
|
|
186
|
+
})}
|
|
187
|
+
</div>
|
|
188
|
+
|
|
189
|
+
<Popover
|
|
190
|
+
placement="bottom"
|
|
191
|
+
content={
|
|
192
|
+
<UserCard myWalletInfo={myWalletInfo} MyLoginInfo={MyLoginInfo} amountInfo={amountInfo} customAction={customAction} isCopied={isCopied} copyTextToClipboard={copyTextToClipboard} />
|
|
193
|
+
}
|
|
194
|
+
arrow={false}
|
|
195
|
+
trigger="click"
|
|
196
|
+
onOpenChange={(e) => {
|
|
197
|
+
if (!e) return
|
|
198
|
+
setIsCopied({
|
|
199
|
+
account: false,
|
|
200
|
+
id: false,
|
|
201
|
+
tenantName: false,
|
|
202
|
+
tenantId: false,
|
|
203
|
+
})
|
|
204
|
+
myLoginInfoAction && myLoginInfoAction()
|
|
205
|
+
}}
|
|
206
|
+
>
|
|
207
|
+
<div className="layout-header-user">
|
|
208
|
+
<img className="avatar" src={avatar} />
|
|
209
|
+
<div className="name">{name}</div>
|
|
210
|
+
</div>
|
|
211
|
+
</Popover>
|
|
212
|
+
</div>
|
|
213
|
+
)}
|
|
214
|
+
<div className="layout-content">{props.children}</div>
|
|
215
|
+
</div>
|
|
216
|
+
</Layout>
|
|
217
|
+
)
|
|
218
|
+
}
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
//用户卡片
|
|
2
|
+
.layout-user-card {
|
|
3
|
+
min-width: 182px;
|
|
4
|
+
max-width: 262px;
|
|
5
|
+
|
|
6
|
+
.user-info {
|
|
7
|
+
display: flex;
|
|
8
|
+
|
|
9
|
+
.user-avatarBox{
|
|
10
|
+
width: 72px;
|
|
11
|
+
height: 72px;
|
|
12
|
+
margin-right: 12px;
|
|
13
|
+
position: relative;
|
|
14
|
+
.user-avatar {
|
|
15
|
+
width: 100%;
|
|
16
|
+
height: 100%;
|
|
17
|
+
border-radius: 50%;
|
|
18
|
+
background: rgba(255, 255, 255, 0.3);
|
|
19
|
+
}
|
|
20
|
+
.user-mater{
|
|
21
|
+
position: absolute;
|
|
22
|
+
bottom: 0px;
|
|
23
|
+
left: 0px;
|
|
24
|
+
right: 0px;
|
|
25
|
+
text-align: center;
|
|
26
|
+
background-color: rgba(62, 119, 189 ,0.9);
|
|
27
|
+
width: 50px;
|
|
28
|
+
border-radius: 50px;
|
|
29
|
+
color: #fff;
|
|
30
|
+
transform: scale(0.9);
|
|
31
|
+
margin: auto;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.user-info-right {
|
|
36
|
+
flex: 1;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.name {
|
|
40
|
+
display: inline-block;
|
|
41
|
+
margin-top: 18px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.role-list {
|
|
45
|
+
font-size: 12px;
|
|
46
|
+
line-height: 16px;
|
|
47
|
+
margin-top: 4px;
|
|
48
|
+
|
|
49
|
+
.role-item {
|
|
50
|
+
background: rgba(204, 204, 204, 0.55);
|
|
51
|
+
padding: 2px 8px;
|
|
52
|
+
border-radius: 8px;
|
|
53
|
+
display: inline-block;
|
|
54
|
+
margin-right: 4px;
|
|
55
|
+
margin-bottom: 4px;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.lios-tenant {
|
|
61
|
+
padding: 5px 0px;
|
|
62
|
+
margin: 5px 0px;
|
|
63
|
+
border-top: 1px solid rgba(5, 5, 5, 0.06);
|
|
64
|
+
|
|
65
|
+
.tenant-label {
|
|
66
|
+
font-size: 12px;
|
|
67
|
+
color: rgba(0, 0, 0, 0.5);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.tenant-switch {
|
|
71
|
+
display: flex;
|
|
72
|
+
|
|
73
|
+
.tenant-value {
|
|
74
|
+
flex: 1;
|
|
75
|
+
font-size: 14px;
|
|
76
|
+
color: rgba(0, 0, 0, 0.85);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.tenant-icon {
|
|
80
|
+
width: 40px;
|
|
81
|
+
text-align: center;
|
|
82
|
+
color: rgba(0, 0, 0, 0.45);
|
|
83
|
+
display: flex;
|
|
84
|
+
justify-content: center;
|
|
85
|
+
align-items: center;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.tenant-icon:hover {
|
|
89
|
+
cursor: pointer;
|
|
90
|
+
color: rgba(0, 0, 0, 0.85);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.lios-userInfo {
|
|
96
|
+
padding: 5px 0px;
|
|
97
|
+
margin: 5px 0px;
|
|
98
|
+
border-top: 1px solid rgba(5, 5, 5, 0.06);
|
|
99
|
+
|
|
100
|
+
.li-flex {
|
|
101
|
+
display: flex;
|
|
102
|
+
.lios-keyMare {
|
|
103
|
+
width: 50px;
|
|
104
|
+
}
|
|
105
|
+
.lios-value {
|
|
106
|
+
flex: 1;
|
|
107
|
+
}
|
|
108
|
+
.lios-valueMare {
|
|
109
|
+
flex: 1;
|
|
110
|
+
overflow: hidden;
|
|
111
|
+
text-overflow: ellipsis;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.lios-li {
|
|
117
|
+
line-height: 22px;
|
|
118
|
+
|
|
119
|
+
.lios-key, .lios-keyMare {
|
|
120
|
+
font-size: 12px;
|
|
121
|
+
color: rgba(0, 0, 0, 0.5);
|
|
122
|
+
display: inline-block;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.lios-value, .lios-valueMare {
|
|
126
|
+
padding-left: 8px;
|
|
127
|
+
display: inline-block;
|
|
128
|
+
font-size: 12px;
|
|
129
|
+
color: rgba(0, 0, 0, 0.85);
|
|
130
|
+
|
|
131
|
+
span {
|
|
132
|
+
padding-left: 5px;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
.lios-iconDone {
|
|
136
|
+
width: 40px;
|
|
137
|
+
text-align: center;
|
|
138
|
+
color: rgba(0, 0, 0, 0.45);
|
|
139
|
+
font-size: 10px;
|
|
140
|
+
}
|
|
141
|
+
.lios-icon {
|
|
142
|
+
width: 40px;
|
|
143
|
+
text-align: center;
|
|
144
|
+
color: rgba(0, 0, 0, 0.45);
|
|
145
|
+
transition: all 0.3s;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.lios-icon:hover {
|
|
149
|
+
cursor: pointer;
|
|
150
|
+
color: rgba(0, 0, 0, 0.85);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
.lios-logoutBox{
|
|
155
|
+
display: flex;
|
|
156
|
+
|
|
157
|
+
.lios-logout {
|
|
158
|
+
cursor: pointer;
|
|
159
|
+
display: flex;
|
|
160
|
+
justify-content: center;
|
|
161
|
+
align-items: center;
|
|
162
|
+
color: rgba(0, 0, 0, 0.45);
|
|
163
|
+
border-radius: 2px;
|
|
164
|
+
transition: background 0.3s;
|
|
165
|
+
padding: 4px;
|
|
166
|
+
flex: 1;
|
|
167
|
+
border: 1px solid rgba(5, 5, 5, 0.06);
|
|
168
|
+
margin: 4px 4px;
|
|
169
|
+
&:hover {
|
|
170
|
+
background: rgba(0, 0, 0, 0.03);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.logout-icon {
|
|
174
|
+
width: 16px;
|
|
175
|
+
height: 16px;
|
|
176
|
+
margin-right: 3px;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import {
|
|
3
|
+
SwapOutlined,
|
|
4
|
+
FormOutlined,
|
|
5
|
+
CopyOutlined,
|
|
6
|
+
LogoutOutlined,
|
|
7
|
+
} from "@ant-design/icons";
|
|
8
|
+
import "./index.scss";
|
|
9
|
+
|
|
10
|
+
interface UserType {
|
|
11
|
+
name: string;
|
|
12
|
+
avatar: string;
|
|
13
|
+
roleInfo: any[];
|
|
14
|
+
id: string;
|
|
15
|
+
account: string;
|
|
16
|
+
isMaster: boolean;
|
|
17
|
+
}
|
|
18
|
+
interface CustomType {
|
|
19
|
+
type: string;
|
|
20
|
+
isCompleted: number;
|
|
21
|
+
isAudited: number;
|
|
22
|
+
hrefUrl: string;
|
|
23
|
+
historyAction?: any;
|
|
24
|
+
}
|
|
25
|
+
interface MyWalletInfoType {
|
|
26
|
+
availableCashAmount: string;
|
|
27
|
+
availableAmount: string;
|
|
28
|
+
currency: string;
|
|
29
|
+
}
|
|
30
|
+
interface MyLoginInfoType {
|
|
31
|
+
isAdmin: any;
|
|
32
|
+
}
|
|
33
|
+
interface AmountInfoType {
|
|
34
|
+
residueNum: string;
|
|
35
|
+
currencyCode: string;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
const renderCurrency = (currency: string) => {
|
|
39
|
+
switch (currency) {
|
|
40
|
+
case "CNY":
|
|
41
|
+
return "¥ ";
|
|
42
|
+
case "USD":
|
|
43
|
+
return "$ ";
|
|
44
|
+
case "JPY":
|
|
45
|
+
return "JP¥ ";
|
|
46
|
+
default:
|
|
47
|
+
return "¥ ";
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
export default function UserCard({
|
|
52
|
+
myWalletInfo,
|
|
53
|
+
MyLoginInfo,
|
|
54
|
+
amountInfo,
|
|
55
|
+
customAction,
|
|
56
|
+
isCopied,
|
|
57
|
+
copyTextToClipboard,
|
|
58
|
+
}: any) {
|
|
59
|
+
const { user, tenant, custom, switchTenantUrl, logoutUrl } = (window as any)
|
|
60
|
+
?.g_config;
|
|
61
|
+
|
|
62
|
+
const { name, avatar, roleInfo, id, account, isMaster }: UserType =
|
|
63
|
+
user || {};
|
|
64
|
+
|
|
65
|
+
const { isCompleted, isAudited }: CustomType = custom || {};
|
|
66
|
+
|
|
67
|
+
const { isAdmin }: MyLoginInfoType = MyLoginInfo || {};
|
|
68
|
+
|
|
69
|
+
const { residueNum, currencyCode }: AmountInfoType = amountInfo || {};
|
|
70
|
+
|
|
71
|
+
const UserCard = () => {
|
|
72
|
+
return (
|
|
73
|
+
<div className="layout-user-card">
|
|
74
|
+
<div className="user-info">
|
|
75
|
+
<div className="user-avatarBox">
|
|
76
|
+
<img className="user-avatar" src={avatar}/>
|
|
77
|
+
<div className="user-mater">{isAdmin ? "主账号" : "子账号"}</div>
|
|
78
|
+
</div>
|
|
79
|
+
<div className="user-info-right">
|
|
80
|
+
<span className="name">{name}</span>
|
|
81
|
+
<div className="role-list">
|
|
82
|
+
{roleInfo?.map((i) => (
|
|
83
|
+
<span className="role-item" key={i}>
|
|
84
|
+
{i}
|
|
85
|
+
</span>
|
|
86
|
+
))}
|
|
87
|
+
</div>
|
|
88
|
+
</div>
|
|
89
|
+
</div>
|
|
90
|
+
<div className="lios-userInfo">
|
|
91
|
+
<div className="lios-li li-flex">
|
|
92
|
+
<div className="lios-keyMare">账号ID</div>
|
|
93
|
+
<div className="lios-valueMare" title={id}>{id}</div>
|
|
94
|
+
<div
|
|
95
|
+
className={isCopied?.['id'] ? "lios-iconDone" : "lios-icon"}
|
|
96
|
+
onClick={() => {
|
|
97
|
+
copyTextToClipboard(id, 'id');
|
|
98
|
+
}}
|
|
99
|
+
>
|
|
100
|
+
{isCopied?.['id'] ? "已复制" : <CopyOutlined/>}
|
|
101
|
+
</div>
|
|
102
|
+
</div>
|
|
103
|
+
<div className="lios-li li-flex">
|
|
104
|
+
<div className="lios-keyMare">账号</div>
|
|
105
|
+
<div className="lios-valueMare" title={account}>
|
|
106
|
+
{account}
|
|
107
|
+
</div>
|
|
108
|
+
<div
|
|
109
|
+
className={isCopied?.['account'] ? "lios-iconDone" : "lios-icon"}
|
|
110
|
+
onClick={() => {
|
|
111
|
+
copyTextToClipboard(account, 'account');
|
|
112
|
+
}}
|
|
113
|
+
>
|
|
114
|
+
{isCopied?.['account'] ? "已复制" : <CopyOutlined/>}
|
|
115
|
+
</div>
|
|
116
|
+
</div>
|
|
117
|
+
|
|
118
|
+
<div className="lios-li li-flex">
|
|
119
|
+
<div className="lios-keyMare">租户ID</div>
|
|
120
|
+
<div className="lios-valueMare" title={tenant?.id}>{tenant?.id}</div>
|
|
121
|
+
<div
|
|
122
|
+
className={isCopied?.['tenantId'] ? "lios-iconDone" : "lios-icon"}
|
|
123
|
+
onClick={() => {
|
|
124
|
+
copyTextToClipboard(tenant?.id, 'tenantId');
|
|
125
|
+
}}
|
|
126
|
+
>
|
|
127
|
+
{isCopied?.['tenantId'] ? "已复制" : <CopyOutlined/>}
|
|
128
|
+
</div>
|
|
129
|
+
</div>
|
|
130
|
+
<div className="lios-li li-flex">
|
|
131
|
+
<div className="lios-keyMare">租户</div>
|
|
132
|
+
<div className="lios-valueMare" title={tenant?.name}>{tenant?.name}</div>
|
|
133
|
+
</div>
|
|
134
|
+
</div>
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
<div className="lios-logoutBox">
|
|
138
|
+
<div
|
|
139
|
+
className="lios-logout"
|
|
140
|
+
onClick={() => {
|
|
141
|
+
location.href = switchTenantUrl;
|
|
142
|
+
}}
|
|
143
|
+
>
|
|
144
|
+
<SwapOutlined className="logout-icon"/>
|
|
145
|
+
切换租户
|
|
146
|
+
</div>
|
|
147
|
+
<div
|
|
148
|
+
className="lios-logout"
|
|
149
|
+
onClick={() => {
|
|
150
|
+
location.href = logoutUrl;
|
|
151
|
+
}}
|
|
152
|
+
>
|
|
153
|
+
<LogoutOutlined className="logout-icon"/>
|
|
154
|
+
退出登录
|
|
155
|
+
</div>
|
|
156
|
+
</div>
|
|
157
|
+
</div>
|
|
158
|
+
);
|
|
159
|
+
};
|
|
160
|
+
|
|
161
|
+
return UserCard();
|
|
162
|
+
}
|