@zgfe/modules-settings 1.2.11 → 1.2.13-alpha.1
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/README.md +33 -33
- package/es/components/pageLoading/index.less +7 -7
- package/es/components/settingTabs/index.less +47 -47
- package/es/constants/api.d.ts +1 -20
- package/es/constants/api.js +2 -24
- package/es/constants/icons/demo.css +539 -539
- package/es/constants/icons/demo_index.html +8537 -8537
- package/es/constants/icons/iconfont.css +1467 -1467
- package/es/constants/icons/iconfont.json +2550 -2550
- package/es/global.d.ts +4 -4
- package/es/modules/appSettings/dataAccessFilter/index.less +5 -5
- package/es/modules/appSettings/member/index.less +18 -18
- package/es/modules/appSettings/virtualSource/styles/index.less +28 -28
- package/es/modules/appSettings/virtualSource/styles/table.less +51 -51
- package/es/modules/companySetting/appList/index.js +60 -3
- package/es/modules/companySetting/appList/index.less +100 -100
- package/es/modules/companySetting/cost/index.js +2 -2
- package/es/modules/companySetting/cost/index.less +31 -31
- package/es/modules/companySetting/edit/styles/authConfig.less +3 -3
- package/es/modules/companySetting/edit/styles/authGroup.less +10 -10
- package/es/modules/companySetting/edit/styles/authModule.less +82 -82
- package/es/modules/companySetting/edit/styles/user.less +54 -54
- package/es/modules/companySetting/edit/styles/userGroup.less +44 -44
- package/es/modules/companySetting/index.js +256 -75
- package/es/modules/companySetting/index.less +24 -63
- package/es/modules/companySetting/info/index.less +35 -35
- package/es/modules/companySetting/operationLog/index.less +27 -27
- package/es/modules/companySetting/style/common.less +68 -68
- package/es/modules/companySetting/style/reset.less +117 -117
- package/es/modules/companySetting/user/index.js +264 -167
- package/es/modules/companySetting/user/index.less +162 -264
- package/es/modules/companySetting/user/invite.d.ts +8 -3
- package/es/modules/companySetting/user/invite.js +173 -249
- package/es/modules/companySetting/userGroup/groupItem.js +1 -1
- package/es/modules/companySetting/userGroup/index.less +6 -6
- package/es/modules/companySetting/userGroup/style/authConfigDetail.less +44 -44
- package/es/modules/companySetting/userGroup/style/index.less +79 -79
- package/es/modules/companySetting/virtualApp/panels/list.js +1 -1
- package/es/modules/companySetting/virtualApp/styles/config.less +37 -37
- package/es/modules/companySetting/virtualApp/styles/index.less +21 -21
- package/es/modules/companySetting/virtualApp/styles/list.less +28 -28
- package/es/modules/companySetting/virtualApp/styles/sourceItem.less +33 -33
- package/es/modules/companySetting/virtualApp/styles/table.less +44 -44
- package/es/modules/companySetting/wechatBinding/index.js +1 -1
- package/es/modules/companySetting/wechatBinding/index.less +48 -48
- package/es/modules/personalSetting/securityLog/index.less +10 -10
- package/es/modules/personalSetting/styles/unbinding.less +73 -73
- package/es/modules/systemSetting/notice/configItem/index.less +15 -15
- package/es/modules/systemSetting/notice/edit/index.less +26 -26
- package/es/types/companySetting.d.ts +3 -28
- package/es/utils/util.d.ts +0 -23
- package/es/utils/util.js +0 -77
- package/package.json +4 -4
- package/es/modules/companySetting/department/index.d.ts +0 -7
- package/es/modules/companySetting/department/index.js +0 -356
- package/es/modules/companySetting/department/index.less +0 -104
- package/es/modules/companySetting/role/index.d.ts +0 -6
- package/es/modules/companySetting/role/index.js +0 -561
- package/es/modules/companySetting/role/index.less +0 -160
- package/es/requests/department.d.ts +0 -15
- package/es/requests/department.js +0 -68
- package/es/requests/role.d.ts +0 -16
- package/es/requests/role.js +0 -100
|
@@ -1,79 +1,79 @@
|
|
|
1
|
-
.company-user-group {
|
|
2
|
-
height: 100%;
|
|
3
|
-
padding: 0;
|
|
4
|
-
overflow: auto;
|
|
5
|
-
color: #2f3f57;
|
|
6
|
-
background: #fff;
|
|
7
|
-
.company-setting-user-group {
|
|
8
|
-
padding: 0;
|
|
9
|
-
}
|
|
10
|
-
.group-model-content {
|
|
11
|
-
display: flex;
|
|
12
|
-
flex-wrap: wrap;
|
|
13
|
-
}
|
|
14
|
-
.create-model {
|
|
15
|
-
display: flex;
|
|
16
|
-
align-items: center;
|
|
17
|
-
justify-content: center;
|
|
18
|
-
width: 266px;
|
|
19
|
-
height: 200px;
|
|
20
|
-
margin: 6px;
|
|
21
|
-
border: 1px dashed #dadada;
|
|
22
|
-
cursor: pointer;
|
|
23
|
-
}
|
|
24
|
-
.group-item-model {
|
|
25
|
-
width: 266px;
|
|
26
|
-
height: 200px;
|
|
27
|
-
margin: 6px;
|
|
28
|
-
padding: 15px;
|
|
29
|
-
color: #a0a3aa;
|
|
30
|
-
border: 1px solid #dadada;
|
|
31
|
-
h3 {
|
|
32
|
-
color: #354052;
|
|
33
|
-
font-weight: 500;
|
|
34
|
-
font-size: 18px;
|
|
35
|
-
}
|
|
36
|
-
.group-item-blue {
|
|
37
|
-
color: #0ea1eb;
|
|
38
|
-
cursor: pointer;
|
|
39
|
-
&:hover {
|
|
40
|
-
text-decoration: underline;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
.icon-share1,
|
|
44
|
-
.icon-jiesuo {
|
|
45
|
-
font-size: 16px;
|
|
46
|
-
}
|
|
47
|
-
.group-item-detail {
|
|
48
|
-
margin-top: 10px;
|
|
49
|
-
}
|
|
50
|
-
.date-time-text {
|
|
51
|
-
margin-top: 10px;
|
|
52
|
-
color: #bcbec2;
|
|
53
|
-
}
|
|
54
|
-
.btn-group {
|
|
55
|
-
display: flex;
|
|
56
|
-
align-items: center;
|
|
57
|
-
justify-content: space-between;
|
|
58
|
-
margin-top: 20px;
|
|
59
|
-
.c-button {
|
|
60
|
-
height: 34px;
|
|
61
|
-
padding: 0 4em;
|
|
62
|
-
color: #0ea1eb;
|
|
63
|
-
font-size: 14px;
|
|
64
|
-
line-height: 34px;
|
|
65
|
-
border-color: #0ea1eb;
|
|
66
|
-
}
|
|
67
|
-
.delete-btn {
|
|
68
|
-
color: #f55858;
|
|
69
|
-
cursor: pointer;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.item-detail-member {
|
|
76
|
-
width: 270px;
|
|
77
|
-
line-height: 20px;
|
|
78
|
-
word-break: break-word;
|
|
79
|
-
}
|
|
1
|
+
.company-user-group {
|
|
2
|
+
height: 100%;
|
|
3
|
+
padding: 0;
|
|
4
|
+
overflow: auto;
|
|
5
|
+
color: #2f3f57;
|
|
6
|
+
background: #fff;
|
|
7
|
+
.company-setting-user-group {
|
|
8
|
+
padding: 0;
|
|
9
|
+
}
|
|
10
|
+
.group-model-content {
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-wrap: wrap;
|
|
13
|
+
}
|
|
14
|
+
.create-model {
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
justify-content: center;
|
|
18
|
+
width: 266px;
|
|
19
|
+
height: 200px;
|
|
20
|
+
margin: 6px;
|
|
21
|
+
border: 1px dashed #dadada;
|
|
22
|
+
cursor: pointer;
|
|
23
|
+
}
|
|
24
|
+
.group-item-model {
|
|
25
|
+
width: 266px;
|
|
26
|
+
height: 200px;
|
|
27
|
+
margin: 6px;
|
|
28
|
+
padding: 15px;
|
|
29
|
+
color: #a0a3aa;
|
|
30
|
+
border: 1px solid #dadada;
|
|
31
|
+
h3 {
|
|
32
|
+
color: #354052;
|
|
33
|
+
font-weight: 500;
|
|
34
|
+
font-size: 18px;
|
|
35
|
+
}
|
|
36
|
+
.group-item-blue {
|
|
37
|
+
color: #0ea1eb;
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
&:hover {
|
|
40
|
+
text-decoration: underline;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
.icon-share1,
|
|
44
|
+
.icon-jiesuo {
|
|
45
|
+
font-size: 16px;
|
|
46
|
+
}
|
|
47
|
+
.group-item-detail {
|
|
48
|
+
margin-top: 10px;
|
|
49
|
+
}
|
|
50
|
+
.date-time-text {
|
|
51
|
+
margin-top: 10px;
|
|
52
|
+
color: #bcbec2;
|
|
53
|
+
}
|
|
54
|
+
.btn-group {
|
|
55
|
+
display: flex;
|
|
56
|
+
align-items: center;
|
|
57
|
+
justify-content: space-between;
|
|
58
|
+
margin-top: 20px;
|
|
59
|
+
.c-button {
|
|
60
|
+
height: 34px;
|
|
61
|
+
padding: 0 4em;
|
|
62
|
+
color: #0ea1eb;
|
|
63
|
+
font-size: 14px;
|
|
64
|
+
line-height: 34px;
|
|
65
|
+
border-color: #0ea1eb;
|
|
66
|
+
}
|
|
67
|
+
.delete-btn {
|
|
68
|
+
color: #f55858;
|
|
69
|
+
cursor: pointer;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.item-detail-member {
|
|
76
|
+
width: 270px;
|
|
77
|
+
line-height: 20px;
|
|
78
|
+
word-break: break-word;
|
|
79
|
+
}
|
|
@@ -152,7 +152,7 @@ var VirtualApp = function VirtualApp(props) {
|
|
|
152
152
|
className: "virtual-app-list-item empty-data"
|
|
153
153
|
}, "\u6682\u65E0\u6570\u636E"))), /*#__PURE__*/React.createElement(BizDialog, {
|
|
154
154
|
title: "\u5220\u9664\u865A\u62DF\u5E94\u7528",
|
|
155
|
-
|
|
155
|
+
visible: deleteDialogShow,
|
|
156
156
|
closable: true,
|
|
157
157
|
onOk: toDelete,
|
|
158
158
|
onCancel: function onCancel() {
|
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
.virtual-app-update-panel {
|
|
2
|
-
width: 100%;
|
|
3
|
-
height: 100%;
|
|
4
|
-
min-height: 120px;
|
|
5
|
-
padding: 0;
|
|
6
|
-
overflow-y: auto;
|
|
7
|
-
.virtual-app-update-head {
|
|
8
|
-
margin-bottom: 20px;
|
|
9
|
-
color: #354052;
|
|
10
|
-
font-size: 18px;
|
|
11
|
-
line-height: 32px;
|
|
12
|
-
.btn-group {
|
|
13
|
-
float: right;
|
|
14
|
-
}
|
|
15
|
-
.btn-update-submit {
|
|
16
|
-
margin-left: 10px;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
.real-app-list-box {
|
|
20
|
-
width: 100%;
|
|
21
|
-
min-width: 660px;
|
|
22
|
-
.source-app-name {
|
|
23
|
-
display: inline-block;
|
|
24
|
-
width: 354px;
|
|
25
|
-
margin-left: 10px;
|
|
26
|
-
}
|
|
27
|
-
.source-app-events-num {
|
|
28
|
-
display: inline-block;
|
|
29
|
-
margin-left: 10px;
|
|
30
|
-
}
|
|
31
|
-
.real-app-list-body {
|
|
32
|
-
.empty-data {
|
|
33
|
-
line-height: 47px;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
1
|
+
.virtual-app-update-panel {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
min-height: 120px;
|
|
5
|
+
padding: 0;
|
|
6
|
+
overflow-y: auto;
|
|
7
|
+
.virtual-app-update-head {
|
|
8
|
+
margin-bottom: 20px;
|
|
9
|
+
color: #354052;
|
|
10
|
+
font-size: 18px;
|
|
11
|
+
line-height: 32px;
|
|
12
|
+
.btn-group {
|
|
13
|
+
float: right;
|
|
14
|
+
}
|
|
15
|
+
.btn-update-submit {
|
|
16
|
+
margin-left: 10px;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
.real-app-list-box {
|
|
20
|
+
width: 100%;
|
|
21
|
+
min-width: 660px;
|
|
22
|
+
.source-app-name {
|
|
23
|
+
display: inline-block;
|
|
24
|
+
width: 354px;
|
|
25
|
+
margin-left: 10px;
|
|
26
|
+
}
|
|
27
|
+
.source-app-events-num {
|
|
28
|
+
display: inline-block;
|
|
29
|
+
margin-left: 10px;
|
|
30
|
+
}
|
|
31
|
+
.real-app-list-body {
|
|
32
|
+
.empty-data {
|
|
33
|
+
line-height: 47px;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
.virtual-app-index {
|
|
2
|
-
height: 100%;
|
|
3
|
-
padding: 0;
|
|
4
|
-
overflow-y: auto;
|
|
5
|
-
}
|
|
6
|
-
.virtual-app-create {
|
|
7
|
-
margin-bottom: 20px;
|
|
8
|
-
.btn-cancel,
|
|
9
|
-
.btn-submit {
|
|
10
|
-
margin-left: 10px;
|
|
11
|
-
}
|
|
12
|
-
.c-button {
|
|
13
|
-
height: 34px;
|
|
14
|
-
line-height: 34px;
|
|
15
|
-
}
|
|
16
|
-
.c-input.c-size-normal {
|
|
17
|
-
height: 34px;
|
|
18
|
-
line-height: 34px;
|
|
19
|
-
vertical-align: top;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
1
|
+
.virtual-app-index {
|
|
2
|
+
height: 100%;
|
|
3
|
+
padding: 0;
|
|
4
|
+
overflow-y: auto;
|
|
5
|
+
}
|
|
6
|
+
.virtual-app-create {
|
|
7
|
+
margin-bottom: 20px;
|
|
8
|
+
.btn-cancel,
|
|
9
|
+
.btn-submit {
|
|
10
|
+
margin-left: 10px;
|
|
11
|
+
}
|
|
12
|
+
.c-button {
|
|
13
|
+
height: 34px;
|
|
14
|
+
line-height: 34px;
|
|
15
|
+
}
|
|
16
|
+
.c-input.c-size-normal {
|
|
17
|
+
height: 34px;
|
|
18
|
+
line-height: 34px;
|
|
19
|
+
vertical-align: top;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
.virtual-app-list-box {
|
|
2
|
-
width: 792px;
|
|
3
|
-
.app-name {
|
|
4
|
-
width: 200px;
|
|
5
|
-
}
|
|
6
|
-
.app-id {
|
|
7
|
-
width: 170px;
|
|
8
|
-
}
|
|
9
|
-
.data-source {
|
|
10
|
-
width: 200px;
|
|
11
|
-
}
|
|
12
|
-
.actions {
|
|
13
|
-
width: 130px;
|
|
14
|
-
.btn-edit {
|
|
15
|
-
margin-right: 40px;
|
|
16
|
-
color: #0ea1eb;
|
|
17
|
-
cursor: pointer;
|
|
18
|
-
}
|
|
19
|
-
.btn-delete {
|
|
20
|
-
color: #75787d;
|
|
21
|
-
cursor: pointer;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
.virtual-app-list-item {
|
|
25
|
-
height: 47px;
|
|
26
|
-
line-height: 47px;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
1
|
+
.virtual-app-list-box {
|
|
2
|
+
width: 792px;
|
|
3
|
+
.app-name {
|
|
4
|
+
width: 200px;
|
|
5
|
+
}
|
|
6
|
+
.app-id {
|
|
7
|
+
width: 170px;
|
|
8
|
+
}
|
|
9
|
+
.data-source {
|
|
10
|
+
width: 200px;
|
|
11
|
+
}
|
|
12
|
+
.actions {
|
|
13
|
+
width: 130px;
|
|
14
|
+
.btn-edit {
|
|
15
|
+
margin-right: 40px;
|
|
16
|
+
color: #0ea1eb;
|
|
17
|
+
cursor: pointer;
|
|
18
|
+
}
|
|
19
|
+
.btn-delete {
|
|
20
|
+
color: #75787d;
|
|
21
|
+
cursor: pointer;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
.virtual-app-list-item {
|
|
25
|
+
height: 47px;
|
|
26
|
+
line-height: 47px;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
.virtual-app-source-item {
|
|
2
|
-
display: block;
|
|
3
|
-
margin-left: 0;
|
|
4
|
-
.source-app-item {
|
|
5
|
-
display: block;
|
|
6
|
-
height: 47px;
|
|
7
|
-
margin-left: 0;
|
|
8
|
-
line-height: 47px;
|
|
9
|
-
.source-app-name {
|
|
10
|
-
color: #354052;
|
|
11
|
-
font-size: 14px;
|
|
12
|
-
}
|
|
13
|
-
.source-app-events-num {
|
|
14
|
-
color: #0ea1eb;
|
|
15
|
-
.click-box {
|
|
16
|
-
cursor: pointer;
|
|
17
|
-
}
|
|
18
|
-
.click-box.disable {
|
|
19
|
-
cursor: no-drop;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
.source-transfer-item {
|
|
24
|
-
display: block;
|
|
25
|
-
height: 310px;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
#selfTransfer {
|
|
30
|
-
.ant-transfer-list-body-with-search {
|
|
31
|
-
padding-top: 0px;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
1
|
+
.virtual-app-source-item {
|
|
2
|
+
display: block;
|
|
3
|
+
margin-left: 0;
|
|
4
|
+
.source-app-item {
|
|
5
|
+
display: block;
|
|
6
|
+
height: 47px;
|
|
7
|
+
margin-left: 0;
|
|
8
|
+
line-height: 47px;
|
|
9
|
+
.source-app-name {
|
|
10
|
+
color: #354052;
|
|
11
|
+
font-size: 14px;
|
|
12
|
+
}
|
|
13
|
+
.source-app-events-num {
|
|
14
|
+
color: #0ea1eb;
|
|
15
|
+
.click-box {
|
|
16
|
+
cursor: pointer;
|
|
17
|
+
}
|
|
18
|
+
.click-box.disable {
|
|
19
|
+
cursor: no-drop;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
.source-transfer-item {
|
|
24
|
+
display: block;
|
|
25
|
+
height: 310px;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
#selfTransfer {
|
|
30
|
+
.ant-transfer-list-body-with-search {
|
|
31
|
+
padding-top: 0px;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
.virtual-app-table-box {
|
|
2
|
-
display: flex;
|
|
3
|
-
flex-direction: column;
|
|
4
|
-
// width: 100%;
|
|
5
|
-
font-size: 14px;
|
|
6
|
-
border: 1px solid #dadada;
|
|
7
|
-
.virtual-app-table-title {
|
|
8
|
-
display: flex;
|
|
9
|
-
flex-shrink: 0;
|
|
10
|
-
box-sizing: border-box;
|
|
11
|
-
height: 32px;
|
|
12
|
-
padding: 0 20px;
|
|
13
|
-
color: #565656;
|
|
14
|
-
font-size: 0;
|
|
15
|
-
line-height: 32px;
|
|
16
|
-
background: #e6e6e6;
|
|
17
|
-
> div,
|
|
18
|
-
> span {
|
|
19
|
-
display: inline-block;
|
|
20
|
-
margin-left: 10px;
|
|
21
|
-
font-size: 14px;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
.virtual-app-table-body {
|
|
25
|
-
min-height: 47px;
|
|
26
|
-
padding: 0 20px;
|
|
27
|
-
.empty-dataz {
|
|
28
|
-
text-align: center;
|
|
29
|
-
}
|
|
30
|
-
> div,
|
|
31
|
-
> span {
|
|
32
|
-
border-bottom: 1px solid #eeeeee;
|
|
33
|
-
> div,
|
|
34
|
-
> span {
|
|
35
|
-
display: inline-block;
|
|
36
|
-
margin-left: 10px;
|
|
37
|
-
font-size: 14px;
|
|
38
|
-
}
|
|
39
|
-
&:last-child {
|
|
40
|
-
border: none;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
}
|
|
1
|
+
.virtual-app-table-box {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
// width: 100%;
|
|
5
|
+
font-size: 14px;
|
|
6
|
+
border: 1px solid #dadada;
|
|
7
|
+
.virtual-app-table-title {
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-shrink: 0;
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
height: 32px;
|
|
12
|
+
padding: 0 20px;
|
|
13
|
+
color: #565656;
|
|
14
|
+
font-size: 0;
|
|
15
|
+
line-height: 32px;
|
|
16
|
+
background: #e6e6e6;
|
|
17
|
+
> div,
|
|
18
|
+
> span {
|
|
19
|
+
display: inline-block;
|
|
20
|
+
margin-left: 10px;
|
|
21
|
+
font-size: 14px;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
.virtual-app-table-body {
|
|
25
|
+
min-height: 47px;
|
|
26
|
+
padding: 0 20px;
|
|
27
|
+
.empty-dataz {
|
|
28
|
+
text-align: center;
|
|
29
|
+
}
|
|
30
|
+
> div,
|
|
31
|
+
> span {
|
|
32
|
+
border-bottom: 1px solid #eeeeee;
|
|
33
|
+
> div,
|
|
34
|
+
> span {
|
|
35
|
+
display: inline-block;
|
|
36
|
+
margin-left: 10px;
|
|
37
|
+
font-size: 14px;
|
|
38
|
+
}
|
|
39
|
+
&:last-child {
|
|
40
|
+
border: none;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -115,7 +115,7 @@ var Cost = function Cost(props) {
|
|
|
115
115
|
pagination: false
|
|
116
116
|
}), /*#__PURE__*/React.createElement(BizDialog, {
|
|
117
117
|
title: "\u89E3\u9664\u7ED1\u5B9A",
|
|
118
|
-
|
|
118
|
+
visible: showDelDialog,
|
|
119
119
|
closable: true,
|
|
120
120
|
okText: "\u89E3\u9664\u7ED1\u5B9A",
|
|
121
121
|
cancelText: "\u6682\u4E0D\u89E3\u9664",
|
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
.company-setting-wechat-binding {
|
|
2
|
-
min-height: 300px;
|
|
3
|
-
max-height: 100%;
|
|
4
|
-
padding: 0;
|
|
5
|
-
overflow: auto;
|
|
6
|
-
.wechat-title {
|
|
7
|
-
display: flex;
|
|
8
|
-
justify-content: space-between;
|
|
9
|
-
margin-bottom: 20px;
|
|
10
|
-
line-height: 16px;
|
|
11
|
-
h4 {
|
|
12
|
-
font-weight: normal;
|
|
13
|
-
font-size: 16px;
|
|
14
|
-
}
|
|
15
|
-
a {
|
|
16
|
-
color: #00a0ea;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
.wechat-account {
|
|
20
|
-
img {
|
|
21
|
-
width: 20px;
|
|
22
|
-
height: 20px;
|
|
23
|
-
}
|
|
24
|
-
.wechat-name {
|
|
25
|
-
display: inline-block;
|
|
26
|
-
width: 80px;
|
|
27
|
-
margin-left: 10px;
|
|
28
|
-
overflow: hidden;
|
|
29
|
-
text-align: left;
|
|
30
|
-
text-overflow: ellipsis;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
.untied-wechat {
|
|
34
|
-
color: #00a0ea;
|
|
35
|
-
cursor: pointer;
|
|
36
|
-
}
|
|
37
|
-
.c-dialog .c-dialog-content {
|
|
38
|
-
padding: 20px;
|
|
39
|
-
color: #858585;
|
|
40
|
-
font-size: 14px;
|
|
41
|
-
.c-input {
|
|
42
|
-
color: initial;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
.c-data-grid {
|
|
46
|
-
border-radius: 0;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
1
|
+
.company-setting-wechat-binding {
|
|
2
|
+
min-height: 300px;
|
|
3
|
+
max-height: 100%;
|
|
4
|
+
padding: 0;
|
|
5
|
+
overflow: auto;
|
|
6
|
+
.wechat-title {
|
|
7
|
+
display: flex;
|
|
8
|
+
justify-content: space-between;
|
|
9
|
+
margin-bottom: 20px;
|
|
10
|
+
line-height: 16px;
|
|
11
|
+
h4 {
|
|
12
|
+
font-weight: normal;
|
|
13
|
+
font-size: 16px;
|
|
14
|
+
}
|
|
15
|
+
a {
|
|
16
|
+
color: #00a0ea;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
.wechat-account {
|
|
20
|
+
img {
|
|
21
|
+
width: 20px;
|
|
22
|
+
height: 20px;
|
|
23
|
+
}
|
|
24
|
+
.wechat-name {
|
|
25
|
+
display: inline-block;
|
|
26
|
+
width: 80px;
|
|
27
|
+
margin-left: 10px;
|
|
28
|
+
overflow: hidden;
|
|
29
|
+
text-align: left;
|
|
30
|
+
text-overflow: ellipsis;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
.untied-wechat {
|
|
34
|
+
color: #00a0ea;
|
|
35
|
+
cursor: pointer;
|
|
36
|
+
}
|
|
37
|
+
.c-dialog .c-dialog-content {
|
|
38
|
+
padding: 20px;
|
|
39
|
+
color: #858585;
|
|
40
|
+
font-size: 14px;
|
|
41
|
+
.c-input {
|
|
42
|
+
color: initial;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
.c-data-grid {
|
|
46
|
+
border-radius: 0;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
.security-log-page {
|
|
2
|
-
&-spin {
|
|
3
|
-
padding-top: 200px;
|
|
4
|
-
text-align: center;
|
|
5
|
-
}
|
|
6
|
-
&-header {
|
|
7
|
-
margin-bottom: 30px;
|
|
8
|
-
text-align: right;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
1
|
+
.security-log-page {
|
|
2
|
+
&-spin {
|
|
3
|
+
padding-top: 200px;
|
|
4
|
+
text-align: center;
|
|
5
|
+
}
|
|
6
|
+
&-header {
|
|
7
|
+
margin-bottom: 30px;
|
|
8
|
+
text-align: right;
|
|
9
|
+
}
|
|
10
|
+
}
|