cfel-base-components 2.3.3 → 2.3.4-base
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/index.tsx +3 -2
package/package.json
CHANGED
package/src/index.tsx
CHANGED
|
@@ -13,6 +13,7 @@ import request from './apiRequest/config'
|
|
|
13
13
|
import iotRequest from './apiRequest/iotConfig'
|
|
14
14
|
import { hosts } from './apiRequest/hosts'
|
|
15
15
|
import CpcAccount from './components/universal-pages/cpcAccount' //cp列表c账号
|
|
16
|
+
import cpcAccountInfo from './components/universal-pages/cpcAccountInfo' //cpc账号详情
|
|
16
17
|
import CpcRole from './components/universal-pages/cpcRole' //cpc 角色
|
|
17
18
|
import CpcRoleInfo from './components/universal-pages/cpcRoleInfo' //cpc角色详情
|
|
18
19
|
import { getUrlParams, downloadFile, timeFormatter } from './utils/index'
|
|
@@ -31,8 +32,6 @@ export {
|
|
|
31
32
|
Role,
|
|
32
33
|
RoleInfo,
|
|
33
34
|
|
|
34
|
-
CpcAccount,
|
|
35
|
-
|
|
36
35
|
request,
|
|
37
36
|
iotRequest,
|
|
38
37
|
hosts,
|
|
@@ -40,6 +39,8 @@ export {
|
|
|
40
39
|
downloadFile,
|
|
41
40
|
timeFormatter,
|
|
42
41
|
|
|
42
|
+
CpcAccount,
|
|
43
|
+
cpcAccountInfo,
|
|
43
44
|
CpcRole,
|
|
44
45
|
CpcRoleInfo
|
|
45
46
|
}
|