cfel-base-components 2.6.7 → 2.6.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
|
@@ -30,10 +30,11 @@ import './index.scss'
|
|
|
30
30
|
import DocumentEntry from '../../document-entry';
|
|
31
31
|
|
|
32
32
|
export interface AccountProps {
|
|
33
|
-
historyAction: any
|
|
33
|
+
historyAction: any;
|
|
34
|
+
DocumentDom?: any;
|
|
34
35
|
}
|
|
35
36
|
|
|
36
|
-
export default function Account({ historyAction }: AccountProps) {
|
|
37
|
+
export default function Account({ historyAction , DocumentDom}: AccountProps) {
|
|
37
38
|
const searchFormRef: any = useRef()
|
|
38
39
|
|
|
39
40
|
const [ModalOpen, setModalOpen] = useState(false)
|
|
@@ -265,7 +266,9 @@ export default function Account({ historyAction }: AccountProps) {
|
|
|
265
266
|
productCode === 'puhui-console' ? (
|
|
266
267
|
<>
|
|
267
268
|
账号列表
|
|
268
|
-
<DocumentEntry documentId={'pc8tgn179k0aky1f'} />
|
|
269
|
+
{/* <DocumentEntry documentId={'pc8tgn179k0aky1f'} /> */}
|
|
270
|
+
<DocumentDom></DocumentDom>
|
|
271
|
+
|
|
269
272
|
</>
|
|
270
273
|
) : (
|
|
271
274
|
'账号列表'
|
|
@@ -20,9 +20,10 @@ import QrCodeModal from './QrCodeModal'
|
|
|
20
20
|
import JsonViewDialog from './JsonViewDialog'
|
|
21
21
|
import './index.scss'
|
|
22
22
|
export interface RoleProps {
|
|
23
|
-
historyAction: any
|
|
23
|
+
historyAction: any;
|
|
24
|
+
DocumentDom?: any;
|
|
24
25
|
}
|
|
25
|
-
export default function Role({ historyAction }: RoleProps) {
|
|
26
|
+
export default function Role({ historyAction , DocumentDom }: RoleProps) {
|
|
26
27
|
const searchFormRef: any = useRef()
|
|
27
28
|
|
|
28
29
|
const productCode = window.g_config.productCode
|
|
@@ -303,7 +304,8 @@ export default function Role({ historyAction }: RoleProps) {
|
|
|
303
304
|
productCode === 'puhui-console' ? (
|
|
304
305
|
<>
|
|
305
306
|
角色列表
|
|
306
|
-
<DocumentEntry documentId={'ovsivik3nchylskc'} />
|
|
307
|
+
{/* <DocumentEntry documentId={'ovsivik3nchylskc'} /> */}
|
|
308
|
+
<DocumentDom></DocumentDom>
|
|
307
309
|
</>
|
|
308
310
|
) : (
|
|
309
311
|
'角色列表'
|