cfel-base-components 1.0.6 → 1.0.8
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
CHANGED
|
@@ -90,7 +90,7 @@ export default function LiosLayout(props: LiosLayoutlProps) {
|
|
|
90
90
|
</div >
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
-
const
|
|
93
|
+
const ProductListFunc = () => {
|
|
94
94
|
return <div className='app-list-other'>
|
|
95
95
|
{productList?.map((item) => {
|
|
96
96
|
return <div
|
|
@@ -121,11 +121,18 @@ export default function LiosLayout(props: LiosLayoutlProps) {
|
|
|
121
121
|
</div>
|
|
122
122
|
<div className="interval" />
|
|
123
123
|
<div className="app-list">
|
|
124
|
-
|
|
124
|
+
{
|
|
125
|
+
productList ?
|
|
126
|
+
<Popover placement="bottom" content={<ProductListFunc />} arrow={false} trigger="click">
|
|
127
|
+
<div className="app-list-current">
|
|
128
|
+
{appName}
|
|
129
|
+
</div>
|
|
130
|
+
</Popover> :
|
|
125
131
|
<div className="app-list-current">
|
|
126
132
|
{appName}
|
|
127
133
|
</div>
|
|
128
|
-
|
|
134
|
+
}
|
|
135
|
+
|
|
129
136
|
</div>
|
|
130
137
|
</strong>
|
|
131
138
|
<div className='lios-header-fill' />
|
|
@@ -7,6 +7,7 @@ import { get } from 'lodash';
|
|
|
7
7
|
import { Modal, Button, Divider, Descriptions, Space, message, Avatar } from 'antd';
|
|
8
8
|
import { UserOutlined } from '@ant-design/icons';
|
|
9
9
|
import EditAccountDrawer from './EditAccountDrawer/index'
|
|
10
|
+
import useTableHooks from "../../../hooks/useTableHooks"
|
|
10
11
|
import { timeFormatter, getUrlParams } from '../../../utils';
|
|
11
12
|
import {
|
|
12
13
|
getAccount,
|