@zgfe/modules-settings 2.1.0-zhongyuan.1 → 2.1.0-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/es/components/importMetaDialog/index.d.ts +11 -0
- package/es/components/importMetaDialog/index.js +202 -0
- package/es/components/importMetaDialog/styles/index.less +115 -0
- package/es/constants/api.d.ts +15 -0
- package/es/constants/api.js +18 -0
- package/es/modules/demandManage/index.js +2 -2
- package/es/modules/pointMap/createMetaDrawer.js +40 -3
- package/es/modules/pointMap/pageInfo.js +20 -5
- package/es/modules/pointMap/styles/index.less +157 -152
- package/es/modules/pointMap/styles/pageInfo.less +439 -426
- package/es/modules/pointMap/styles/tree.less +14 -7
- package/es/modules/pointMap/tree.js +101 -36
- package/es/modules/systemSetting/Dictionary.d.ts +5 -2
- package/es/modules/systemSetting/Dictionary.js +54 -370
- package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/create.d.ts +9 -0
- package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/create.js +239 -0
- package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/css/index.less +47 -0
- package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/index.d.ts +4 -0
- package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/index.js +205 -0
- package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/type/index.d.ts +10 -0
- package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/type/index.js +1 -0
- package/es/modules/systemSetting/dictionaryItem/eventTagManagement/create.d.ts +10 -0
- package/es/modules/systemSetting/dictionaryItem/eventTagManagement/create.js +126 -0
- package/es/modules/systemSetting/dictionaryItem/eventTagManagement/css/index.less +32 -0
- package/es/modules/systemSetting/dictionaryItem/eventTagManagement/index.d.ts +7 -0
- package/es/modules/systemSetting/dictionaryItem/eventTagManagement/index.js +251 -0
- package/es/modules/systemSetting/dictionaryItem/eventTagManagement/type/index.d.ts +9 -0
- package/es/modules/systemSetting/dictionaryItem/eventTagManagement/type/index.js +1 -0
- package/es/modules/systemSetting/index.js +3 -1
- package/package.json +2 -2
|
@@ -1,152 +1,157 @@
|
|
|
1
|
-
.setting-point-map {
|
|
2
|
-
display: flex;
|
|
3
|
-
flex-direction: row;
|
|
4
|
-
gap: 16px;
|
|
5
|
-
width: 100%;
|
|
6
|
-
height: 100%;
|
|
7
|
-
padding: 16px;
|
|
8
|
-
background-color: #fafafb;
|
|
9
|
-
&-left {
|
|
10
|
-
position: relative;
|
|
11
|
-
min-width: 350px;
|
|
12
|
-
max-width: 600px;
|
|
13
|
-
&-drag {
|
|
14
|
-
position: absolute;
|
|
15
|
-
top: 0;
|
|
16
|
-
right: 0;
|
|
17
|
-
width: 6px;
|
|
18
|
-
height: 100%;
|
|
19
|
-
border-right: 2px solid transparent;
|
|
20
|
-
cursor: ew-resize;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
&-right {
|
|
24
|
-
flex: 1;
|
|
25
|
-
overflow: hidden;
|
|
26
|
-
}
|
|
27
|
-
.setting-point-map-page-content-img-select {
|
|
28
|
-
position: relative;
|
|
29
|
-
}
|
|
30
|
-
.ant-image {
|
|
31
|
-
position: static;
|
|
32
|
-
}
|
|
33
|
-
.ant-image .ant-image-mask {
|
|
34
|
-
color: #fff;
|
|
35
|
-
font-size: 24px;
|
|
36
|
-
background: rgba(2, 20, 41, 0.5) !important;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
1
|
+
.setting-point-map {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: row;
|
|
4
|
+
gap: 16px;
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 100%;
|
|
7
|
+
padding: 16px;
|
|
8
|
+
background-color: #fafafb;
|
|
9
|
+
&-left {
|
|
10
|
+
position: relative;
|
|
11
|
+
min-width: 350px;
|
|
12
|
+
max-width: 600px;
|
|
13
|
+
&-drag {
|
|
14
|
+
position: absolute;
|
|
15
|
+
top: 0;
|
|
16
|
+
right: 0;
|
|
17
|
+
width: 6px;
|
|
18
|
+
height: 100%;
|
|
19
|
+
border-right: 2px solid transparent;
|
|
20
|
+
cursor: ew-resize;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
&-right {
|
|
24
|
+
flex: 1;
|
|
25
|
+
overflow: hidden;
|
|
26
|
+
}
|
|
27
|
+
.setting-point-map-page-content-img-select {
|
|
28
|
+
position: relative;
|
|
29
|
+
}
|
|
30
|
+
.ant-image {
|
|
31
|
+
position: static;
|
|
32
|
+
}
|
|
33
|
+
.ant-image .ant-image-mask {
|
|
34
|
+
color: #fff;
|
|
35
|
+
font-size: 24px;
|
|
36
|
+
background: rgba(2, 20, 41, 0.5) !important;
|
|
37
|
+
}
|
|
38
|
+
&-addListBtn {
|
|
39
|
+
display: flex;
|
|
40
|
+
align-items: center;
|
|
41
|
+
justify-content: space-between;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.setting-create-meta-drawer {
|
|
46
|
+
.set:hover {
|
|
47
|
+
color: #ff4d4f;
|
|
48
|
+
}
|
|
49
|
+
&-content {
|
|
50
|
+
display: flex;
|
|
51
|
+
flex: 1;
|
|
52
|
+
flex-direction: column;
|
|
53
|
+
gap: 24px;
|
|
54
|
+
&-select {
|
|
55
|
+
display: flex;
|
|
56
|
+
align-items: center;
|
|
57
|
+
justify-content: right;
|
|
58
|
+
margin-right: -12px;
|
|
59
|
+
margin-left: -16px;
|
|
60
|
+
}
|
|
61
|
+
.ant-table-thead > tr > th {
|
|
62
|
+
color: var(--io-N-, #021429);
|
|
63
|
+
font-weight: 400;
|
|
64
|
+
font-size: 14px;
|
|
65
|
+
font-family: 'PingFang SC';
|
|
66
|
+
font-style: normal;
|
|
67
|
+
line-height: normal;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
&-table {
|
|
71
|
+
margin: 20px 0px;
|
|
72
|
+
overflow: hidden;
|
|
73
|
+
border-radius: 8px;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&-info {
|
|
77
|
+
display: flex;
|
|
78
|
+
flex-direction: row;
|
|
79
|
+
gap: 12px;
|
|
80
|
+
align-items: center;
|
|
81
|
+
height: 32px;
|
|
82
|
+
&-title {
|
|
83
|
+
display: flex;
|
|
84
|
+
flex-direction: row;
|
|
85
|
+
gap: 4px;
|
|
86
|
+
justify-content: flex-end;
|
|
87
|
+
width: 68px;
|
|
88
|
+
color: var(--io-N6-, #67727f);
|
|
89
|
+
font-weight: 400;
|
|
90
|
+
font-size: 14px;
|
|
91
|
+
font-family: 'PingFang SC';
|
|
92
|
+
font-style: normal;
|
|
93
|
+
line-height: 32px;
|
|
94
|
+
line-height: normal;
|
|
95
|
+
text-align: right;
|
|
96
|
+
}
|
|
97
|
+
&-input {
|
|
98
|
+
position: relative;
|
|
99
|
+
flex: 1;
|
|
100
|
+
.button:not(.disabled):not(.ant-btn-primary) {
|
|
101
|
+
float: right;
|
|
102
|
+
padding: 0 16px;
|
|
103
|
+
color: #1454e5;
|
|
104
|
+
border: 1px solid #1454e5;
|
|
105
|
+
}
|
|
106
|
+
&-num {
|
|
107
|
+
position: absolute;
|
|
108
|
+
top: 6px;
|
|
109
|
+
right: 12px;
|
|
110
|
+
color: var(--io-N4-, #9aa1a9);
|
|
111
|
+
font-weight: 400;
|
|
112
|
+
font-size: 14px;
|
|
113
|
+
font-family: 'PingFang SC';
|
|
114
|
+
font-style: normal;
|
|
115
|
+
line-height: 20px;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
&-footer {
|
|
121
|
+
display: flex;
|
|
122
|
+
gap: 16px;
|
|
123
|
+
align-items: center;
|
|
124
|
+
justify-content: flex-end;
|
|
125
|
+
margin: 0 -24px -24px;
|
|
126
|
+
padding: 18px 24px 18px 0px;
|
|
127
|
+
background: #fff;
|
|
128
|
+
border-top: 1px solid var(--io-N1-, #e6e7ea);
|
|
129
|
+
}
|
|
130
|
+
.ant-drawer-content-wrapper {
|
|
131
|
+
overflow-x: hidden;
|
|
132
|
+
}
|
|
133
|
+
.ant-drawer-content,
|
|
134
|
+
.ant-drawer-wrapper-body {
|
|
135
|
+
overflow: hidden !important;
|
|
136
|
+
}
|
|
137
|
+
.ant-drawer-body {
|
|
138
|
+
display: flex;
|
|
139
|
+
flex-direction: column;
|
|
140
|
+
}
|
|
141
|
+
.ant-drawer-title {
|
|
142
|
+
span {
|
|
143
|
+
margin-left: 8px;
|
|
144
|
+
color: #9aa1a9;
|
|
145
|
+
font-size: 12px;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
.ant-drawer-close {
|
|
149
|
+
display: none;
|
|
150
|
+
}
|
|
151
|
+
.ant-drawer-extra {
|
|
152
|
+
.qingchu {
|
|
153
|
+
font-size: 20px !important;
|
|
154
|
+
cursor: pointer;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|