@zgfe/modules-settings 2.0.0-zhongyuan.8 → 2.1.0-zhongyuan.0

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 (37) 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/index.js +7 -0
  7. package/es/modules/companySetting/user/index.less +363 -363
  8. package/es/modules/companySetting/user/invite.js +19 -0
  9. package/es/modules/createDemand/constants.d.ts +15 -2
  10. package/es/modules/createDemand/constants.js +57 -4
  11. package/es/modules/createDemand/index.d.ts +0 -1
  12. package/es/modules/createDemand/index.js +790 -177
  13. package/es/modules/createDemand/styles/index.less +403 -277
  14. package/es/modules/demandManage/index.js +175 -163
  15. package/es/modules/demandManage/styles/index.less +155 -210
  16. package/es/modules/messageList/index.d.ts +1 -1
  17. package/es/modules/messageList/index.js +6 -6
  18. package/es/modules/personalSetting/demo/index.d.ts +3 -0
  19. package/es/modules/personalSetting/demo/index.js +12 -0
  20. package/es/modules/personalSetting/index.js +11 -1
  21. package/es/modules/personalSetting/info/index.js +23 -5
  22. package/es/modules/pointMap/createMetaDrawer.d.ts +5 -0
  23. package/es/modules/pointMap/createMetaDrawer.js +656 -0
  24. package/es/modules/pointMap/pageInfo.js +358 -172
  25. package/es/modules/pointMap/record.d.ts +7 -0
  26. package/es/modules/pointMap/record.js +521 -0
  27. package/es/modules/pointMap/styles/index.less +152 -38
  28. package/es/modules/pointMap/styles/pageInfo.less +426 -244
  29. package/es/modules/pointMap/styles/tree.css +145 -145
  30. package/es/modules/pointMap/styles/tree.less +149 -149
  31. package/es/modules/pointMap/tree.js +1 -0
  32. package/es/modules/pointMap/types.d.ts +88 -0
  33. package/es/modules/pointMap/types.js +1 -0
  34. package/es/modules/systemSetting/index.css +161 -161
  35. package/es/modules/systemSetting/index.less +169 -169
  36. package/es/types/personal.d.ts +1 -0
  37. package/package.json +2 -2
@@ -1,161 +1,161 @@
1
- .system-setting-approval-process-create-bg {
2
- position: absolute;
3
- top: 0;
4
- right: 0;
5
- bottom: 0;
6
- left: 0;
7
- z-index: 10;
8
- background: #fafafb;
9
- }
10
- .authUrlPageClass-search {
11
- display: flex;
12
- align-items: center;
13
- justify-content: space-between;
14
- margin: 0px 0px 16px;
15
- }
16
- .DictionaryPage-emptyDom {
17
- margin: 50px 0px 0px;
18
- text-align: center;
19
- }
20
- .DictionaryPage-emptyDom-img {
21
- display: block;
22
- width: 248px;
23
- height: 200px;
24
- margin: auto;
25
- background-image: url('img/empty-data.png');
26
- background-size: 100%;
27
- }
28
- .DictionaryPage-emptyDom-tip {
29
- margin: 0px 0px 10px;
30
- color: #999;
31
- }
32
- .DictionaryPage .ant-tabs-nav {
33
- padding-right: 10%;
34
- }
35
- .DictionaryPage-header {
36
- position: relative;
37
- }
38
- .DictionaryPage-header-search {
39
- display: flex;
40
- align-items: center;
41
- justify-content: space-between;
42
- margin: 0px 0px 16px;
43
- }
44
- .DictionaryPage-header-search .ant-btn {
45
- color: #407fff;
46
- border-color: #407fff;
47
- }
48
- .DictionaryPage-tabsRight-text {
49
- position: absolute;
50
- top: 13%;
51
- right: 0;
52
- width: 10%;
53
- color: #165dff;
54
- text-align: center;
55
- vertical-align: middle;
56
- border-left: 1px solid #ccc;
57
- cursor: pointer;
58
- }
59
- .DictionaryPage-modal {
60
- color: #021429;
61
- }
62
- .DictionaryPage-modal-header {
63
- height: 50px;
64
- padding: 0px 16px;
65
- line-height: 50px;
66
- background-color: #f2f3f4;
67
- }
68
- .DictionaryPage-modal-header-left {
69
- display: inline-block;
70
- width: 80%;
71
- vertical-align: middle;
72
- }
73
- .DictionaryPage-modal-header-operation {
74
- display: inline-block;
75
- width: 20%;
76
- text-align: center;
77
- vertical-align: middle;
78
- }
79
- .DictionaryPage-modal .ant-input-affix-wrapper {
80
- vertical-align: middle;
81
- }
82
- .DictionaryPage-modal .DictionaryPage-modal-content {
83
- padding: 10px 16px 0px;
84
- }
85
- .DictionaryPage-modal-content {
86
- height: 292px;
87
- overflow-y: auto;
88
- }
89
- .DictionaryPage-modal-content-item {
90
- display: flex;
91
- align-items: center;
92
- height: 50px;
93
- line-height: 50px;
94
- border-bottom: 1px solid #f2f3f4;
95
- }
96
- .DictionaryPage-modal-content-itemLeft {
97
- position: relative;
98
- display: inline-block;
99
- flex: 1;
100
- height: 100%;
101
- }
102
- .DictionaryPage-modal-content-itemLeft .error-tip {
103
- position: absolute;
104
- bottom: -28px;
105
- left: 3px;
106
- width: 100%;
107
- color: red;
108
- font-size: 14px;
109
- letter-spacing: 1px;
110
- }
111
- .DictionaryPage-modal-content-itemRight {
112
- display: inline-block;
113
- width: 40px;
114
- color: #165dff;
115
- text-align: center;
116
- cursor: pointer;
117
- }
118
- .DictionaryPage-modal-content .ant-typography.ant-typography-ellipsis.ant-typography-single-line {
119
- height: 50px;
120
- margin-bottom: 0px;
121
- line-height: 50px;
122
- border-bottom: 1px solid #f2f3f4;
123
- }
124
- .DictionaryPage-modal-content .ant-typography-edit {
125
- float: right;
126
- width: 20%;
127
- text-align: center;
128
- }
129
- .DictionaryPage-modal-footer {
130
- display: flex;
131
- align-items: center;
132
- justify-content: space-between;
133
- margin: 16px 0px;
134
- }
135
- .DocumentSetting-header {
136
- height: 48px;
137
- line-height: 48px;
138
- border-bottom: 1px solid #e8efff;
139
- }
140
- .DocumentSetting-search {
141
- display: flex;
142
- align-items: center;
143
- justify-content: space-between;
144
- margin: 16px 0px 16px;
145
- }
146
- .DocumentSetting-emptyDom {
147
- margin: 50px 0px 0px;
148
- text-align: center;
149
- }
150
- .DocumentSetting-emptyDom-img {
151
- display: block;
152
- width: 248px;
153
- height: 200px;
154
- margin: auto;
155
- background-image: url('img/empty-data.png');
156
- background-size: 100%;
157
- }
158
- .DocumentSetting-emptyDom-tip {
159
- margin: 0px 0px 10px;
160
- color: #999;
161
- }
1
+ .system-setting-approval-process-create-bg {
2
+ position: absolute;
3
+ top: 0;
4
+ right: 0;
5
+ bottom: 0;
6
+ left: 0;
7
+ z-index: 10;
8
+ background: #fafafb;
9
+ }
10
+ .authUrlPageClass-search {
11
+ display: flex;
12
+ align-items: center;
13
+ justify-content: space-between;
14
+ margin: 0px 0px 16px;
15
+ }
16
+ .DictionaryPage-emptyDom {
17
+ margin: 50px 0px 0px;
18
+ text-align: center;
19
+ }
20
+ .DictionaryPage-emptyDom-img {
21
+ display: block;
22
+ width: 248px;
23
+ height: 200px;
24
+ margin: auto;
25
+ background-image: url('img/empty-data.png');
26
+ background-size: 100%;
27
+ }
28
+ .DictionaryPage-emptyDom-tip {
29
+ margin: 0px 0px 10px;
30
+ color: #999;
31
+ }
32
+ .DictionaryPage .ant-tabs-nav {
33
+ padding-right: 10%;
34
+ }
35
+ .DictionaryPage-header {
36
+ position: relative;
37
+ }
38
+ .DictionaryPage-header-search {
39
+ display: flex;
40
+ align-items: center;
41
+ justify-content: space-between;
42
+ margin: 0px 0px 16px;
43
+ }
44
+ .DictionaryPage-header-search .ant-btn {
45
+ color: #407fff;
46
+ border-color: #407fff;
47
+ }
48
+ .DictionaryPage-tabsRight-text {
49
+ position: absolute;
50
+ top: 13%;
51
+ right: 0;
52
+ width: 10%;
53
+ color: #165dff;
54
+ text-align: center;
55
+ vertical-align: middle;
56
+ border-left: 1px solid #ccc;
57
+ cursor: pointer;
58
+ }
59
+ .DictionaryPage-modal {
60
+ color: #021429;
61
+ }
62
+ .DictionaryPage-modal-header {
63
+ height: 50px;
64
+ padding: 0px 16px;
65
+ line-height: 50px;
66
+ background-color: #f2f3f4;
67
+ }
68
+ .DictionaryPage-modal-header-left {
69
+ display: inline-block;
70
+ width: 80%;
71
+ vertical-align: middle;
72
+ }
73
+ .DictionaryPage-modal-header-operation {
74
+ display: inline-block;
75
+ width: 20%;
76
+ text-align: center;
77
+ vertical-align: middle;
78
+ }
79
+ .DictionaryPage-modal .ant-input-affix-wrapper {
80
+ vertical-align: middle;
81
+ }
82
+ .DictionaryPage-modal .DictionaryPage-modal-content {
83
+ padding: 10px 16px 0px;
84
+ }
85
+ .DictionaryPage-modal-content {
86
+ height: 292px;
87
+ overflow-y: auto;
88
+ }
89
+ .DictionaryPage-modal-content-item {
90
+ display: flex;
91
+ align-items: center;
92
+ height: 50px;
93
+ line-height: 50px;
94
+ border-bottom: 1px solid #f2f3f4;
95
+ }
96
+ .DictionaryPage-modal-content-itemLeft {
97
+ position: relative;
98
+ display: inline-block;
99
+ flex: 1;
100
+ height: 100%;
101
+ }
102
+ .DictionaryPage-modal-content-itemLeft .error-tip {
103
+ position: absolute;
104
+ bottom: -28px;
105
+ left: 3px;
106
+ width: 100%;
107
+ color: red;
108
+ font-size: 14px;
109
+ letter-spacing: 1px;
110
+ }
111
+ .DictionaryPage-modal-content-itemRight {
112
+ display: inline-block;
113
+ width: 40px;
114
+ color: #165dff;
115
+ text-align: center;
116
+ cursor: pointer;
117
+ }
118
+ .DictionaryPage-modal-content .ant-typography.ant-typography-ellipsis.ant-typography-single-line {
119
+ height: 50px;
120
+ margin-bottom: 0px;
121
+ line-height: 50px;
122
+ border-bottom: 1px solid #f2f3f4;
123
+ }
124
+ .DictionaryPage-modal-content .ant-typography-edit {
125
+ float: right;
126
+ width: 20%;
127
+ text-align: center;
128
+ }
129
+ .DictionaryPage-modal-footer {
130
+ display: flex;
131
+ align-items: center;
132
+ justify-content: space-between;
133
+ margin: 16px 0px;
134
+ }
135
+ .DocumentSetting-header {
136
+ height: 48px;
137
+ line-height: 48px;
138
+ border-bottom: 1px solid #e8efff;
139
+ }
140
+ .DocumentSetting-search {
141
+ display: flex;
142
+ align-items: center;
143
+ justify-content: space-between;
144
+ margin: 16px 0px 16px;
145
+ }
146
+ .DocumentSetting-emptyDom {
147
+ margin: 50px 0px 0px;
148
+ text-align: center;
149
+ }
150
+ .DocumentSetting-emptyDom-img {
151
+ display: block;
152
+ width: 248px;
153
+ height: 200px;
154
+ margin: auto;
155
+ background-image: url('img/empty-data.png');
156
+ background-size: 100%;
157
+ }
158
+ .DocumentSetting-emptyDom-tip {
159
+ margin: 0px 0px 10px;
160
+ color: #999;
161
+ }
@@ -1,169 +1,169 @@
1
- .system-setting-approval-process-create-bg {
2
- position: absolute;
3
- top: 0;
4
- right: 0;
5
- bottom: 0;
6
- left: 0;
7
- z-index: 10;
8
- background: #fafafb;
9
- }
10
- .authUrlPageClass {
11
- &-search {
12
- display: flex;
13
- align-items: center;
14
- justify-content: space-between;
15
- margin: 0px 0px 16px;
16
- }
17
- }
18
- .DictionaryPage {
19
- &-emptyDom {
20
- margin: 50px 0px 0px;
21
- text-align: center;
22
- &-img {
23
- display: block;
24
- width: 248px;
25
- height: 200px;
26
- margin: auto;
27
- background-image: url('./img/empty-data.png');
28
- background-size: 100%;
29
- }
30
- &-tip {
31
- margin: 0px 0px 10px;
32
- color: #999;
33
- }
34
- }
35
- .ant-tabs-nav {
36
- padding-right: 10%;
37
- }
38
- &-header {
39
- position: relative;
40
- &-search {
41
- display: flex;
42
- align-items: center;
43
- justify-content: space-between;
44
- margin: 0px 0px 16px;
45
- .ant-btn {
46
- color: #407fff;
47
- border-color: #407fff;
48
- }
49
- }
50
- }
51
- &-tabsRight-text {
52
- position: absolute;
53
- top: 13%;
54
- right: 0;
55
- width: 10%;
56
- color: #165dff;
57
- text-align: center;
58
- vertical-align: middle;
59
- border-left: 1px solid #ccc;
60
- cursor: pointer;
61
- }
62
- &-modal {
63
- color: #021429;
64
- &-header {
65
- height: 50px;
66
- padding: 0px 16px;
67
- line-height: 50px;
68
- background-color: #f2f3f4;
69
- &-left {
70
- display: inline-block;
71
- width: 80%;
72
- vertical-align: middle;
73
- }
74
- &-operation {
75
- display: inline-block;
76
- width: 20%;
77
- text-align: center;
78
- vertical-align: middle;
79
- }
80
- }
81
- .ant-input-affix-wrapper {
82
- vertical-align: middle;
83
- }
84
- .DictionaryPage-modal-content {
85
- padding: 10px 16px 0px;
86
- }
87
- &-content {
88
- height: 292px;
89
- overflow-y: auto;
90
- &-item {
91
- display: flex;
92
- align-items: center;
93
- height: 50px;
94
- line-height: 50px;
95
- border-bottom: 1px solid #f2f3f4;
96
- }
97
- &-itemLeft {
98
- position: relative;
99
- display: inline-block;
100
- flex: 1;
101
- height: 100%;
102
- .error-tip {
103
- position: absolute;
104
- bottom: -28px;
105
- left: 3px;
106
- width: 100%;
107
- color: red;
108
- font-size: 14px;
109
- letter-spacing: 1px;
110
- }
111
- }
112
- &-itemRight {
113
- display: inline-block;
114
- width: 40px;
115
- color: #165dff;
116
- text-align: center;
117
- cursor: pointer;
118
- }
119
- .ant-typography.ant-typography-ellipsis.ant-typography-single-line {
120
- height: 50px;
121
- margin-bottom: 0px;
122
- line-height: 50px;
123
- border-bottom: 1px solid #f2f3f4;
124
- }
125
- .ant-typography-edit {
126
- float: right;
127
- width: 20%;
128
- text-align: center;
129
- }
130
- }
131
- &-footer {
132
- display: flex;
133
- align-items: center;
134
- justify-content: space-between;
135
- margin: 16px 0px;
136
- }
137
- }
138
- }
139
-
140
- // 文档库管理
141
- .DocumentSetting {
142
- &-header {
143
- height: 48px;
144
- line-height: 48px;
145
- border-bottom: 1px solid #e8efff;
146
- }
147
- &-search {
148
- display: flex;
149
- align-items: center;
150
- justify-content: space-between;
151
- margin: 16px 0px 16px;
152
- }
153
- &-emptyDom {
154
- margin: 50px 0px 0px;
155
- text-align: center;
156
- &-img {
157
- display: block;
158
- width: 248px;
159
- height: 200px;
160
- margin: auto;
161
- background-image: url('./img/empty-data.png');
162
- background-size: 100%;
163
- }
164
- &-tip {
165
- margin: 0px 0px 10px;
166
- color: #999;
167
- }
168
- }
169
- }
1
+ .system-setting-approval-process-create-bg {
2
+ position: absolute;
3
+ top: 0;
4
+ right: 0;
5
+ bottom: 0;
6
+ left: 0;
7
+ z-index: 10;
8
+ background: #fafafb;
9
+ }
10
+ .authUrlPageClass {
11
+ &-search {
12
+ display: flex;
13
+ align-items: center;
14
+ justify-content: space-between;
15
+ margin: 0px 0px 16px;
16
+ }
17
+ }
18
+ .DictionaryPage {
19
+ &-emptyDom {
20
+ margin: 50px 0px 0px;
21
+ text-align: center;
22
+ &-img {
23
+ display: block;
24
+ width: 248px;
25
+ height: 200px;
26
+ margin: auto;
27
+ background-image: url('./img/empty-data.png');
28
+ background-size: 100%;
29
+ }
30
+ &-tip {
31
+ margin: 0px 0px 10px;
32
+ color: #999;
33
+ }
34
+ }
35
+ .ant-tabs-nav {
36
+ padding-right: 10%;
37
+ }
38
+ &-header {
39
+ position: relative;
40
+ &-search {
41
+ display: flex;
42
+ align-items: center;
43
+ justify-content: space-between;
44
+ margin: 0px 0px 16px;
45
+ .ant-btn {
46
+ color: #407fff;
47
+ border-color: #407fff;
48
+ }
49
+ }
50
+ }
51
+ &-tabsRight-text {
52
+ position: absolute;
53
+ top: 13%;
54
+ right: 0;
55
+ width: 10%;
56
+ color: #165dff;
57
+ text-align: center;
58
+ vertical-align: middle;
59
+ border-left: 1px solid #ccc;
60
+ cursor: pointer;
61
+ }
62
+ &-modal {
63
+ color: #021429;
64
+ &-header {
65
+ height: 50px;
66
+ padding: 0px 16px;
67
+ line-height: 50px;
68
+ background-color: #f2f3f4;
69
+ &-left {
70
+ display: inline-block;
71
+ width: 80%;
72
+ vertical-align: middle;
73
+ }
74
+ &-operation {
75
+ display: inline-block;
76
+ width: 20%;
77
+ text-align: center;
78
+ vertical-align: middle;
79
+ }
80
+ }
81
+ .ant-input-affix-wrapper {
82
+ vertical-align: middle;
83
+ }
84
+ .DictionaryPage-modal-content {
85
+ padding: 10px 16px 0px;
86
+ }
87
+ &-content {
88
+ height: 292px;
89
+ overflow-y: auto;
90
+ &-item {
91
+ display: flex;
92
+ align-items: center;
93
+ height: 50px;
94
+ line-height: 50px;
95
+ border-bottom: 1px solid #f2f3f4;
96
+ }
97
+ &-itemLeft {
98
+ position: relative;
99
+ display: inline-block;
100
+ flex: 1;
101
+ height: 100%;
102
+ .error-tip {
103
+ position: absolute;
104
+ bottom: -28px;
105
+ left: 3px;
106
+ width: 100%;
107
+ color: red;
108
+ font-size: 14px;
109
+ letter-spacing: 1px;
110
+ }
111
+ }
112
+ &-itemRight {
113
+ display: inline-block;
114
+ width: 40px;
115
+ color: #165dff;
116
+ text-align: center;
117
+ cursor: pointer;
118
+ }
119
+ .ant-typography.ant-typography-ellipsis.ant-typography-single-line {
120
+ height: 50px;
121
+ margin-bottom: 0px;
122
+ line-height: 50px;
123
+ border-bottom: 1px solid #f2f3f4;
124
+ }
125
+ .ant-typography-edit {
126
+ float: right;
127
+ width: 20%;
128
+ text-align: center;
129
+ }
130
+ }
131
+ &-footer {
132
+ display: flex;
133
+ align-items: center;
134
+ justify-content: space-between;
135
+ margin: 16px 0px;
136
+ }
137
+ }
138
+ }
139
+
140
+ // 文档库管理
141
+ .DocumentSetting {
142
+ &-header {
143
+ height: 48px;
144
+ line-height: 48px;
145
+ border-bottom: 1px solid #e8efff;
146
+ }
147
+ &-search {
148
+ display: flex;
149
+ align-items: center;
150
+ justify-content: space-between;
151
+ margin: 16px 0px 16px;
152
+ }
153
+ &-emptyDom {
154
+ margin: 50px 0px 0px;
155
+ text-align: center;
156
+ &-img {
157
+ display: block;
158
+ width: 248px;
159
+ height: 200px;
160
+ margin: auto;
161
+ background-image: url('./img/empty-data.png');
162
+ background-size: 100%;
163
+ }
164
+ &-tip {
165
+ margin: 0px 0px 10px;
166
+ color: #999;
167
+ }
168
+ }
169
+ }
@@ -2,6 +2,7 @@ import { InterfaceApiResult } from '@zgfe/business-lib/es/utils/type';
2
2
  export interface IUpdateUserInfoForm {
3
3
  username: string;
4
4
  emailNote: string;
5
+ telphone: string;
5
6
  }
6
7
  export interface IUpdateUserInfoRes<T> extends InterfaceApiResult<T> {
7
8
  ret?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zgfe/modules-settings",
3
- "version": "2.0.0-zhongyuan.8",
3
+ "version": "2.1.0-zhongyuan.0",
4
4
  "private": false,
5
5
  "module": "es/index.js",
6
6
  "typings": "es/index.d.ts",
@@ -67,7 +67,7 @@
67
67
  "publishConfig": {
68
68
  "access": "public"
69
69
  },
70
- "gitHead": "e45349b4aba8221a7481a4911c65147b64079c0e",
70
+ "gitHead": "5217680a049b04342b0768133436087c6512ef05",
71
71
  "gitHooks": {
72
72
  "pre-commit": "lint-staged"
73
73
  }