@zgfe/modules-settings 1.2.10 → 1.2.11
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/es/constants/api.d.ts +20 -0
- package/es/constants/api.js +25 -1
- package/es/constants/icons/demo.css +0 -0
- package/es/constants/icons/demo_index.html +0 -0
- package/es/constants/icons/iconfont.css +0 -0
- package/es/constants/icons/iconfont.js +0 -0
- package/es/constants/icons/iconfont.json +0 -0
- package/es/constants/icons/iconfont.ttf +0 -0
- package/es/constants/icons/iconfont.woff +0 -0
- package/es/constants/icons/iconfont.woff2 +0 -0
- package/es/modules/appSettings/member/index.js +1 -1
- package/es/modules/companySetting/appList/index.js +1 -1
- package/es/modules/companySetting/cost/index.js +2 -2
- package/es/modules/companySetting/cost/index.less +0 -0
- package/es/modules/companySetting/department/index.d.ts +7 -0
- package/es/modules/companySetting/department/index.js +356 -0
- package/es/modules/companySetting/department/index.less +104 -0
- package/es/modules/companySetting/index.js +76 -257
- package/es/modules/companySetting/index.less +39 -0
- package/es/modules/companySetting/role/index.d.ts +6 -0
- package/es/modules/companySetting/role/index.js +561 -0
- package/es/modules/companySetting/role/index.less +160 -0
- package/es/modules/companySetting/user/index.js +167 -264
- package/es/modules/companySetting/user/index.less +112 -10
- package/es/modules/companySetting/user/invite.d.ts +3 -8
- package/es/modules/companySetting/user/invite.js +249 -173
- package/es/modules/companySetting/userGroup/groupItem.js +1 -1
- package/es/modules/companySetting/virtualApp/panels/list.js +1 -1
- package/es/modules/companySetting/wechatBinding/index.js +1 -1
- package/es/modules/companySetting/wechatBinding/index.less +0 -0
- package/es/requests/department.d.ts +15 -0
- package/es/requests/department.js +68 -0
- package/es/requests/role.d.ts +16 -0
- package/es/requests/role.js +100 -0
- package/es/types/companySetting.d.ts +28 -2
- package/es/utils/util.d.ts +23 -0
- package/es/utils/util.js +77 -0
- package/package.json +4 -4
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
@import './../../../constants/icons/iconfont.css';
|
|
2
|
+
|
|
3
|
+
.role-list {
|
|
4
|
+
.ant-form-item {
|
|
5
|
+
.ant-form-item-control-input {
|
|
6
|
+
width: 392px;
|
|
7
|
+
height: 32px;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.ant-input {
|
|
12
|
+
border-color: @background-color-base !important;
|
|
13
|
+
|
|
14
|
+
&:focus {
|
|
15
|
+
border-color: @primary-color !important;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.ant-table-cell {
|
|
20
|
+
height: 50px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.ant-table-row-indent + .ant-table-row-expand-icon {
|
|
24
|
+
margin-top: 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
height: 100%;
|
|
28
|
+
padding: 0;
|
|
29
|
+
overflow: auto;
|
|
30
|
+
|
|
31
|
+
.app-list-head {
|
|
32
|
+
display: flex;
|
|
33
|
+
align-items: center;
|
|
34
|
+
justify-content: space-between;
|
|
35
|
+
|
|
36
|
+
> div {
|
|
37
|
+
color: var(--io-n, #021429);
|
|
38
|
+
font-weight: 500;
|
|
39
|
+
font-size: 16px;
|
|
40
|
+
font-family: PingFang SC;
|
|
41
|
+
font-style: normal;
|
|
42
|
+
line-height: 24px;
|
|
43
|
+
/* 150% */
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.platform-icons {
|
|
48
|
+
display: flex;
|
|
49
|
+
align-items: center;
|
|
50
|
+
justify-content: flex-start;
|
|
51
|
+
width: 100%;
|
|
52
|
+
|
|
53
|
+
span {
|
|
54
|
+
margin-right: 10px;
|
|
55
|
+
color: #cfcfcf;
|
|
56
|
+
font-size: 16px;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.role-list-content {
|
|
61
|
+
margin-top: 16px;
|
|
62
|
+
|
|
63
|
+
.c-grid-cell,
|
|
64
|
+
.c-grid-header-cell {
|
|
65
|
+
text-align: left !important;
|
|
66
|
+
border: none;
|
|
67
|
+
border-bottom: 1px solid #d1d1d1;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.c-grid-cell {
|
|
71
|
+
text-align: left !important;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.c-grid-body .c-grid-row:nth-child(2n) {
|
|
75
|
+
background: #fff !important;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.app-name {
|
|
79
|
+
cursor: pointer;
|
|
80
|
+
|
|
81
|
+
&:hover {
|
|
82
|
+
color: #00a0ea;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.operating {
|
|
87
|
+
display: flex;
|
|
88
|
+
gap: 16px;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.role-dialog-content {
|
|
94
|
+
.ant-form-item {
|
|
95
|
+
.ant-form-item-control-input {
|
|
96
|
+
width: 484px;
|
|
97
|
+
height: 32px;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.ant-input {
|
|
102
|
+
border-color: @background-color-base !important;
|
|
103
|
+
|
|
104
|
+
&:focus {
|
|
105
|
+
border-color: @primary-color !important;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
color: #5f6085;
|
|
110
|
+
|
|
111
|
+
.ant-form-item-label {
|
|
112
|
+
width: 80px;
|
|
113
|
+
text-align: right;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.menuCode-map {
|
|
117
|
+
.ant-form-item-label::before {
|
|
118
|
+
display: inline-block;
|
|
119
|
+
margin-right: 4px;
|
|
120
|
+
color: #ff4d4f;
|
|
121
|
+
font-size: 14px;
|
|
122
|
+
font-family: SimSun, sans-serif;
|
|
123
|
+
line-height: 1;
|
|
124
|
+
content: '*';
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.ant-form-item-control-input {
|
|
128
|
+
width: 100%;
|
|
129
|
+
height: auto;
|
|
130
|
+
padding: 14px 16px;
|
|
131
|
+
border: 1px solid var(--io-n-1, #e6e7ea);
|
|
132
|
+
border-radius: 4px;
|
|
133
|
+
|
|
134
|
+
.ant-form-item {
|
|
135
|
+
margin-bottom: 8px;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.ant-input {
|
|
139
|
+
border-color: @background-color-base !important;
|
|
140
|
+
|
|
141
|
+
&:focus {
|
|
142
|
+
border-color: @primary-color !important;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.ant-form-item-control-input {
|
|
147
|
+
width: 484px;
|
|
148
|
+
padding: 0;
|
|
149
|
+
border: none;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.is-encryption {
|
|
155
|
+
.ant-form-item-label {
|
|
156
|
+
width: 116px;
|
|
157
|
+
text-align: right;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|