@zgfe/modules-whole 1.0.10-zhongyuan.0 → 1.0.10-zhongyuan.2

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 CHANGED
@@ -1,37 +1,37 @@
1
- # modules-whole
2
-
3
- 整体分析
4
-
5
- ## Getting Started
6
-
7
- Install dependencies,
8
-
9
- ```bash
10
- $ npm i
11
- ```
12
-
13
- Start the dev server,
14
-
15
- ```bash
16
- $ npm start
17
- ```
18
-
19
- Build documentation,
20
-
21
- ```bash
22
- $ npm run docs:build
23
- ```
24
-
25
- Run test,
26
-
27
- ```bash
28
- $ npm test
29
- ```
30
-
31
- Build library via `father-build`,
32
-
33
- ```bash
34
- $ npm run build
35
- ```
36
-
37
- udpate
1
+ # modules-whole
2
+
3
+ 整体分析
4
+
5
+ ## Getting Started
6
+
7
+ Install dependencies,
8
+
9
+ ```bash
10
+ $ npm i
11
+ ```
12
+
13
+ Start the dev server,
14
+
15
+ ```bash
16
+ $ npm start
17
+ ```
18
+
19
+ Build documentation,
20
+
21
+ ```bash
22
+ $ npm run docs:build
23
+ ```
24
+
25
+ Run test,
26
+
27
+ ```bash
28
+ $ npm test
29
+ ```
30
+
31
+ Build library via `father-build`,
32
+
33
+ ```bash
34
+ $ npm run build
35
+ ```
36
+
37
+ udpate
@@ -1,36 +1,36 @@
1
- .eventfilter-box {
2
- .attr-box-show {
3
- margin-top: 4px;
4
- }
5
- > div:nth-child(1) {
6
- display: flex;
7
- padding: 4px 0 4px 24px;
8
- &:hover {
9
- background: #e8efff;
10
- }
11
- .biz-event-select,
12
- .biz-attr-select {
13
- min-width: 208px;
14
- }
15
- .shaixuan {
16
- margin-top: 2px;
17
- color: #9aa1a9;
18
- font-size: 20px !important;
19
- cursor: pointer;
20
- }
21
- .shaixuan:hover {
22
- color: #165dff;
23
- }
24
- .disable {
25
- color: #ccd0d4 !important;
26
- cursor: not-allowed !important;
27
- }
28
- }
29
- &-multiple {
30
- gap: 14px;
31
- .biz-select-handle-input {
32
- width: auto !important;
33
- min-width: 208px;
34
- }
35
- }
36
- }
1
+ .eventfilter-box {
2
+ .attr-box-show {
3
+ margin-top: 4px;
4
+ }
5
+ > div:nth-child(1) {
6
+ display: flex;
7
+ padding: 4px 0 4px 24px;
8
+ &:hover {
9
+ background: #e8efff;
10
+ }
11
+ .biz-event-select,
12
+ .biz-attr-select {
13
+ min-width: 208px;
14
+ }
15
+ .shaixuan {
16
+ margin-top: 2px;
17
+ color: #9aa1a9;
18
+ font-size: 20px !important;
19
+ cursor: pointer;
20
+ }
21
+ .shaixuan:hover {
22
+ color: #165dff;
23
+ }
24
+ .disable {
25
+ color: #ccd0d4 !important;
26
+ cursor: not-allowed !important;
27
+ }
28
+ }
29
+ &-multiple {
30
+ gap: 14px;
31
+ .biz-select-handle-input {
32
+ width: auto !important;
33
+ min-width: 208px;
34
+ }
35
+ }
36
+ }
@@ -1,20 +1,20 @@
1
- @import '~@zgfe/business-lib/es/assets/styles/variable.less';
2
-
3
- .render-content {
4
- &-chart-container {
5
- display: flex;
6
- align-items: center;
7
- justify-content: center;
8
- height: 392px;
9
- padding: @padding-lg;
10
- border: 1px solid @border-color-base;
11
- border-radius: @border-radius-normal;
12
- .echarts-for-react {
13
- width: 100%;
14
- height: 330px !important;
15
- }
16
- }
17
- &-loading {
18
- min-height: 300px;
19
- }
20
- }
1
+ @import '~@zgfe/business-lib/es/assets/styles/variable.less';
2
+
3
+ .render-content {
4
+ &-chart-container {
5
+ display: flex;
6
+ align-items: center;
7
+ justify-content: center;
8
+ height: 392px;
9
+ padding: @padding-lg;
10
+ border: 1px solid @border-color-base;
11
+ border-radius: @border-radius-normal;
12
+ .echarts-for-react {
13
+ width: 100%;
14
+ height: 330px !important;
15
+ }
16
+ }
17
+ &-loading {
18
+ min-height: 300px;
19
+ }
20
+ }
@@ -27,7 +27,8 @@ var SearchPanel = function SearchPanel(props) {
27
27
  disableItemList = _useContext.disableItemList,
28
28
  setSearchData = _useContext.setSearchData;
29
29
  var _useContext2 = useContext(BizGlobalDataContext),
30
- authority = _useContext2.authority;
30
+ authority = _useContext2.authority,
31
+ showProdDownload = _useContext2.showProdDownload;
31
32
  var _useState = useState(props.time || getInitDate(includeToday)),
32
33
  _useState2 = _slicedToArray(_useState, 2),
33
34
  time = _useState2[0],
@@ -154,7 +155,7 @@ var SearchPanel = function SearchPanel(props) {
154
155
  return it.value == item;
155
156
  });
156
157
  })
157
- }), /*#__PURE__*/React.createElement(Button, {
158
+ }), showProdDownload && /*#__PURE__*/React.createElement(Button, {
158
159
  disabled: !authority[100042],
159
160
  onClick: download
160
161
  }, /*#__PURE__*/React.createElement(IconFont, {
@@ -1,22 +1,22 @@
1
- @import '~@zgfe/business-lib/es/assets/styles/variable.less';
2
-
3
- .search-panel {
4
- display: flex;
5
- align-items: center;
6
- justify-content: space-between;
7
- height: 32px;
8
- margin-bottom: 16px;
9
-
10
- &-search-right {
11
- display: flex;
12
- gap: 16px;
13
- &-refresh {
14
- display: flex !important;
15
- gap: 4px;
16
- }
17
- }
18
-
19
- &-select {
20
- width: 112px;
21
- }
22
- }
1
+ @import '~@zgfe/business-lib/es/assets/styles/variable.less';
2
+
3
+ .search-panel {
4
+ display: flex;
5
+ align-items: center;
6
+ justify-content: space-between;
7
+ height: 32px;
8
+ margin-bottom: 16px;
9
+
10
+ &-search-right {
11
+ display: flex;
12
+ gap: 16px;
13
+ &-refresh {
14
+ display: flex !important;
15
+ gap: 4px;
16
+ }
17
+ }
18
+
19
+ &-select {
20
+ width: 112px;
21
+ }
22
+ }
@@ -1,193 +1,193 @@
1
- .event-mi-table {
2
- margin-top: 16px;
3
- &-loading {
4
- min-height: 300px;
5
- }
6
- &-table-header {
7
- display: flex;
8
- align-items: center;
9
- justify-content: space-between;
10
- height: 50px;
11
- margin-bottom: -1px;
12
- padding: 0 12px;
13
- line-height: 50px;
14
- background: #fafafb;
15
- border: 1px solid #e6e7ea;
16
- border-radius: 8px 8px 0 0;
17
- > :nth-child(2) {
18
- display: flex;
19
- > :nth-child(1) {
20
- margin-right: 16px;
21
- }
22
- div {
23
- height: 32px;
24
- padding: 0 16px;
25
- line-height: 32px;
26
- background: #fff;
27
- border: 1px solid #f2f3f4;
28
- border-radius: 4px;
29
- cursor: pointer;
30
- .xiazai1 {
31
- margin-right: 4px;
32
- font-size: 18px !important;
33
- vertical-align: -2px;
34
- }
35
- }
36
- div:hover {
37
- color: #165dff;
38
- background: #e8efff;
39
- border: 1px solid #165dff;
40
- }
41
- div:active {
42
- color: #1454e5;
43
- background: #e8efff;
44
- border: 1px solid #1454e5;
45
- }
46
- }
47
- }
48
- .ant-table {
49
- border-radius: 8px;
50
- }
51
- .sourcepanel-table-header {
52
- overflow: hidden;
53
- border-radius: 8px 8px 0 0;
54
- .ant-table {
55
- max-height: none;
56
- }
57
- }
58
- .ant-pagination {
59
- margin-top: 24px !important;
60
- }
61
- .ant-table
62
- .ant-table-thead
63
- .ant-table-cell.ant-table-column-has-sorters
64
- .ant-table-column-sorters {
65
- justify-content: flex-end !important;
66
- }
67
- .ant-table-cell-with-append {
68
- padding-left: 20px;
69
- .ant-table-row-expand-icon {
70
- position: absolute;
71
- left: 0;
72
- margin-top: 0;
73
- }
74
- }
75
- .tooltip-name-box {
76
- display: flex;
77
- &-market {
78
- // max-width: calc(100% - 20px);
79
- margin-right: 8px;
80
- overflow: hidden;
81
- white-space: nowrap;
82
- text-overflow: ellipsis;
83
- cursor: pointer;
84
- -webkit-line-clamp: 1;
85
- -webkit-box-orient: vertical;
86
- .shoucang {
87
- color: #fd9f41;
88
- font-size: 16px !important;
89
- }
90
- .notshoucang {
91
- opacity: 0;
92
- }
93
- }
94
-
95
- .fuzhi1 {
96
- display: none;
97
- font-size: 16px !important;
98
- }
99
- .fuzhi1:hover {
100
- color: #165dff;
101
- }
102
- }
103
- .tooltip-name-box:hover {
104
- .fuzhi1 {
105
- display: block;
106
- }
107
- }
108
-
109
- &-table-empty {
110
- img {
111
- width: 50px !important;
112
- height: auto;
113
- margin-top: 30px;
114
- margin-bottom: 10px;
115
- }
116
- p {
117
- color: rgba(0, 0, 0, 0.25);
118
- }
119
- }
120
-
121
- &-chart-box {
122
- display: flex;
123
- flex-direction: column;
124
- width: 100%;
125
- &-tooltip {
126
- width: 220px;
127
- margin-bottom: 8px;
128
- color: #67727f;
129
- font-size: 12px;
130
- }
131
- }
132
- }
133
- .event-table-sql-modal {
134
- .ant-modal {
135
- width: 720px !important;
136
- }
137
- .ant-modal-header {
138
- position: relative;
139
- z-index: 1;
140
- height: 82px;
141
- background: transparent;
142
- }
143
- .ant-modal-body {
144
- padding: 0 24px 24px 24px;
145
- }
146
- .ant-modal-close-x {
147
- margin-top: 13px;
148
- margin-right: 8px;
149
- }
150
- img {
151
- width: 100%;
152
- }
153
- .qingchu {
154
- font-weight: 500;
155
- font-size: 22px !important;
156
- }
157
- .modal-bg {
158
- position: absolute;
159
- top: 0;
160
- left: 0;
161
- width: 100%;
162
- height: auto;
163
- }
164
- pre {
165
- margin-bottom: 0;
166
- }
167
- .hljs {
168
- height: 400px;
169
- padding: 16px;
170
- padding-bottom: 0;
171
- background: #fafafb;
172
- border-radius: 8px;
173
- }
174
- .copy-box {
175
- position: absolute;
176
- top: 98px;
177
- right: 40px;
178
- padding: 0 8px;
179
- background: #f2f3f4;
180
- border-radius: 4px;
181
- .fuzhi1 {
182
- margin-right: 8px;
183
- }
184
- }
185
- .copy-box:hover {
186
- color: #165dff;
187
- background: #e8efff;
188
- }
189
- .copy-box:active {
190
- color: #1454e5;
191
- background: #e8efff;
192
- }
193
- }
1
+ .event-mi-table {
2
+ margin-top: 16px;
3
+ &-loading {
4
+ min-height: 300px;
5
+ }
6
+ &-table-header {
7
+ display: flex;
8
+ align-items: center;
9
+ justify-content: space-between;
10
+ height: 50px;
11
+ margin-bottom: -1px;
12
+ padding: 0 12px;
13
+ line-height: 50px;
14
+ background: #fafafb;
15
+ border: 1px solid #e6e7ea;
16
+ border-radius: 8px 8px 0 0;
17
+ > :nth-child(2) {
18
+ display: flex;
19
+ > :nth-child(1) {
20
+ margin-right: 16px;
21
+ }
22
+ div {
23
+ height: 32px;
24
+ padding: 0 16px;
25
+ line-height: 32px;
26
+ background: #fff;
27
+ border: 1px solid #f2f3f4;
28
+ border-radius: 4px;
29
+ cursor: pointer;
30
+ .xiazai1 {
31
+ margin-right: 4px;
32
+ font-size: 18px !important;
33
+ vertical-align: -2px;
34
+ }
35
+ }
36
+ div:hover {
37
+ color: #165dff;
38
+ background: #e8efff;
39
+ border: 1px solid #165dff;
40
+ }
41
+ div:active {
42
+ color: #1454e5;
43
+ background: #e8efff;
44
+ border: 1px solid #1454e5;
45
+ }
46
+ }
47
+ }
48
+ .ant-table {
49
+ border-radius: 8px;
50
+ }
51
+ .sourcepanel-table-header {
52
+ overflow: hidden;
53
+ border-radius: 8px 8px 0 0;
54
+ .ant-table {
55
+ max-height: none;
56
+ }
57
+ }
58
+ .ant-pagination {
59
+ margin-top: 24px !important;
60
+ }
61
+ .ant-table
62
+ .ant-table-thead
63
+ .ant-table-cell.ant-table-column-has-sorters
64
+ .ant-table-column-sorters {
65
+ justify-content: flex-end !important;
66
+ }
67
+ .ant-table-cell-with-append {
68
+ padding-left: 20px;
69
+ .ant-table-row-expand-icon {
70
+ position: absolute;
71
+ left: 0;
72
+ margin-top: 0;
73
+ }
74
+ }
75
+ .tooltip-name-box {
76
+ display: flex;
77
+ &-market {
78
+ // max-width: calc(100% - 20px);
79
+ margin-right: 8px;
80
+ overflow: hidden;
81
+ white-space: nowrap;
82
+ text-overflow: ellipsis;
83
+ cursor: pointer;
84
+ -webkit-line-clamp: 1;
85
+ -webkit-box-orient: vertical;
86
+ .shoucang {
87
+ color: #fd9f41;
88
+ font-size: 16px !important;
89
+ }
90
+ .notshoucang {
91
+ opacity: 0;
92
+ }
93
+ }
94
+
95
+ .fuzhi1 {
96
+ display: none;
97
+ font-size: 16px !important;
98
+ }
99
+ .fuzhi1:hover {
100
+ color: #165dff;
101
+ }
102
+ }
103
+ .tooltip-name-box:hover {
104
+ .fuzhi1 {
105
+ display: block;
106
+ }
107
+ }
108
+
109
+ &-table-empty {
110
+ img {
111
+ width: 50px !important;
112
+ height: auto;
113
+ margin-top: 30px;
114
+ margin-bottom: 10px;
115
+ }
116
+ p {
117
+ color: rgba(0, 0, 0, 0.25);
118
+ }
119
+ }
120
+
121
+ &-chart-box {
122
+ display: flex;
123
+ flex-direction: column;
124
+ width: 100%;
125
+ &-tooltip {
126
+ width: 220px;
127
+ margin-bottom: 8px;
128
+ color: #67727f;
129
+ font-size: 12px;
130
+ }
131
+ }
132
+ }
133
+ .event-table-sql-modal {
134
+ .ant-modal {
135
+ width: 720px !important;
136
+ }
137
+ .ant-modal-header {
138
+ position: relative;
139
+ z-index: 1;
140
+ height: 82px;
141
+ background: transparent;
142
+ }
143
+ .ant-modal-body {
144
+ padding: 0 24px 24px 24px;
145
+ }
146
+ .ant-modal-close-x {
147
+ margin-top: 13px;
148
+ margin-right: 8px;
149
+ }
150
+ img {
151
+ width: 100%;
152
+ }
153
+ .qingchu {
154
+ font-weight: 500;
155
+ font-size: 22px !important;
156
+ }
157
+ .modal-bg {
158
+ position: absolute;
159
+ top: 0;
160
+ left: 0;
161
+ width: 100%;
162
+ height: auto;
163
+ }
164
+ pre {
165
+ margin-bottom: 0;
166
+ }
167
+ .hljs {
168
+ height: 400px;
169
+ padding: 16px;
170
+ padding-bottom: 0;
171
+ background: #fafafb;
172
+ border-radius: 8px;
173
+ }
174
+ .copy-box {
175
+ position: absolute;
176
+ top: 98px;
177
+ right: 40px;
178
+ padding: 0 8px;
179
+ background: #f2f3f4;
180
+ border-radius: 4px;
181
+ .fuzhi1 {
182
+ margin-right: 8px;
183
+ }
184
+ }
185
+ .copy-box:hover {
186
+ color: #165dff;
187
+ background: #e8efff;
188
+ }
189
+ .copy-box:active {
190
+ color: #1454e5;
191
+ background: #e8efff;
192
+ }
193
+ }
@@ -1,71 +1,71 @@
1
- @import '~@zgfe/business-lib/es/assets/styles/inner.less';
2
-
3
- .modules-whole-topbar {
4
- display: flex;
5
- align-items: center;
6
- justify-content: space-between;
7
- padding: 8px 16px;
8
- background-color: #fafafb;
9
-
10
- &-title {
11
- .fanhuiicon {
12
- margin-right: 8px;
13
- color: #5f6085;
14
- cursor: pointer;
15
- }
16
- > span {
17
- color: var(--io-N-, #021429);
18
- font-weight: 500;
19
- font-size: 16px;
20
- font-family: 'PingFang SC';
21
- font-style: normal;
22
- line-height: 20px; /* 125% */
23
- letter-spacing: 0.016px;
24
- }
25
- }
26
-
27
- &-content {
28
- display: flex;
29
- gap: 16px;
30
- justify-content: flex-end;
31
- }
32
-
33
- &-panel {
34
- // .ant-btn {
35
- // color: var(--io-i-, #165dff);
36
- // background: #fff;
37
- // border: 1px solid var(--io-i-, #165dff);
38
- // border-radius: 4px;
39
- // }
40
- // .ant-btn:hover {
41
- // border-color: #165dff;
42
- // }
43
- }
44
- &-scene {
45
- // .ant-btn {
46
- // color: var(--io-i-, #165dff);
47
- // background: #fff;
48
- // border: 1px solid var(--io-i-, #165dff);
49
- // border-radius: 4px;
50
- // }
51
- // .ant-btn:hover {
52
- // border-color: #165dff;
53
- // }
54
- }
55
- &-platform {
56
- .biz-select-handle {
57
- min-width: 132px;
58
- }
59
-
60
- .biz-select-handle-input {
61
- background: var(--io-W, #fff);
62
- border: 1px solid var(--io-n-05, #f2f3f4);
63
- border-radius: 4px;
64
- }
65
- }
66
-
67
- &-right {
68
- display: flex;
69
- gap: 16px;
70
- }
71
- }
1
+ @import '~@zgfe/business-lib/es/assets/styles/inner.less';
2
+
3
+ .modules-whole-topbar {
4
+ display: flex;
5
+ align-items: center;
6
+ justify-content: space-between;
7
+ padding: 8px 16px;
8
+ background-color: #fafafb;
9
+
10
+ &-title {
11
+ .fanhuiicon {
12
+ margin-right: 8px;
13
+ color: #5f6085;
14
+ cursor: pointer;
15
+ }
16
+ > span {
17
+ color: var(--io-N-, #021429);
18
+ font-weight: 500;
19
+ font-size: 16px;
20
+ font-family: 'PingFang SC';
21
+ font-style: normal;
22
+ line-height: 20px; /* 125% */
23
+ letter-spacing: 0.016px;
24
+ }
25
+ }
26
+
27
+ &-content {
28
+ display: flex;
29
+ gap: 16px;
30
+ justify-content: flex-end;
31
+ }
32
+
33
+ &-panel {
34
+ // .ant-btn {
35
+ // color: var(--io-i-, #165dff);
36
+ // background: #fff;
37
+ // border: 1px solid var(--io-i-, #165dff);
38
+ // border-radius: 4px;
39
+ // }
40
+ // .ant-btn:hover {
41
+ // border-color: #165dff;
42
+ // }
43
+ }
44
+ &-scene {
45
+ // .ant-btn {
46
+ // color: var(--io-i-, #165dff);
47
+ // background: #fff;
48
+ // border: 1px solid var(--io-i-, #165dff);
49
+ // border-radius: 4px;
50
+ // }
51
+ // .ant-btn:hover {
52
+ // border-color: #165dff;
53
+ // }
54
+ }
55
+ &-platform {
56
+ .biz-select-handle {
57
+ min-width: 132px;
58
+ }
59
+
60
+ .biz-select-handle-input {
61
+ background: var(--io-W, #fff);
62
+ border: 1px solid var(--io-n-05, #f2f3f4);
63
+ border-radius: 4px;
64
+ }
65
+ }
66
+
67
+ &-right {
68
+ display: flex;
69
+ gap: 16px;
70
+ }
71
+ }
@@ -1,7 +1,7 @@
1
- .whole-content {
2
- &-options {
3
- display: flex;
4
- justify-content: flex-end;
5
- margin-bottom: 16px;
6
- }
7
- }
1
+ .whole-content {
2
+ &-options {
3
+ display: flex;
4
+ justify-content: flex-end;
5
+ margin-bottom: 16px;
6
+ }
7
+ }
@@ -1,33 +1,33 @@
1
- /*滚动条凹槽的颜色,还可以设置边框属性 */
2
- ::-webkit-scrollbar-track-piece {
3
- background-color: #fff;
4
- -webkit-border-radius: 10px;
5
- -moz-border-radius: 10px;
6
- border-radius: 10px;
7
- }
8
-
9
- /*滚动条的宽度*/
10
- ::-webkit-scrollbar {
11
- width: 10px;
12
- height: 10px;
13
- }
14
-
15
- /*滚动条的设置*/
16
- ::-webkit-scrollbar-thumb {
17
- background-color: #cacdd4;
18
- background-clip: padding-box;
19
- border: 2px solid #fff;
20
- -webkit-border-radius: 10px;
21
- -moz-border-radius: 10px;
22
- border-radius: 10px;
23
- }
24
-
25
- /*滚动条鼠标移上去*/
26
- ::-webkit-scrollbar-thumb:hover {
27
- // background-color: #bbb;
28
- }
29
-
30
- ::-webkit-scrollbar-track-piece {
31
- width: 6px;
32
- height: 6px;
33
- }
1
+ /*滚动条凹槽的颜色,还可以设置边框属性 */
2
+ ::-webkit-scrollbar-track-piece {
3
+ background-color: #fff;
4
+ -webkit-border-radius: 10px;
5
+ -moz-border-radius: 10px;
6
+ border-radius: 10px;
7
+ }
8
+
9
+ /*滚动条的宽度*/
10
+ ::-webkit-scrollbar {
11
+ width: 10px;
12
+ height: 10px;
13
+ }
14
+
15
+ /*滚动条的设置*/
16
+ ::-webkit-scrollbar-thumb {
17
+ background-color: #cacdd4;
18
+ background-clip: padding-box;
19
+ border: 2px solid #fff;
20
+ -webkit-border-radius: 10px;
21
+ -moz-border-radius: 10px;
22
+ border-radius: 10px;
23
+ }
24
+
25
+ /*滚动条鼠标移上去*/
26
+ ::-webkit-scrollbar-thumb:hover {
27
+ // background-color: #bbb;
28
+ }
29
+
30
+ ::-webkit-scrollbar-track-piece {
31
+ width: 6px;
32
+ height: 6px;
33
+ }
@@ -1,39 +1,39 @@
1
- .whole-module-container {
2
- .biz-layout-top {
3
- padding: 0 16px 16px;
4
- .biz-user-group-header {
5
- .ant-space-item {
6
- color: #5f6085;
7
- }
8
- }
9
- }
10
- .ant-spin-container {
11
- width: 100%;
12
- height: 100%;
13
- }
14
-
15
- .biz-select-option:not(.biz-select-option-multiple),
16
- .biz-attr-select-option {
17
- &.active {
18
- background: @primary-color !important;
19
- }
20
- }
21
-
22
- // 设置下拉框最大高度
23
- .biz-select-overlay {
24
- max-height: 300px;
25
- }
26
-
27
- .biz-layout-panel-content {
28
- height: auto;
29
- }
30
-
31
- .biz-layout-collapse-container {
32
- align-items: center;
33
- height: 24px;
34
- }
35
-
36
- .biz-layout-content {
37
- padding: 16px;
38
- }
39
- }
1
+ .whole-module-container {
2
+ .biz-layout-top {
3
+ padding: 0 16px 16px;
4
+ .biz-user-group-header {
5
+ .ant-space-item {
6
+ color: #5f6085;
7
+ }
8
+ }
9
+ }
10
+ .ant-spin-container {
11
+ width: 100%;
12
+ height: 100%;
13
+ }
14
+
15
+ .biz-select-option:not(.biz-select-option-multiple),
16
+ .biz-attr-select-option {
17
+ &.active {
18
+ background: @primary-color !important;
19
+ }
20
+ }
21
+
22
+ // 设置下拉框最大高度
23
+ .biz-select-overlay {
24
+ max-height: 300px;
25
+ }
26
+
27
+ .biz-layout-panel-content {
28
+ height: auto;
29
+ }
30
+
31
+ .biz-layout-collapse-container {
32
+ align-items: center;
33
+ height: 24px;
34
+ }
35
+
36
+ .biz-layout-content {
37
+ padding: 16px;
38
+ }
39
+ }
@@ -1,41 +1,41 @@
1
- .modules-whole-top-panel {
2
- &-form-whole {
3
- margin-bottom: 0;
4
- & .ant-form-item-label {
5
- padding-left: 24px !important;
6
- font-weight: 500;
7
- }
8
- &-select {
9
- width: 208px;
10
- margin-left: 24px;
11
- .biz-select-handle-input {
12
- padding-left: 12px;
13
- }
14
- }
15
- .ant-form-item-row .ant-form-item-control {
16
- margin-bottom: 24px;
17
- padding: 4px 0;
18
- }
19
- .ant-form-item-explain-error {
20
- padding-left: 24px;
21
- }
22
- }
23
- &-form-botton-box {
24
- display: flex;
25
- justify-content: flex-end;
26
- margin-right: 24px;
27
- > :nth-child(1) {
28
- margin-right: 16px;
29
- }
30
- }
31
- }
32
- .hoverable-form-item {
33
- .ant-form-item-control {
34
- &:hover {
35
- background: #e8efff !important;
36
- }
37
- }
38
- }
39
- .event---1 .ant-form-item-label {
40
- padding-bottom: 4px !important;
41
- }
1
+ .modules-whole-top-panel {
2
+ &-form-whole {
3
+ margin-bottom: 0;
4
+ & .ant-form-item-label {
5
+ padding-left: 24px !important;
6
+ font-weight: 500;
7
+ }
8
+ &-select {
9
+ width: 208px;
10
+ margin-left: 24px;
11
+ .biz-select-handle-input {
12
+ padding-left: 12px;
13
+ }
14
+ }
15
+ .ant-form-item-row .ant-form-item-control {
16
+ margin-bottom: 24px;
17
+ padding: 4px 0;
18
+ }
19
+ .ant-form-item-explain-error {
20
+ padding-left: 24px;
21
+ }
22
+ }
23
+ &-form-botton-box {
24
+ display: flex;
25
+ justify-content: flex-end;
26
+ margin-right: 24px;
27
+ > :nth-child(1) {
28
+ margin-right: 16px;
29
+ }
30
+ }
31
+ }
32
+ .hoverable-form-item {
33
+ .ant-form-item-control {
34
+ &:hover {
35
+ background: #e8efff !important;
36
+ }
37
+ }
38
+ }
39
+ .event---1 .ant-form-item-label {
40
+ padding-bottom: 4px !important;
41
+ }
@@ -1,9 +1,9 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="margin: auto; background: rgb(255, 255, 255); display: block; shape-rendering: auto;" width="80px" height="80px" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid">
3
- <circle cx="50" cy="50" r="32" stroke-width="4" stroke="#165dff" stroke-dasharray="50.26548245743669 50.26548245743669" fill="none" stroke-linecap="round">
4
- <animateTransform attributeName="transform" type="rotate" dur="1s" repeatCount="indefinite" keyTimes="0;1" values="0 50 50;360 50 50"></animateTransform>
5
- </circle>
6
- <circle cx="50" cy="50" r="27" stroke-width="4" stroke="#85adfc" stroke-dasharray="42.411500823462205 42.411500823462205" stroke-dashoffset="42.411500823462205" fill="none" stroke-linecap="round">
7
- <animateTransform attributeName="transform" type="rotate" dur="1s" repeatCount="indefinite" keyTimes="0;1" values="0 50 50;-360 50 50"></animateTransform>
8
- </circle>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="margin: auto; background: rgb(255, 255, 255); display: block; shape-rendering: auto;" width="80px" height="80px" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid">
3
+ <circle cx="50" cy="50" r="32" stroke-width="4" stroke="#165dff" stroke-dasharray="50.26548245743669 50.26548245743669" fill="none" stroke-linecap="round">
4
+ <animateTransform attributeName="transform" type="rotate" dur="1s" repeatCount="indefinite" keyTimes="0;1" values="0 50 50;360 50 50"></animateTransform>
5
+ </circle>
6
+ <circle cx="50" cy="50" r="27" stroke-width="4" stroke="#85adfc" stroke-dasharray="42.411500823462205 42.411500823462205" stroke-dashoffset="42.411500823462205" fill="none" stroke-linecap="round">
7
+ <animateTransform attributeName="transform" type="rotate" dur="1s" repeatCount="indefinite" keyTimes="0;1" values="0 50 50;-360 50 50"></animateTransform>
8
+ </circle>
9
9
  <!-- [ldio] generated by https://loading.io/ --></svg>
@@ -1,62 +1,62 @@
1
- @import '~@zgfe/business-lib/es/assets/styles/variable.less';
2
- .event-form-data {
3
- &-table-td {
4
- padding: 0 !important;
5
-
6
- &-show {
7
- display: flex;
8
- align-items: center;
9
- justify-content: center;
10
- min-width: 60px;
11
- height: 48px;
12
- cursor: pointer;
13
- span {
14
- width: 10px;
15
- height: 10px;
16
- border-radius: 50%;
17
- cursor: pointer;
18
- }
19
- }
20
-
21
- &-name {
22
- display: flex;
23
- align-items: center;
24
- .bsicon {
25
- margin-right: 4px;
26
- color: #fd9f41;
27
- }
28
-
29
- &-content {
30
- display: inline-block;
31
- max-width: 300px;
32
- overflow: hidden;
33
- white-space: nowrap;
34
- text-overflow: ellipsis;
35
- cursor: pointer;
36
- }
37
- }
38
-
39
- &-link {
40
- display: flex;
41
- justify-content: flex-end;
42
- &:hover {
43
- .a-yanjingkai {
44
- display: block;
45
- }
46
- }
47
- .a-yanjingkai {
48
- display: none;
49
- margin-right: 10px;
50
- }
51
- }
52
- &-link:not(.not-to-detail) {
53
- cursor: pointer;
54
- &:hover {
55
- color: @primary-color;
56
- }
57
- }
58
- }
59
- &-table-whole-data {
60
- text-align: right !important;
61
- }
62
- }
1
+ @import '~@zgfe/business-lib/es/assets/styles/variable.less';
2
+ .event-form-data {
3
+ &-table-td {
4
+ padding: 0 !important;
5
+
6
+ &-show {
7
+ display: flex;
8
+ align-items: center;
9
+ justify-content: center;
10
+ min-width: 60px;
11
+ height: 48px;
12
+ cursor: pointer;
13
+ span {
14
+ width: 10px;
15
+ height: 10px;
16
+ border-radius: 50%;
17
+ cursor: pointer;
18
+ }
19
+ }
20
+
21
+ &-name {
22
+ display: flex;
23
+ align-items: center;
24
+ .bsicon {
25
+ margin-right: 4px;
26
+ color: #fd9f41;
27
+ }
28
+
29
+ &-content {
30
+ display: inline-block;
31
+ max-width: 300px;
32
+ overflow: hidden;
33
+ white-space: nowrap;
34
+ text-overflow: ellipsis;
35
+ cursor: pointer;
36
+ }
37
+ }
38
+
39
+ &-link {
40
+ display: flex;
41
+ justify-content: flex-end;
42
+ &:hover {
43
+ .a-yanjingkai {
44
+ display: block;
45
+ }
46
+ }
47
+ .a-yanjingkai {
48
+ display: none;
49
+ margin-right: 10px;
50
+ }
51
+ }
52
+ &-link:not(.not-to-detail) {
53
+ cursor: pointer;
54
+ &:hover {
55
+ color: @primary-color;
56
+ }
57
+ }
58
+ }
59
+ &-table-whole-data {
60
+ text-align: right !important;
61
+ }
62
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zgfe/modules-whole",
3
- "version": "1.0.10-zhongyuan.0",
3
+ "version": "1.0.10-zhongyuan.2",
4
4
  "module": "es/index.js",
5
5
  "typings": "es/index.d.ts",
6
6
  "private": false,
@@ -43,7 +43,7 @@
43
43
  "@types/lodash": "^4.14.191",
44
44
  "@umijs/fabric": "^2.8.1",
45
45
  "@umijs/test": "^3.0.5",
46
- "@zgfe/business-lib": "1.2.70-hxd.1",
46
+ "@zgfe/business-lib": "1.2.70-hxd.31",
47
47
  "antd": "^4.22.6",
48
48
  "dumi": "^1.1.0",
49
49
  "echarts": "^5.3.2",
@@ -56,7 +56,7 @@
56
56
  "react": "^16.12.0 || ^17.0.0",
57
57
  "yorkie": "^2.0.0"
58
58
  },
59
- "gitHead": "ed71978c89b950986c5757c94b5e83754ee7cabd",
59
+ "gitHead": "4a9493ae185782fb0067433ec37f7a738b07d215",
60
60
  "gitHooks": {
61
61
  "pre-commit": "lint-staged"
62
62
  }