@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.
Files changed (35) hide show
  1. package/es/modules/dataManage/collectionAttributeList.js +9 -0
  2. package/es/modules/dataManage/collectionEventList.js +4 -1
  3. package/es/modules/dataManage/components/creditPop/index.d.ts +2 -1
  4. package/es/modules/dataManage/components/creditPop/index.less +121 -121
  5. package/es/modules/dataManage/components/depositPop/index.d.ts +2 -1
  6. package/es/modules/dataManage/components/depositPop/index.less +115 -115
  7. package/es/modules/dataManage/components/developModal/index.css +36 -36
  8. package/es/modules/dataManage/components/developModal/index.d.ts +2 -1
  9. package/es/modules/dataManage/components/developModal/index.less +36 -36
  10. package/es/modules/dataManage/components/editTxt/index.d.ts +1 -3
  11. package/es/modules/dataManage/components/editTxt/index.less +44 -44
  12. package/es/modules/dataManage/components/eventFilter/styles/index.less +72 -72
  13. package/es/modules/dataManage/components/importAttrDialog/demo/index.d.ts +2 -1
  14. package/es/modules/dataManage/components/importAttrDialog/index.js +3 -1
  15. package/es/modules/dataManage/components/importAttrDialog/styles/index.less +90 -90
  16. package/es/modules/dataManage/components/importMetaDialog/demo/index.d.ts +2 -1
  17. package/es/modules/dataManage/components/importMetaDialog/index.js +3 -1
  18. package/es/modules/dataManage/components/importMetaDialog/styles/index.less +91 -91
  19. package/es/modules/dataManage/components/tablePlus.js +2 -2
  20. package/es/modules/dataManage/demo/index.d.ts +2 -1
  21. package/es/modules/dataManage/detailedData/DetailedDataForm.d.ts +1 -1
  22. package/es/modules/dataManage/detailedData/index.js +1 -1
  23. package/es/modules/dataManage/styles/detailed.less +74 -74
  24. package/es/modules/dataManage/styles/index.less +1195 -1195
  25. package/es/modules/dataMap/component/drawerAdd.js +4 -1
  26. package/es/modules/dataMap/component/leftTree.js +7 -2
  27. package/es/modules/dataMap/component/rightDetail.js +19 -5
  28. package/es/modules/dataMap/demo/index.d.ts +2 -1
  29. package/es/modules/dataMap/index.d.ts +2 -1
  30. package/es/modules/dataMap/mapSetting.js +11 -3
  31. package/es/modules/dataPlan/styles/index.less +316 -316
  32. package/es/modules/dataReal/demo/index.d.ts +2 -1
  33. package/es/modules/dataReal/index1.js +37 -5
  34. package/es/modules/dataReal/table.js +3 -1
  35. package/package.json +4 -2
@@ -309,6 +309,15 @@ var CollectionAttributeList = function CollectionAttributeList(props) {
309
309
  }));
310
310
  }
311
311
  }
312
+ }, {
313
+ title: '数据上报',
314
+ dataIndex: 'lastInsertTime',
315
+ width: 100,
316
+ render: function render(text, record, index) {
317
+ return /*#__PURE__*/React.createElement("div", {
318
+ className: "attr-name"
319
+ }, text ? '有' : '无');
320
+ }
312
321
  }].concat(_toConsumableArray(source == 'event' ? [{
313
322
  title: '属性值别名',
314
323
  width: 120,
@@ -687,7 +687,10 @@ var CollectionEventList = function CollectionEventList(props) {
687
687
  }, /*#__PURE__*/React.createElement(Typography.Link, null, /*#__PURE__*/React.createElement(Button, {
688
688
  shape: "round",
689
689
  className: "button ".concat(!authority[1700636282] ? 'disabled' : '')
690
- }, "\u66F4\u591A\u64CD\u4F5C ", /*#__PURE__*/React.createElement(DownOutlined, null)))), route && route.query && route.query.type == 1 && (/*#__PURE__*/React.createElement("div", {
690
+ }, "\u66F4\u591A\u64CD\u4F5C", ' ', /*#__PURE__*/React.createElement(DownOutlined, {
691
+ onPointerEnterCapture: undefined,
692
+ onPointerLeaveCapture: undefined
693
+ })))), route && route.query && route.query.type == 1 && (/*#__PURE__*/React.createElement("div", {
691
694
  className: "".concat(classPrefix, "-pop-btn"),
692
695
  onClick: function onClick() {
693
696
  setIsShowCreditPop(true);
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  import './index.less';
2
3
  declare const PageLoading: (props: {
3
4
  onClose: () => void;
4
- }) => JSX.Element;
5
+ }) => React.JSX.Element;
5
6
  export default PageLoading;
@@ -1,121 +1,121 @@
1
- .creditPopBg {
2
- position: fixed;
3
- top: 0;
4
- right: 0;
5
- bottom: 0;
6
- left: 0;
7
- z-index: 10000;
8
- display: flex;
9
- align-items: center;
10
- justify-content: center;
11
- background: rgba(2, 20, 41, 0.8);
12
- .creditPopHeader {
13
- display: flex;
14
- align-items: center;
15
- justify-content: space-between;
16
- height: 82px;
17
- padding-right: 24px;
18
- padding-left: 24px;
19
- .creditPopHeaderTitle {
20
- color: #000;
21
- font-weight: 500;
22
- font-size: 24px;
23
- font-family: PingFang SC;
24
- font-style: normal;
25
- line-height: normal;
26
- }
27
- }
28
- .creditPopContent {
29
- width: 960px;
30
- background-color: #fff;
31
- border-radius: 10px;
32
- }
33
- .creditPopPngBox {
34
- display: flex;
35
- align-items: center;
36
- justify-content: space-between;
37
- padding-right: 24px;
38
- padding-left: 24px;
39
- .creditPopPng {
40
- width: 208px;
41
- height: 266px;
42
- overflow: hidden;
43
- background-color: #f6fbfe;
44
- background-repeat: no-repeat;
45
- background-position: top right;
46
- background-size: contain;
47
- border-radius: 8px;
48
- }
49
- .creditPopPng01 {
50
- background-image: url('./imgs/png01.png');
51
- }
52
- .creditPopPng02 {
53
- background-image: url('./imgs/png02.png');
54
- }
55
- .creditPopPng03 {
56
- background-image: url('./imgs/png03.png');
57
- }
58
- .creditPopPng04 {
59
- background-image: url('./imgs/png04.png');
60
- }
61
- }
62
- .creditPopTxtBox {
63
- display: flex;
64
- // align-items: center;
65
- flex-direction: column;
66
- justify-content: space-between;
67
- padding: 24px;
68
- .creditPopTxt {
69
- display: flex;
70
- align-items: center;
71
- color: var(--io-n-8, #354354);
72
- font-weight: 400;
73
- font-size: 14px;
74
- font-family: PingFang SC;
75
- font-style: normal;
76
- line-height: normal;
77
- line-height: 20px;
78
- }
79
- .creditPopClickIcon {
80
- margin-right: 8px;
81
- margin-left: 16px;
82
- color: #165dff;
83
- cursor: pointer;
84
- }
85
- .creditPopClickTxt {
86
- color: #165dff;
87
- cursor: pointer;
88
- }
89
- .creditPopTxt::before {
90
- display: inline-block;
91
- margin: 7px;
92
- padding: 3px;
93
- background-color: #354354;
94
- border-radius: 3px;
95
- content: '';
96
- }
97
- }
98
- .creditPopFooter {
99
- display: flex;
100
- align-items: center;
101
- justify-content: flex-end;
102
- height: 80px;
103
- padding-right: 24px;
104
- border-top: 1px solid #f2f3f4;
105
- // > :nth-child(1) {
106
- // margin-right: 16px;
107
- // color: #fff;
108
- // background-color: #29bd52;
109
- // border-color: #29bd52;
110
- // }
111
- }
112
- .creditPopLinkPng {
113
- width: 16px;
114
- height: 16px;
115
- overflow: hidden;
116
- background-image: url('./imgs/link.png');
117
- background-repeat: no-repeat;
118
- background-position: top right;
119
- background-size: contain;
120
- }
121
- }
1
+ .creditPopBg {
2
+ position: fixed;
3
+ top: 0;
4
+ right: 0;
5
+ bottom: 0;
6
+ left: 0;
7
+ z-index: 10000;
8
+ display: flex;
9
+ align-items: center;
10
+ justify-content: center;
11
+ background: rgba(2, 20, 41, 0.8);
12
+ .creditPopHeader {
13
+ display: flex;
14
+ align-items: center;
15
+ justify-content: space-between;
16
+ height: 82px;
17
+ padding-right: 24px;
18
+ padding-left: 24px;
19
+ .creditPopHeaderTitle {
20
+ color: #000;
21
+ font-weight: 500;
22
+ font-size: 24px;
23
+ font-family: PingFang SC;
24
+ font-style: normal;
25
+ line-height: normal;
26
+ }
27
+ }
28
+ .creditPopContent {
29
+ width: 960px;
30
+ background-color: #fff;
31
+ border-radius: 10px;
32
+ }
33
+ .creditPopPngBox {
34
+ display: flex;
35
+ align-items: center;
36
+ justify-content: space-between;
37
+ padding-right: 24px;
38
+ padding-left: 24px;
39
+ .creditPopPng {
40
+ width: 208px;
41
+ height: 266px;
42
+ overflow: hidden;
43
+ background-color: #f6fbfe;
44
+ background-repeat: no-repeat;
45
+ background-position: top right;
46
+ background-size: contain;
47
+ border-radius: 8px;
48
+ }
49
+ .creditPopPng01 {
50
+ background-image: url('./imgs/png01.png');
51
+ }
52
+ .creditPopPng02 {
53
+ background-image: url('./imgs/png02.png');
54
+ }
55
+ .creditPopPng03 {
56
+ background-image: url('./imgs/png03.png');
57
+ }
58
+ .creditPopPng04 {
59
+ background-image: url('./imgs/png04.png');
60
+ }
61
+ }
62
+ .creditPopTxtBox {
63
+ display: flex;
64
+ // align-items: center;
65
+ flex-direction: column;
66
+ justify-content: space-between;
67
+ padding: 24px;
68
+ .creditPopTxt {
69
+ display: flex;
70
+ align-items: center;
71
+ color: var(--io-n-8, #354354);
72
+ font-weight: 400;
73
+ font-size: 14px;
74
+ font-family: PingFang SC;
75
+ font-style: normal;
76
+ line-height: normal;
77
+ line-height: 20px;
78
+ }
79
+ .creditPopClickIcon {
80
+ margin-right: 8px;
81
+ margin-left: 16px;
82
+ color: #165dff;
83
+ cursor: pointer;
84
+ }
85
+ .creditPopClickTxt {
86
+ color: #165dff;
87
+ cursor: pointer;
88
+ }
89
+ .creditPopTxt::before {
90
+ display: inline-block;
91
+ margin: 7px;
92
+ padding: 3px;
93
+ background-color: #354354;
94
+ border-radius: 3px;
95
+ content: '';
96
+ }
97
+ }
98
+ .creditPopFooter {
99
+ display: flex;
100
+ align-items: center;
101
+ justify-content: flex-end;
102
+ height: 80px;
103
+ padding-right: 24px;
104
+ border-top: 1px solid #f2f3f4;
105
+ // > :nth-child(1) {
106
+ // margin-right: 16px;
107
+ // color: #fff;
108
+ // background-color: #29bd52;
109
+ // border-color: #29bd52;
110
+ // }
111
+ }
112
+ .creditPopLinkPng {
113
+ width: 16px;
114
+ height: 16px;
115
+ overflow: hidden;
116
+ background-image: url('./imgs/link.png');
117
+ background-repeat: no-repeat;
118
+ background-position: top right;
119
+ background-size: contain;
120
+ }
121
+ }
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  import './index.less';
2
3
  declare const PageLoading: (props: {
3
4
  onClose: () => void;
4
- }) => JSX.Element;
5
+ }) => React.JSX.Element;
5
6
  export default PageLoading;
@@ -1,115 +1,115 @@
1
- .depositPopBg {
2
- position: fixed;
3
- top: 0;
4
- right: 0;
5
- bottom: 0;
6
- left: 0;
7
- z-index: 10000;
8
- display: flex;
9
- align-items: center;
10
- justify-content: center;
11
- background: rgba(2, 20, 41, 0.8);
12
- .depositPopHeader {
13
- display: flex;
14
- align-items: center;
15
- justify-content: space-between;
16
- height: 82px;
17
- padding-right: 24px;
18
- padding-left: 24px;
19
- .depositPopHeaderTitle {
20
- color: #000;
21
- font-weight: 500;
22
- font-size: 24px;
23
- font-family: PingFang SC;
24
- font-style: normal;
25
- line-height: normal;
26
- }
27
- }
28
- .depositPopContent {
29
- width: 960px;
30
- background-color: #fff;
31
- border-radius: 10px;
32
- }
33
- .depositPopPngBox {
34
- display: flex;
35
- align-items: center;
36
- justify-content: space-between;
37
- padding-right: 24px;
38
- padding-left: 24px;
39
- .depositPopPng {
40
- width: 444px;
41
- height: 266px;
42
- overflow: hidden;
43
- background-color: #f6fbfe;
44
- background-repeat: no-repeat;
45
- background-position: top right;
46
- background-size: contain;
47
- border-radius: 8px;
48
- }
49
- .depositPopPng01 {
50
- background-image: url('./imgs/png01.png');
51
- }
52
- .depositPopPng02 {
53
- background-image: url('./imgs/png02.png');
54
- }
55
- }
56
- .depositPopTxtBox {
57
- display: flex;
58
- // align-items: center;
59
- flex-direction: column;
60
- justify-content: space-between;
61
- padding: 24px;
62
- .depositPopTxt {
63
- display: flex;
64
- align-items: center;
65
- color: var(--io-n-8, #354354);
66
- font-weight: 400;
67
- font-size: 14px;
68
- font-family: PingFang SC;
69
- font-style: normal;
70
- line-height: normal;
71
- line-height: 20px;
72
- }
73
- .depositPopClickIcon {
74
- margin-right: 8px;
75
- margin-left: 16px;
76
- color: #165dff;
77
- cursor: pointer;
78
- }
79
- .depositPopClickTxt {
80
- color: #165dff;
81
- cursor: pointer;
82
- }
83
- .depositPopTxt::before {
84
- display: inline-block;
85
- margin: 7px;
86
- padding: 3px;
87
- background-color: #354354;
88
- border-radius: 3px;
89
- content: '';
90
- }
91
- }
92
- .depositPopFooter {
93
- display: flex;
94
- align-items: center;
95
- justify-content: flex-end;
96
- height: 80px;
97
- padding-right: 24px;
98
- border-top: 1px solid #f2f3f4;
99
- // > :nth-child(1) {
100
- // margin-right: 16px;
101
- // color: #fff;
102
- // background-color: #29bd52;
103
- // border-color: #29bd52;
104
- // }
105
- }
106
- .depositPopLinkPng {
107
- width: 16px;
108
- height: 16px;
109
- overflow: hidden;
110
- background-image: url('./imgs/link.png');
111
- background-repeat: no-repeat;
112
- background-position: top right;
113
- background-size: contain;
114
- }
115
- }
1
+ .depositPopBg {
2
+ position: fixed;
3
+ top: 0;
4
+ right: 0;
5
+ bottom: 0;
6
+ left: 0;
7
+ z-index: 10000;
8
+ display: flex;
9
+ align-items: center;
10
+ justify-content: center;
11
+ background: rgba(2, 20, 41, 0.8);
12
+ .depositPopHeader {
13
+ display: flex;
14
+ align-items: center;
15
+ justify-content: space-between;
16
+ height: 82px;
17
+ padding-right: 24px;
18
+ padding-left: 24px;
19
+ .depositPopHeaderTitle {
20
+ color: #000;
21
+ font-weight: 500;
22
+ font-size: 24px;
23
+ font-family: PingFang SC;
24
+ font-style: normal;
25
+ line-height: normal;
26
+ }
27
+ }
28
+ .depositPopContent {
29
+ width: 960px;
30
+ background-color: #fff;
31
+ border-radius: 10px;
32
+ }
33
+ .depositPopPngBox {
34
+ display: flex;
35
+ align-items: center;
36
+ justify-content: space-between;
37
+ padding-right: 24px;
38
+ padding-left: 24px;
39
+ .depositPopPng {
40
+ width: 444px;
41
+ height: 266px;
42
+ overflow: hidden;
43
+ background-color: #f6fbfe;
44
+ background-repeat: no-repeat;
45
+ background-position: top right;
46
+ background-size: contain;
47
+ border-radius: 8px;
48
+ }
49
+ .depositPopPng01 {
50
+ background-image: url('./imgs/png01.png');
51
+ }
52
+ .depositPopPng02 {
53
+ background-image: url('./imgs/png02.png');
54
+ }
55
+ }
56
+ .depositPopTxtBox {
57
+ display: flex;
58
+ // align-items: center;
59
+ flex-direction: column;
60
+ justify-content: space-between;
61
+ padding: 24px;
62
+ .depositPopTxt {
63
+ display: flex;
64
+ align-items: center;
65
+ color: var(--io-n-8, #354354);
66
+ font-weight: 400;
67
+ font-size: 14px;
68
+ font-family: PingFang SC;
69
+ font-style: normal;
70
+ line-height: normal;
71
+ line-height: 20px;
72
+ }
73
+ .depositPopClickIcon {
74
+ margin-right: 8px;
75
+ margin-left: 16px;
76
+ color: #165dff;
77
+ cursor: pointer;
78
+ }
79
+ .depositPopClickTxt {
80
+ color: #165dff;
81
+ cursor: pointer;
82
+ }
83
+ .depositPopTxt::before {
84
+ display: inline-block;
85
+ margin: 7px;
86
+ padding: 3px;
87
+ background-color: #354354;
88
+ border-radius: 3px;
89
+ content: '';
90
+ }
91
+ }
92
+ .depositPopFooter {
93
+ display: flex;
94
+ align-items: center;
95
+ justify-content: flex-end;
96
+ height: 80px;
97
+ padding-right: 24px;
98
+ border-top: 1px solid #f2f3f4;
99
+ // > :nth-child(1) {
100
+ // margin-right: 16px;
101
+ // color: #fff;
102
+ // background-color: #29bd52;
103
+ // border-color: #29bd52;
104
+ // }
105
+ }
106
+ .depositPopLinkPng {
107
+ width: 16px;
108
+ height: 16px;
109
+ overflow: hidden;
110
+ background-image: url('./imgs/link.png');
111
+ background-repeat: no-repeat;
112
+ background-position: top right;
113
+ background-size: contain;
114
+ }
115
+ }
@@ -1,36 +1,36 @@
1
- .devModel {
2
- box-sizing: border-box;
3
- }
4
- .devModel_radioList {
5
- display: grid;
6
- grid-column-gap: 10px;
7
- grid-template-columns: repeat(4, 1fr);
8
- align-items: center;
9
- justify-content: center;
10
- }
11
- .devModel_radioList_item {
12
- padding: 20px 0px;
13
- color: #354354;
14
- text-align: center;
15
- background: #fafafb;
16
- }
17
- .devModel_radioList_active {
18
- color: #165dff;
19
- background: #e8efff;
20
- }
21
- .devModel_content {
22
- margin: 0px 0px 24px;
23
- padding: 0px 0px 24px;
24
- border-bottom: 1px solid #f2f3f4;
25
- }
26
- .devModel_content h3 {
27
- margin: 0px 0px 16px;
28
- }
29
- .devModel_content .buttonText {
30
- margin: 0px 0px 0px 8px;
31
- }
32
- .devModel_content:last-child {
33
- margin: 0px 0px 0px;
34
- padding: 0px 0px 0px;
35
- border-bottom: 0px solid #f2f3f4;
36
- }
1
+ .devModel {
2
+ box-sizing: border-box;
3
+ }
4
+ .devModel_radioList {
5
+ display: grid;
6
+ grid-column-gap: 10px;
7
+ grid-template-columns: repeat(4, 1fr);
8
+ align-items: center;
9
+ justify-content: center;
10
+ }
11
+ .devModel_radioList_item {
12
+ padding: 20px 0px;
13
+ color: #354354;
14
+ text-align: center;
15
+ background: #fafafb;
16
+ }
17
+ .devModel_radioList_active {
18
+ color: #165dff;
19
+ background: #e8efff;
20
+ }
21
+ .devModel_content {
22
+ margin: 0px 0px 24px;
23
+ padding: 0px 0px 24px;
24
+ border-bottom: 1px solid #f2f3f4;
25
+ }
26
+ .devModel_content h3 {
27
+ margin: 0px 0px 16px;
28
+ }
29
+ .devModel_content .buttonText {
30
+ margin: 0px 0px 0px 8px;
31
+ }
32
+ .devModel_content:last-child {
33
+ margin: 0px 0px 0px;
34
+ padding: 0px 0px 0px;
35
+ border-bottom: 0px solid #f2f3f4;
36
+ }
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  import './index.less';
2
3
  declare const _default: (props: {
3
4
  onCloseModal: Function;
4
- }) => JSX.Element;
5
+ }) => React.JSX.Element;
5
6
  export default _default;
@@ -1,36 +1,36 @@
1
- .devModel {
2
- box-sizing: border-box;
3
- &_radioList {
4
- display: grid;
5
- grid-column-gap: 10px;
6
- grid-template-columns: repeat(4, 1fr);
7
- align-items: center;
8
- justify-content: center;
9
- &_item {
10
- padding: 20px 0px;
11
- color: #354354;
12
- text-align: center;
13
- background: #fafafb;
14
- }
15
- &_active {
16
- color: #165dff;
17
- background: #e8efff;
18
- }
19
- }
20
- &_content {
21
- margin: 0px 0px 24px;
22
- padding: 0px 0px 24px;
23
- border-bottom: 1px solid #f2f3f4;
24
- h3 {
25
- margin: 0px 0px 16px;
26
- }
27
- .buttonText {
28
- margin: 0px 0px 0px 8px;
29
- }
30
- }
31
- &_content:last-child {
32
- margin: 0px 0px 0px;
33
- padding: 0px 0px 0px;
34
- border-bottom: 0px solid #f2f3f4;
35
- }
36
- }
1
+ .devModel {
2
+ box-sizing: border-box;
3
+ &_radioList {
4
+ display: grid;
5
+ grid-column-gap: 10px;
6
+ grid-template-columns: repeat(4, 1fr);
7
+ align-items: center;
8
+ justify-content: center;
9
+ &_item {
10
+ padding: 20px 0px;
11
+ color: #354354;
12
+ text-align: center;
13
+ background: #fafafb;
14
+ }
15
+ &_active {
16
+ color: #165dff;
17
+ background: #e8efff;
18
+ }
19
+ }
20
+ &_content {
21
+ margin: 0px 0px 24px;
22
+ padding: 0px 0px 24px;
23
+ border-bottom: 1px solid #f2f3f4;
24
+ h3 {
25
+ margin: 0px 0px 16px;
26
+ }
27
+ .buttonText {
28
+ margin: 0px 0px 0px 8px;
29
+ }
30
+ }
31
+ &_content:last-child {
32
+ margin: 0px 0px 0px;
33
+ padding: 0px 0px 0px;
34
+ border-bottom: 0px solid #f2f3f4;
35
+ }
36
+ }
@@ -1,5 +1,3 @@
1
- import React from 'react';
2
1
  import './index.less';
3
- import { TitleProps } from './types';
4
- declare const BizEditText: React.ForwardRefExoticComponent<TitleProps & React.RefAttributes<any>>;
2
+ declare const BizEditText: any;
5
3
  export default BizEditText;