@zgfe/modules-settings 2.0.0-zhongyuan.9 → 2.1.0-zhongyuan.1

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 (31) hide show
  1. package/es/constants/api.d.ts +9 -0
  2. package/es/constants/api.js +15 -0
  3. package/es/modules/companySetting/application/index.d.ts +13 -0
  4. package/es/modules/companySetting/application/index.js +271 -98
  5. package/es/modules/companySetting/application/index.less +144 -126
  6. package/es/modules/companySetting/user/invite.js +2 -2
  7. package/es/modules/createDemand/constants.d.ts +15 -2
  8. package/es/modules/createDemand/constants.js +57 -4
  9. package/es/modules/createDemand/index.d.ts +0 -1
  10. package/es/modules/createDemand/index.js +790 -177
  11. package/es/modules/createDemand/styles/index.less +403 -277
  12. package/es/modules/demandManage/index.js +175 -178
  13. package/es/modules/demandManage/styles/index.less +8 -68
  14. package/es/modules/messageList/index.d.ts +1 -1
  15. package/es/modules/messageList/index.js +6 -6
  16. package/es/modules/personalSetting/demo/index.d.ts +3 -0
  17. package/es/modules/personalSetting/demo/index.js +12 -0
  18. package/es/modules/personalSetting/index.js +11 -1
  19. package/es/modules/personalSetting/info/index.js +23 -5
  20. package/es/modules/pointMap/createMetaDrawer.d.ts +5 -0
  21. package/es/modules/pointMap/createMetaDrawer.js +656 -0
  22. package/es/modules/pointMap/pageInfo.js +358 -172
  23. package/es/modules/pointMap/record.d.ts +7 -0
  24. package/es/modules/pointMap/record.js +521 -0
  25. package/es/modules/pointMap/styles/index.less +152 -38
  26. package/es/modules/pointMap/styles/pageInfo.less +426 -244
  27. package/es/modules/pointMap/tree.js +1 -0
  28. package/es/modules/pointMap/types.d.ts +88 -0
  29. package/es/modules/pointMap/types.js +1 -0
  30. package/es/types/personal.d.ts +1 -0
  31. package/package.json +74 -74
@@ -1,38 +1,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
- }
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
+ .setting-create-meta-drawer {
41
+ .set:hover {
42
+ color: #ff4d4f;
43
+ }
44
+ &-content {
45
+ display: flex;
46
+ flex: 1;
47
+ flex-direction: column;
48
+ gap: 24px;
49
+ &-select {
50
+ display: flex;
51
+ align-items: center;
52
+ justify-content: right;
53
+ margin-right: -12px;
54
+ margin-left: -16px;
55
+ }
56
+ .ant-table-thead > tr > th {
57
+ color: var(--io-N-, #021429);
58
+ font-weight: 400;
59
+ font-size: 14px;
60
+ font-family: 'PingFang SC';
61
+ font-style: normal;
62
+ line-height: normal;
63
+ }
64
+ }
65
+ &-table {
66
+ margin: 20px 0px;
67
+ overflow: hidden;
68
+ border-radius: 8px;
69
+ }
70
+
71
+ &-info {
72
+ display: flex;
73
+ flex-direction: row;
74
+ gap: 12px;
75
+ align-items: center;
76
+ height: 32px;
77
+ &-title {
78
+ display: flex;
79
+ flex-direction: row;
80
+ gap: 4px;
81
+ justify-content: flex-end;
82
+ width: 68px;
83
+ color: var(--io-N6-, #67727f);
84
+ font-weight: 400;
85
+ font-size: 14px;
86
+ font-family: 'PingFang SC';
87
+ font-style: normal;
88
+ line-height: 32px;
89
+ line-height: normal;
90
+ text-align: right;
91
+ }
92
+ &-input {
93
+ position: relative;
94
+ flex: 1;
95
+ .button:not(.disabled):not(.ant-btn-primary) {
96
+ float: right;
97
+ padding: 0 16px;
98
+ color: #1454e5;
99
+ border: 1px solid #1454e5;
100
+ }
101
+ &-num {
102
+ position: absolute;
103
+ top: 6px;
104
+ right: 12px;
105
+ color: var(--io-N4-, #9aa1a9);
106
+ font-weight: 400;
107
+ font-size: 14px;
108
+ font-family: 'PingFang SC';
109
+ font-style: normal;
110
+ line-height: 20px;
111
+ }
112
+ }
113
+ }
114
+
115
+ &-footer {
116
+ display: flex;
117
+ gap: 16px;
118
+ align-items: center;
119
+ justify-content: flex-end;
120
+ margin: 0 -24px -24px;
121
+ padding: 18px 24px 18px 0px;
122
+ background: #fff;
123
+ border-top: 1px solid var(--io-N1-, #e6e7ea);
124
+ }
125
+ .ant-drawer-content-wrapper {
126
+ overflow-x: hidden;
127
+ }
128
+ .ant-drawer-content,
129
+ .ant-drawer-wrapper-body {
130
+ overflow: hidden !important;
131
+ }
132
+ .ant-drawer-body {
133
+ display: flex;
134
+ flex-direction: column;
135
+ }
136
+ .ant-drawer-title {
137
+ span {
138
+ margin-left: 8px;
139
+ color: #9aa1a9;
140
+ font-size: 12px;
141
+ }
142
+ }
143
+ .ant-drawer-close {
144
+ display: none;
145
+ }
146
+ .ant-drawer-extra {
147
+ .qingchu {
148
+ font-size: 20px !important;
149
+ cursor: pointer;
150
+ }
151
+ }
152
+ }