@zgfe/modules-dm 1.0.56-zhongyuan.1 → 1.0.56-zhongyuan.6
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/modules/dataManage/collectionAttributeList.js +9 -0
- package/es/modules/dataManage/collectionEventList.js +4 -1
- package/es/modules/dataManage/components/creditPop/index.d.ts +2 -1
- package/es/modules/dataManage/components/creditPop/index.less +121 -121
- package/es/modules/dataManage/components/depositPop/index.d.ts +2 -1
- package/es/modules/dataManage/components/depositPop/index.less +115 -115
- package/es/modules/dataManage/components/developModal/index.css +36 -36
- package/es/modules/dataManage/components/developModal/index.d.ts +2 -1
- package/es/modules/dataManage/components/developModal/index.less +36 -36
- package/es/modules/dataManage/components/editTxt/index.d.ts +1 -3
- package/es/modules/dataManage/components/editTxt/index.less +44 -44
- package/es/modules/dataManage/components/eventFilter/styles/index.less +72 -72
- package/es/modules/dataManage/components/importAttrDialog/demo/index.d.ts +2 -1
- package/es/modules/dataManage/components/importAttrDialog/index.js +3 -1
- package/es/modules/dataManage/components/importAttrDialog/styles/index.less +90 -90
- package/es/modules/dataManage/components/importMetaDialog/demo/index.d.ts +2 -1
- package/es/modules/dataManage/components/importMetaDialog/index.js +3 -1
- package/es/modules/dataManage/components/importMetaDialog/styles/index.less +91 -91
- package/es/modules/dataManage/components/tablePlus.js +2 -2
- package/es/modules/dataManage/demo/index.d.ts +2 -1
- package/es/modules/dataManage/detailedData/DetailedDataForm.d.ts +1 -1
- package/es/modules/dataManage/detailedData/index.js +1 -1
- package/es/modules/dataManage/styles/detailed.less +74 -74
- package/es/modules/dataManage/styles/index.less +1195 -1195
- package/es/modules/dataMap/component/drawerAdd.js +4 -1
- package/es/modules/dataMap/component/leftTree.js +7 -2
- package/es/modules/dataMap/component/rightDetail.js +19 -5
- package/es/modules/dataMap/demo/index.d.ts +2 -1
- package/es/modules/dataMap/index.d.ts +2 -1
- package/es/modules/dataMap/mapSetting.js +11 -3
- package/es/modules/dataPlan/styles/index.less +316 -316
- package/es/modules/dataReal/demo/index.d.ts +2 -1
- package/es/modules/dataReal/index1.js +37 -5
- package/es/modules/dataReal/table.js +3 -1
- package/package.json +4 -2
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
.detailed-data {
|
|
2
|
-
&-header {
|
|
3
|
-
display: flex;
|
|
4
|
-
justify-content: space-between;
|
|
5
|
-
padding: 16px 0;
|
|
6
|
-
|
|
7
|
-
&-left {
|
|
8
|
-
display: flex;
|
|
9
|
-
gap: 0 10px;
|
|
10
|
-
align-items: center;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
&-right {
|
|
14
|
-
display: flex;
|
|
15
|
-
gap: 16px;
|
|
16
|
-
|
|
17
|
-
button span {
|
|
18
|
-
margin: 0 4px;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
&-operate {
|
|
24
|
-
display: flex;
|
|
25
|
-
gap: 16px;
|
|
26
|
-
justify-content: flex-start;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
&-input-340 {
|
|
30
|
-
width: 340px !important;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
&-disabled,
|
|
34
|
-
&-disabled:hover,
|
|
35
|
-
&-disabled:focus {
|
|
36
|
-
cursor: not-allowed !important;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.ant-btn-primary[disabled],
|
|
40
|
-
.ant-btn-primary[disabled]:hover,
|
|
41
|
-
.ant-btn-primary[disabled]:focus,
|
|
42
|
-
.ant-btn-primary[disabled]:active {
|
|
43
|
-
color: #fff;
|
|
44
|
-
background: var(--io-i2-, #d0dfff);
|
|
45
|
-
border: 1px solid #d0dfff;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
&-modal {
|
|
49
|
-
.ant-modal-body {
|
|
50
|
-
padding: 24px !important;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.ant-modal-confirm-body .ant-modal-confirm-title {
|
|
54
|
-
color: #000;
|
|
55
|
-
font-size: 24px;
|
|
56
|
-
line-height: 24px;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.ant-modal-confirm-body .ant-modal-confirm-content {
|
|
60
|
-
margin-top: 0;
|
|
61
|
-
padding-top: 24px;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.ant-modal-close {
|
|
65
|
-
padding-top: 8px;
|
|
66
|
-
padding-right: 6px;
|
|
67
|
-
|
|
68
|
-
&-x {
|
|
69
|
-
color: #021429;
|
|
70
|
-
font-size: 24px;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
1
|
+
.detailed-data {
|
|
2
|
+
&-header {
|
|
3
|
+
display: flex;
|
|
4
|
+
justify-content: space-between;
|
|
5
|
+
padding: 16px 0;
|
|
6
|
+
|
|
7
|
+
&-left {
|
|
8
|
+
display: flex;
|
|
9
|
+
gap: 0 10px;
|
|
10
|
+
align-items: center;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
&-right {
|
|
14
|
+
display: flex;
|
|
15
|
+
gap: 16px;
|
|
16
|
+
|
|
17
|
+
button span {
|
|
18
|
+
margin: 0 4px;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&-operate {
|
|
24
|
+
display: flex;
|
|
25
|
+
gap: 16px;
|
|
26
|
+
justify-content: flex-start;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&-input-340 {
|
|
30
|
+
width: 340px !important;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&-disabled,
|
|
34
|
+
&-disabled:hover,
|
|
35
|
+
&-disabled:focus {
|
|
36
|
+
cursor: not-allowed !important;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.ant-btn-primary[disabled],
|
|
40
|
+
.ant-btn-primary[disabled]:hover,
|
|
41
|
+
.ant-btn-primary[disabled]:focus,
|
|
42
|
+
.ant-btn-primary[disabled]:active {
|
|
43
|
+
color: #fff;
|
|
44
|
+
background: var(--io-i2-, #d0dfff);
|
|
45
|
+
border: 1px solid #d0dfff;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&-modal {
|
|
49
|
+
.ant-modal-body {
|
|
50
|
+
padding: 24px !important;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.ant-modal-confirm-body .ant-modal-confirm-title {
|
|
54
|
+
color: #000;
|
|
55
|
+
font-size: 24px;
|
|
56
|
+
line-height: 24px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.ant-modal-confirm-body .ant-modal-confirm-content {
|
|
60
|
+
margin-top: 0;
|
|
61
|
+
padding-top: 24px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.ant-modal-close {
|
|
65
|
+
padding-top: 8px;
|
|
66
|
+
padding-right: 6px;
|
|
67
|
+
|
|
68
|
+
&-x {
|
|
69
|
+
color: #021429;
|
|
70
|
+
font-size: 24px;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|