@zgfe/modules-settings 2.0.0-zhongyuan.9 → 2.1.0-zhongyuan-set.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.
Files changed (66) hide show
  1. package/es/components/importMetaDialog/index.d.ts +13 -0
  2. package/es/components/importMetaDialog/index.js +217 -0
  3. package/es/components/importMetaDialog/styles/index.less +115 -0
  4. package/es/constants/api.d.ts +30 -0
  5. package/es/constants/api.js +43 -1
  6. package/es/modules/appSettings/dataAccessFilter/index.js +2 -1
  7. package/es/modules/companySetting/application/applicationForm.d.ts +1 -0
  8. package/es/modules/companySetting/application/applicationForm.js +34 -4
  9. package/es/modules/companySetting/application/index.d.ts +13 -0
  10. package/es/modules/companySetting/application/index.js +276 -104
  11. package/es/modules/companySetting/application/index.less +32 -14
  12. package/es/modules/companySetting/index.js +37 -33
  13. package/es/modules/companySetting/operationLog/index.js +22 -5
  14. package/es/modules/companySetting/user/index.js +29 -24
  15. package/es/modules/companySetting/user/invite.js +30 -102
  16. package/es/modules/createDemand/constants.d.ts +15 -2
  17. package/es/modules/createDemand/constants.js +57 -4
  18. package/es/modules/createDemand/demo/selectPoint.js +1 -2
  19. package/es/modules/createDemand/index.d.ts +0 -1
  20. package/es/modules/createDemand/index.js +793 -179
  21. package/es/modules/createDemand/styles/index.less +127 -1
  22. package/es/modules/createDemand_bf/demo/index.js +0 -1
  23. package/es/modules/createDemand_bf/index.js +0 -1
  24. package/es/modules/dealDemand/demo/index.js +0 -1
  25. package/es/modules/dealDemand/demo/selectPoint.js +1 -1
  26. package/es/modules/dealDemand/index.js +0 -2
  27. package/es/modules/demandManage/index.js +174 -178
  28. package/es/modules/demandManage/styles/index.less +155 -215
  29. package/es/modules/messageList/index.d.ts +1 -1
  30. package/es/modules/messageList/index.js +6 -6
  31. package/es/modules/personalSetting/demo/index.d.ts +3 -0
  32. package/es/modules/personalSetting/demo/index.js +12 -0
  33. package/es/modules/personalSetting/index.js +11 -1
  34. package/es/modules/personalSetting/info/index.js +23 -5
  35. package/es/modules/pointMap/createMetaDrawer.d.ts +5 -0
  36. package/es/modules/pointMap/createMetaDrawer.js +827 -0
  37. package/es/modules/pointMap/pageInfo.js +401 -179
  38. package/es/modules/pointMap/record.d.ts +7 -0
  39. package/es/modules/pointMap/record.js +521 -0
  40. package/es/modules/pointMap/styles/index.less +127 -0
  41. package/es/modules/pointMap/styles/pageInfo.less +195 -0
  42. package/es/modules/pointMap/styles/tree.css +164 -145
  43. package/es/modules/pointMap/styles/tree.less +174 -149
  44. package/es/modules/pointMap/tree.js +232 -88
  45. package/es/modules/pointMap/types.d.ts +88 -0
  46. package/es/modules/pointMap/types.js +1 -0
  47. package/es/modules/systemSetting/Dictionary.d.ts +5 -2
  48. package/es/modules/systemSetting/Dictionary.js +54 -370
  49. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/create.d.ts +9 -0
  50. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/create.js +245 -0
  51. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/css/index.less +48 -0
  52. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/index.d.ts +4 -0
  53. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/index.js +207 -0
  54. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/type/index.d.ts +10 -0
  55. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/type/index.js +1 -0
  56. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/create.d.ts +10 -0
  57. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/create.js +124 -0
  58. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/css/index.less +32 -0
  59. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/index.d.ts +7 -0
  60. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/index.js +264 -0
  61. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/type/index.d.ts +9 -0
  62. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/type/index.js +1 -0
  63. package/es/modules/systemSetting/document-setting/index.js +7 -6
  64. package/es/modules/systemSetting/index.js +16 -16
  65. package/es/types/personal.d.ts +1 -0
  66. package/package.json +74 -74
@@ -4,6 +4,9 @@
4
4
  height: 100%;
5
5
  padding: 0 16px 16px;
6
6
  background: #fafafb;
7
+ .forbiddenColor {
8
+ background-color: #f2f3f4;
9
+ }
7
10
  .setting-point-map-page-content-img-select {
8
11
  position: relative;
9
12
  }
@@ -81,6 +84,15 @@
81
84
  color: #1454e5;
82
85
  border: 1px solid #1454e5;
83
86
  }
87
+ &-btnRight {
88
+ display: flex;
89
+ align-items: center;
90
+ margin-right: 310px;
91
+ margin-left: auto;
92
+ .commentBtn {
93
+ margin-left: 10px;
94
+ }
95
+ }
84
96
  }
85
97
  &-info {
86
98
  display: flex;
@@ -179,6 +191,10 @@
179
191
  font-style: normal;
180
192
  line-height: normal;
181
193
  }
194
+ &-ptxt {
195
+ display: block;
196
+ transform: translateY(6px);
197
+ }
182
198
  &-row {
183
199
  display: flex;
184
200
  flex-direction: row;
@@ -234,6 +250,47 @@
234
250
  border: 1px solid #1454e5;
235
251
  }
236
252
  }
253
+ &-content {
254
+ min-height: 300px;
255
+ }
256
+ }
257
+ }
258
+ &-right {
259
+ margin-left: auto;
260
+ &-button {
261
+ margin-left: 10px;
262
+ }
263
+ }
264
+ &-tabList {
265
+ display: flex;
266
+ align-items: center;
267
+ color: #9aa1a9;
268
+ border-radius: 5px;
269
+ // outline: 1px solid #9aa1a9;
270
+ &-item {
271
+ box-sizing: border-box;
272
+ width: 90px;
273
+ height: 32px;
274
+ line-height: 32px;
275
+ text-align: center;
276
+ cursor: pointer;
277
+ }
278
+ &-item:nth-child(1) {
279
+ border-top: 1px solid #9aa1a9;
280
+ border-bottom: 1px solid #9aa1a9;
281
+ border-left: 1px solid #9aa1a9;
282
+ border-radius: 2px 0 0 2px;
283
+ }
284
+ &-item:nth-child(2) {
285
+ border-top: 1px solid #9aa1a9;
286
+ border-right: 1px solid #9aa1a9;
287
+ border-bottom: 1px solid #9aa1a9;
288
+ border-radius: 0 2px 2px 0;
289
+ }
290
+ &-active {
291
+ color: #fff;
292
+ background-color: #165dff;
293
+ border: none !important;
237
294
  }
238
295
  }
239
296
  }
@@ -243,7 +300,6 @@
243
300
  right: 6px;
244
301
  }
245
302
  }
246
-
247
303
  &-content-img-select {
248
304
  position: relative;
249
305
  display: flex;
@@ -260,7 +316,77 @@
260
316
  max-height: 78px;
261
317
  }
262
318
  }
319
+ &-comment {
320
+ width: 100%;
321
+ margin-top: 20px;
322
+ &-tab {
323
+ display: flex;
324
+ align-items: center;
325
+ margin: 0 10px 0 20px;
326
+ padding-bottom: 10px;
327
+ font-size: 16px;
328
+ border-bottom: 1px solid #e6e7ea;
329
+
330
+ &-btn {
331
+ color: #9aa1a9;
332
+ font-size: 16px;
333
+ cursor: pointer;
334
+ }
335
+ &-btnActive {
336
+ color: #116acc;
337
+ font-weight: bold;
338
+ }
339
+ &-btn + &-btn::before {
340
+ display: inline-block;
341
+ margin: 0 10px;
342
+ color: #9aa1a9;
343
+ font-weight: bold;
344
+ transform: translateY(-2px);
345
+ content: '|';
346
+ }
347
+ }
348
+ &-empty {
349
+ min-height: 200px;
350
+ color: #9aa1a9;
351
+ font-size: 16px;
352
+ line-height: 200px;
353
+ text-align: center;
354
+ }
355
+ &-list {
356
+ margin: 0 10px 0 20px;
357
+ padding: 10px 0;
358
+ border-bottom: 1px solid #e6e7ea;
359
+ &-time {
360
+ margin-left: 10px;
361
+ color: #9aa1a9;
362
+ font-size: 12px;
363
+ }
364
+ &-text {
365
+ margin-top: 5px;
366
+ color: #9aa1a9;
367
+ font-size: 12px;
368
+ }
369
+ }
370
+ &-content {
371
+ min-height: 200px;
372
+ // max-height: 400px;
373
+ // overflow-y:auto ;
374
+ // overflow-x: hidden;
375
+ }
376
+ }
377
+ &-history {
378
+ &-list {
379
+ margin: 0 10px 0 20px;
380
+ padding: 10px 0;
381
+ border-bottom: 1px solid #e6e7ea;
382
+ span {
383
+ margin: 0 5px;
384
+ color: #116acc;
385
+ }
386
+ }
387
+ }
263
388
  }
389
+
264
390
  #system-setting-demand {
265
391
  position: fixed;
266
392
  z-index: -1000;
@@ -6,7 +6,6 @@ import { DemoWrapper } from '@zgfe/business-lib';
6
6
  // import { Button } from 'antd';
7
7
  // const classPrefix = 'system-setting-approval-process-create-content';
8
8
  export default (function () {
9
- console.log('window.innerWidth', window.innerWidth);
10
9
  return /*#__PURE__*/React.createElement(DemoWrapper, {
11
10
  defaultApp: 99825
12
11
  }, /*#__PURE__*/React.createElement(CreateDemand, null));
@@ -295,7 +295,6 @@ var CreateDemand = function CreateDemand(props) {
295
295
  });
296
296
  };
297
297
  var viewEventProp = function viewEventProp(record) {
298
- console.log('viewEventProp', record);
299
298
  setEventAttrListShow(true);
300
299
  setEventProp(record.event_attrs);
301
300
  };
@@ -46,7 +46,6 @@ export default (function () {
46
46
  };
47
47
  var initFun = function initFun(callbackFun, data) {
48
48
  createDemandCallbackFun = callbackFun;
49
- console.log('initFun', data);
50
49
  setSelectObj(data || []);
51
50
  setIsShowSelectList(true);
52
51
  };
@@ -63,7 +63,7 @@ export default (function (props) {
63
63
  className: "".concat(classPrefix, "-header-back")
64
64
  }, /*#__PURE__*/React.createElement(IconFont, {
65
65
  type: "fanhuiicon"
66
- }), "\u8FD4\u56DE"), "\u57CB\u70B9\u5730\u56FE"), /*#__PURE__*/React.createElement("div", {
66
+ }), "\u8FD4\u56DE"), "\u81EA\u5B9A\u4E49\u57CB\u70B9\u5730\u56FE"), /*#__PURE__*/React.createElement("div", {
67
67
  className: "".concat(classPrefix, "-header-right")
68
68
  }, /*#__PURE__*/React.createElement(Button, {
69
69
  onClick: function onClick() {
@@ -209,7 +209,6 @@ var CreateDemand = function CreateDemand(props) {
209
209
  });
210
210
  };
211
211
  var gotoPage = function gotoPage(type, data) {
212
- console.log('data', data);
213
212
  switch (type) {
214
213
  case 'event':
215
214
  window.open('/webapp/app/' + (currentApp === null || currentApp === void 0 ? void 0 : currentApp.appId) + '/plat/0/analytics/dataCollectManage?key=' + data, '_blank');
@@ -389,7 +388,6 @@ var CreateDemand = function CreateDemand(props) {
389
388
  }],
390
389
  onClick: function onClick(_ref) {
391
390
  var key = _ref.key;
392
- console.log('key', key);
393
391
  switch (key) {
394
392
  case '0':
395
393
  submitDemand(3);