@titaui/pc 1.12.48 → 1.12.49-beta.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.
@@ -2,7 +2,12 @@
2
2
  padding: 12px 0;
3
3
  }
4
4
 
5
+ .titaui-okr-progress:hover .titaui-okr-progress__title-arrow {
6
+ opacity: 1;
7
+ }
8
+
5
9
  .titaui-okr-progress__title {
10
+ position: relative;
6
11
  font-size: 18px;
7
12
  font-weight: 600;
8
13
  color: #141c28;
@@ -30,12 +35,49 @@
30
35
  opacity: 0.8;
31
36
  }
32
37
 
38
+ .titaui-okr-progress__title-arrow {
39
+ opacity: 0;
40
+ transition: all 0.3s;
41
+ position: absolute;
42
+ left: -28px;
43
+ display: inline-flex;
44
+ align-items: center;
45
+ justify-content: center;
46
+ width: 24px;
47
+ height: 24px;
48
+ border-radius: 8px;
49
+ cursor: pointer;
50
+ }
51
+
52
+ .titaui-okr-progress__title-arrow--show {
53
+ opacity: 1;
54
+ }
55
+
56
+ .titaui-okr-progress__title-arrow:hover {
57
+ background: #F0F4FA;
58
+ }
59
+
60
+ .titaui-okr-progress__title-arrow-icon {
61
+ font-size: 16px;
62
+ transform: scale(0.5);
63
+ transition: all 0.3s;
64
+ }
65
+
66
+ .titaui-okr-progress__title-arrow-icon--rotate {
67
+ transform: rotate(-90deg) scale(0.5);
68
+ transition: all 0.3s;
69
+ }
70
+
33
71
  .titaui-okr-progress__table {
34
72
  border: 1px solid #dfe3ea;
35
73
  border-radius: 12px;
36
74
  margin-top: 12px;
37
75
  }
38
76
 
77
+ .titaui-okr-progress__table--hide {
78
+ display: none;
79
+ }
80
+
39
81
  .titaui-okr-progress__table-obj {
40
82
  padding: 8px 0;
41
83
  }
@@ -29,12 +29,16 @@ var _interface = require("../task-progress/interface");
29
29
 
30
30
  require("./index.css");
31
31
 
32
+ var _classnames = _interopRequireDefault(require("classnames"));
33
+
32
34
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
33
35
 
34
36
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
35
37
 
36
38
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
37
39
 
40
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
41
+
38
42
  function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
39
43
 
40
44
  function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
@@ -61,16 +65,25 @@ var OkrProgress = function OkrProgress(_ref) {
61
65
  rowsData = _useState2[0],
62
66
  setRowsData = _useState2[1];
63
67
 
68
+ var _useState3 = (0, _react.useState)(true),
69
+ _useState4 = _slicedToArray(_useState3, 2),
70
+ tableVisible = _useState4[0],
71
+ setTableVisible = _useState4[1];
72
+
73
+ var handleClickToHideTable = function handleClickToHideTable() {
74
+ setTableVisible(!tableVisible);
75
+ };
76
+
64
77
  var renderTitle = (0, _react.useMemo)(function () {
65
78
  if (reportType === _interface.EReportType.Daily) {
66
- return (0, _getLocale.getLocale)("Rep_NewS_ToOKRpro");
79
+ return (0, _getLocale.getLocale)('Rep_NewS_ToOKRpro');
67
80
  } else if (reportType === _interface.EReportType.Weekly) {
68
- return (0, _getLocale.getLocale)("Rep_NewS_ThisOKRprogr");
81
+ return (0, _getLocale.getLocale)('Rep_NewS_ThisOKRprogr');
69
82
  } else if (reportType === _interface.EReportType.Month) {
70
- return (0, _getLocale.getLocale)("Rep_NewS_TmonOKRpro");
83
+ return (0, _getLocale.getLocale)('Rep_NewS_TmonOKRpro');
71
84
  }
72
85
 
73
- return "";
86
+ return '';
74
87
  }, [reportType]);
75
88
  var krOrder = 0;
76
89
  var renderTable = (0, _react.useMemo)(function () {
@@ -149,8 +162,13 @@ var OkrProgress = function OkrProgress(_ref) {
149
162
  className: prefix
150
163
  }, /*#__PURE__*/_react["default"].createElement("div", {
151
164
  className: "".concat(prefix, "__title")
152
- }, renderTitle), /*#__PURE__*/_react["default"].createElement("div", {
153
- className: "".concat(prefix, "__table")
165
+ }, /*#__PURE__*/_react["default"].createElement("div", {
166
+ className: (0, _classnames["default"])("".concat(prefix, "__title-arrow"), _defineProperty({}, "".concat(prefix, "__title-arrow--show"), !tableVisible)),
167
+ onClick: handleClickToHideTable
168
+ }, /*#__PURE__*/_react["default"].createElement("i", {
169
+ className: (0, _classnames["default"])('tu-icon-caret-down', "".concat(prefix, "__title-arrow-icon"), _defineProperty({}, "".concat(prefix, "__title-arrow-icon--rotate"), !tableVisible))
170
+ })), renderTitle), /*#__PURE__*/_react["default"].createElement("div", {
171
+ className: (0, _classnames["default"])("".concat(prefix, "__table"), _defineProperty({}, "".concat(prefix, "__table--hide"), !tableVisible))
154
172
  }, renderTable));
155
173
  };
156
174
 
@@ -146,6 +146,16 @@
146
146
  margin-right: 2px;
147
147
  }
148
148
 
149
+ .titaui-dynamic-new-summary-header__drop-selector {
150
+ padding: 16px 12px;
151
+ }
152
+
153
+ .titaui-dynamic-new-summary-header__drop-selector .titaui-drop-selector__operation-item {
154
+ padding: 0 8px;
155
+ border-radius: 8px;
156
+ box-sizing: border-box;
157
+ }
158
+
149
159
  .titaui-dynamic-new-summary__operate .drawer-content-wrapper {
150
160
  width: 372px !important;
151
161
  }
@@ -366,20 +366,12 @@ var DynamicItemHeader = function DynamicItemHeader(_ref) {
366
366
  popupProps: {
367
367
  zIndex: 1000
368
368
  },
369
+ className: "".concat(prefix, "__drop-selector"),
369
370
  trigger: /*#__PURE__*/_react["default"].createElement("span", {
370
371
  className: (0, _classnames["default"])("".concat(prefix, "-right"), 'tu-icon-more1'),
371
372
  onClick: handleShowDropSelector
372
373
  })
373
374
  }, /*#__PURE__*/_react["default"].createElement(_conditionRender["default"], {
374
- condition: showCollect
375
- }, /*#__PURE__*/_react["default"].createElement(_dropSelector.Item, {
376
- name: "collect",
377
- onClick: handleCollectClick
378
- }, /*#__PURE__*/_react["default"].createElement("div", {
379
- className: "".concat(prefix, "__more-operate-selection")
380
- }, /*#__PURE__*/_react["default"].createElement("i", {
381
- className: (0, _classnames["default"])('tu-icon-APP-shoucang', "".concat(prefix, "__more-operate-selection-icon"))
382
- }), nowIsCollect ? (0, _getLocale.getLocale)('Mod_CancCollection') : (0, _getLocale.getLocale)('Mod_Collection')))), /*#__PURE__*/_react["default"].createElement(_conditionRender["default"], {
383
375
  condition: showEdit && data.isEdit
384
376
  }, /*#__PURE__*/_react["default"].createElement(_dropSelector.Item, {
385
377
  name: "edit",
@@ -389,15 +381,6 @@ var DynamicItemHeader = function DynamicItemHeader(_ref) {
389
381
  }, /*#__PURE__*/_react["default"].createElement("i", {
390
382
  className: (0, _classnames["default"])('tu-icon-bianji3', "".concat(prefix, "__more-operate-selection-icon"))
391
383
  }), (0, _getLocale.getLocale)('Mod_Editor')))), /*#__PURE__*/_react["default"].createElement(_conditionRender["default"], {
392
- condition: showOperateRecord
393
- }, /*#__PURE__*/_react["default"].createElement(_dropSelector.Item, {
394
- name: "record",
395
- onClick: handleOpenOperateRecord
396
- }, /*#__PURE__*/_react["default"].createElement("div", {
397
- className: "".concat(prefix, "__more-operate-selection")
398
- }, /*#__PURE__*/_react["default"].createElement("i", {
399
- className: (0, _classnames["default"])('tu-icon-jinzhan-s', "".concat(prefix, "__more-operate-selection-icon"))
400
- }), (0, _getLocale.getLocale)('Per_details_OperationRecord')))), /*#__PURE__*/_react["default"].createElement(_conditionRender["default"], {
401
384
  condition: showDelete && data.isEdit
402
385
  }, /*#__PURE__*/_react["default"].createElement(_dropSelector.Item, {
403
386
  name: "delete",
@@ -406,7 +389,25 @@ var DynamicItemHeader = function DynamicItemHeader(_ref) {
406
389
  className: "".concat(prefix, "__more-operate-selection")
407
390
  }, /*#__PURE__*/_react["default"].createElement("i", {
408
391
  className: (0, _classnames["default"])('tu-icon-del', "".concat(prefix, "__more-operate-selection-icon"))
409
- }), (0, _getLocale.getLocale)('Mod_Delete'))))))), /*#__PURE__*/_react["default"].createElement("div", {
392
+ }), (0, _getLocale.getLocale)('Mod_Delete')))), /*#__PURE__*/_react["default"].createElement(_conditionRender["default"], {
393
+ condition: showCollect
394
+ }, /*#__PURE__*/_react["default"].createElement(_dropSelector.Item, {
395
+ name: "collect",
396
+ onClick: handleCollectClick
397
+ }, /*#__PURE__*/_react["default"].createElement("div", {
398
+ className: "".concat(prefix, "__more-operate-selection")
399
+ }, /*#__PURE__*/_react["default"].createElement("i", {
400
+ className: (0, _classnames["default"])('tu-icon-APP-shoucang', "".concat(prefix, "__more-operate-selection-icon"))
401
+ }), nowIsCollect ? (0, _getLocale.getLocale)('Mod_CancCollection') : (0, _getLocale.getLocale)('Mod_Collection')))), /*#__PURE__*/_react["default"].createElement(_conditionRender["default"], {
402
+ condition: showOperateRecord
403
+ }, /*#__PURE__*/_react["default"].createElement(_dropSelector.Item, {
404
+ name: "record",
405
+ onClick: handleOpenOperateRecord
406
+ }, /*#__PURE__*/_react["default"].createElement("div", {
407
+ className: "".concat(prefix, "__more-operate-selection")
408
+ }, /*#__PURE__*/_react["default"].createElement("i", {
409
+ className: (0, _classnames["default"])('tu-icon-jinzhan-s', "".concat(prefix, "__more-operate-selection-icon"))
410
+ }), (0, _getLocale.getLocale)('Per_details_OperationRecord'))))))), /*#__PURE__*/_react["default"].createElement("div", {
410
411
  className: "".concat(prefix, "-desc-time")
411
412
  }, createDate))), renderDialogConfirm, /*#__PURE__*/_react["default"].createElement(_commentsDialog["default"], {
412
413
  visible: evaluateVisible,
@@ -1,8 +1,13 @@
1
- .titaui-dynamic-summary-task-progress {
1
+ .titaui-dynamic-task-progress {
2
2
  padding: 12px 0;
3
3
  }
4
4
 
5
- .titaui-dynamic-summary-task-progress__title {
5
+ .titaui-dynamic-task-progress:hover .titaui-dynamic-task-progress__title-arrow {
6
+ opacity: 1;
7
+ }
8
+
9
+ .titaui-dynamic-task-progress__title {
10
+ position: relative;
6
11
  font-size: 18px;
7
12
  font-weight: 600;
8
13
  color: #141c28;
@@ -12,7 +17,7 @@
12
17
  align-items: center;
13
18
  }
14
19
 
15
- .titaui-dynamic-summary-task-progress__title-update {
20
+ .titaui-dynamic-task-progress__title-update {
16
21
  font-size: 14px;
17
22
  font-weight: 400;
18
23
  color: #2879ff;
@@ -21,28 +26,65 @@
21
26
  align-items: center;
22
27
  }
23
28
 
24
- .titaui-dynamic-summary-task-progress__title-update-icon {
29
+ .titaui-dynamic-task-progress__title-update-icon {
25
30
  margin-right: 4px;
26
31
  }
27
32
 
28
- .titaui-dynamic-summary-task-progress__title-update:hover {
33
+ .titaui-dynamic-task-progress__title-update:hover {
29
34
  cursor: pointer;
30
35
  opacity: 0.8;
31
36
  }
32
37
 
33
- .titaui-dynamic-summary-task-progress__table {
38
+ .titaui-dynamic-task-progress__title-arrow {
39
+ opacity: 0;
40
+ transition: all 0.3s;
41
+ position: absolute;
42
+ left: -28px;
43
+ display: inline-flex;
44
+ align-items: center;
45
+ justify-content: center;
46
+ width: 24px;
47
+ height: 24px;
48
+ border-radius: 8px;
49
+ cursor: pointer;
50
+ }
51
+
52
+ .titaui-dynamic-task-progress__title-arrow--show {
53
+ opacity: 1;
54
+ }
55
+
56
+ .titaui-dynamic-task-progress__title-arrow:hover {
57
+ background: #F0F4FA;
58
+ }
59
+
60
+ .titaui-dynamic-task-progress__title-arrow-icon {
61
+ font-size: 16px;
62
+ transform: scale(0.5);
63
+ transition: all 0.3s;
64
+ }
65
+
66
+ .titaui-dynamic-task-progress__title-arrow-icon--rotate {
67
+ transform: rotate(-90deg) scale(0.5);
68
+ transition: all 0.3s;
69
+ }
70
+
71
+ .titaui-dynamic-task-progress__table {
34
72
  border: 1px solid #dfe3ea;
35
73
  border-radius: 12px;
36
74
  margin-top: 12px;
37
75
  }
38
76
 
39
- .titaui-dynamic-summary-task-progress__table-row-title {
77
+ .titaui-dynamic-task-progress__table--hide {
78
+ display: none;
79
+ }
80
+
81
+ .titaui-dynamic-task-progress__table-row-title {
40
82
  font-size: 14px;
41
83
  color: #141c28;
42
84
  padding: 8px 0;
43
85
  }
44
86
 
45
- .titaui-dynamic-summary-task-progress__table-row-title-remain {
87
+ .titaui-dynamic-task-progress__table-row-title-remain {
46
88
  background: rgba(240, 94, 94, 0.16);
47
89
  border-radius: 12px;
48
90
  padding: 0 8px;
@@ -54,7 +96,7 @@
54
96
  margin-left: 4px;
55
97
  }
56
98
 
57
- .titaui-dynamic-summary-task-progress__table-row-title-worktime {
99
+ .titaui-dynamic-task-progress__table-row-title-worktime {
58
100
  display: inline-flex;
59
101
  margin-left: 4px;
60
102
  height: 20px;
@@ -66,64 +108,64 @@
66
108
  line-height: 18px;
67
109
  }
68
110
 
69
- .titaui-dynamic-summary-task-progress__table-row-title-icon {
111
+ .titaui-dynamic-task-progress__table-row-title-icon {
70
112
  margin-right: 4px;
71
113
  vertical-align: middle;
72
114
  }
73
115
 
74
- .titaui-dynamic-summary-task-progress__table-row-title-text {
116
+ .titaui-dynamic-task-progress__table-row-title-text {
75
117
  font-size: 14px;
76
118
  font-weight: 600;
77
119
  color: #141c28;
78
120
  line-height: 22px;
79
121
  }
80
122
 
81
- .titaui-dynamic-summary-task-progress__table-row-title-text:hover {
123
+ .titaui-dynamic-task-progress__table-row-title-text:hover {
82
124
  cursor: pointer;
83
125
  color: #2879ff;
84
126
  }
85
127
 
86
- .titaui-dynamic-summary-task-progress__table table {
128
+ .titaui-dynamic-task-progress__table table {
87
129
  width: 100%;
88
130
  }
89
131
 
90
- .titaui-dynamic-summary-task-progress__table table thead {
132
+ .titaui-dynamic-task-progress__table table thead {
91
133
  width: 100%;
92
134
  }
93
135
 
94
- .titaui-dynamic-summary-task-progress__table table tbody {
136
+ .titaui-dynamic-task-progress__table table tbody {
95
137
  width: 100%;
96
138
  }
97
139
 
98
- .titaui-dynamic-summary-task-progress__table table tbody tr {
140
+ .titaui-dynamic-task-progress__table table tbody tr {
99
141
  border-bottom: 1px solid #dfe3ea;
100
142
  }
101
143
 
102
- .titaui-dynamic-summary-task-progress__table table tbody tr:last-child {
144
+ .titaui-dynamic-task-progress__table table tbody tr:last-child {
103
145
  border-bottom: unset;
104
146
  }
105
147
 
106
- .titaui-dynamic-summary-task-progress__table table tbody tr td {
148
+ .titaui-dynamic-task-progress__table table tbody tr td {
107
149
  box-sizing: border-box;
108
150
  padding: 0 12px;
109
151
  border-right: 1px solid #dfe3ea;
110
152
  }
111
153
 
112
- .titaui-dynamic-summary-task-progress__table table tbody tr td:first-child {
154
+ .titaui-dynamic-task-progress__table table tbody tr td:first-child {
113
155
  overflow: hidden;
114
156
  width: 282px;
115
157
  max-width: 282px;
116
158
  }
117
159
 
118
- .titaui-dynamic-summary-task-progress__table table tbody tr td:last-child {
160
+ .titaui-dynamic-task-progress__table table tbody tr td:last-child {
119
161
  border-right: unset;
120
162
  }
121
163
 
122
- .titaui-dynamic-summary-task-progress__table table tbody tr td:nth-child(2) {
164
+ .titaui-dynamic-task-progress__table table tbody tr td:nth-child(2) {
123
165
  padding: 0;
124
166
  }
125
167
 
126
- .titaui-dynamic-summary-task-progress__table-title {
168
+ .titaui-dynamic-task-progress__table-title {
127
169
  height: 40px;
128
170
  background: #f0f4fa;
129
171
  font-size: 13px;
@@ -131,44 +173,48 @@
131
173
  line-height: 18px;
132
174
  }
133
175
 
134
- .titaui-dynamic-summary-task-progress__table-title td {
176
+ .titaui-dynamic-task-progress__table-title td {
135
177
  text-align: center;
136
178
  padding: 0 12px;
137
179
  box-sizing: border-box;
138
180
  border-right: 1px solid #dfe3ea;
139
181
  }
140
182
 
141
- .titaui-dynamic-summary-task-progress__table-title td:last-child {
183
+ .titaui-dynamic-task-progress__table-title td:last-child {
142
184
  border-right: none;
143
185
  }
144
186
 
145
- .titaui-dynamic-summary-task-progress__table-title-okrs {
187
+ .titaui-dynamic-task-progress__table-title-okrs {
146
188
  overflow: hidden;
147
189
  border-top-left-radius: 12px;
148
190
  width: 282px;
149
191
  }
150
192
 
151
- .titaui-dynamic-summary-task-progress__table-title-progress {
193
+ .titaui-dynamic-task-progress__table-title-progress {
152
194
  width: 102px;
153
195
  }
154
196
 
155
- .titaui-dynamic-summary-task-progress__table-title-progress-desc {
197
+ .titaui-dynamic-task-progress__table-title-progress-desc {
156
198
  overflow: hidden;
157
199
  border-top-right-radius: 12px;
158
200
  }
159
201
 
160
- .titaui-dynamic-summary-task-progress__table-title-progress-desc-icon {
202
+ .titaui-dynamic-task-progress__table-title-progress-desc-icon {
161
203
  font-size: 14px;
162
204
  margin-left: 4px;
163
205
  vertical-align: text-top;
164
206
  }
165
207
 
166
- .titaui-dynamic-summary-task-progress__statistic {
208
+ .titaui-dynamic-task-progress__statistic {
167
209
  display: flex;
168
210
  margin-top: 12px;
169
211
  }
170
212
 
171
- .titaui-dynamic-summary-task-progress__statistic-item {
213
+ .titaui-dynamic-task-progress__statistic--hide {
214
+ display: none;
215
+ }
216
+
217
+ .titaui-dynamic-task-progress__statistic-item {
172
218
  flex: 1;
173
219
  height: 48px;
174
220
  max-width: 349px;
@@ -187,24 +233,24 @@
187
233
  cursor: pointer;
188
234
  }
189
235
 
190
- .titaui-dynamic-summary-task-progress__statistic-item:last-child {
236
+ .titaui-dynamic-task-progress__statistic-item:last-child {
191
237
  margin-right: 0;
192
238
  }
193
239
 
194
- .titaui-dynamic-summary-task-progress__statistic-item--finished {
240
+ .titaui-dynamic-task-progress__statistic-item--finished {
195
241
  background: rgba(0, 214, 133, 0.1);
196
242
  }
197
243
 
198
- .titaui-dynamic-summary-task-progress__statistic-item--finished-text {
244
+ .titaui-dynamic-task-progress__statistic-item--finished-text {
199
245
  color: #00d685;
200
246
  font-size: 16px;
201
247
  }
202
248
 
203
- .titaui-dynamic-summary-task-progress__statistic-item--finished-active {
249
+ .titaui-dynamic-task-progress__statistic-item--finished-active {
204
250
  background: rgba(0, 214, 133, 0.3);
205
251
  }
206
252
 
207
- .titaui-dynamic-summary-task-progress__statistic-item--finished-active::before {
253
+ .titaui-dynamic-task-progress__statistic-item--finished-active::before {
208
254
  content: "";
209
255
  position: absolute;
210
256
  top: 0;
@@ -215,20 +261,20 @@
215
261
  border-radius: 12px 0 0 12px;
216
262
  }
217
263
 
218
- .titaui-dynamic-summary-task-progress__statistic-item--processing {
264
+ .titaui-dynamic-task-progress__statistic-item--processing {
219
265
  background: rgba(40, 121, 255, 0.1);
220
266
  }
221
267
 
222
- .titaui-dynamic-summary-task-progress__statistic-item--processing-text {
268
+ .titaui-dynamic-task-progress__statistic-item--processing-text {
223
269
  color: #2879ff;
224
270
  font-size: 16px;
225
271
  }
226
272
 
227
- .titaui-dynamic-summary-task-progress__statistic-item--processing-active {
273
+ .titaui-dynamic-task-progress__statistic-item--processing-active {
228
274
  background: rgba(40, 121, 255, 0.3);
229
275
  }
230
276
 
231
- .titaui-dynamic-summary-task-progress__statistic-item--processing-active::before {
277
+ .titaui-dynamic-task-progress__statistic-item--processing-active::before {
232
278
  content: "";
233
279
  position: absolute;
234
280
  top: 0;
@@ -239,20 +285,20 @@
239
285
  border-radius: 12px 0 0 12px;
240
286
  }
241
287
 
242
- .titaui-dynamic-summary-task-progress__statistic-item--overdue {
288
+ .titaui-dynamic-task-progress__statistic-item--overdue {
243
289
  background: rgba(240, 94, 94, 0.1);
244
290
  }
245
291
 
246
- .titaui-dynamic-summary-task-progress__statistic-item--overdue-text {
292
+ .titaui-dynamic-task-progress__statistic-item--overdue-text {
247
293
  color: #f05e5e;
248
294
  font-size: 16px;
249
295
  }
250
296
 
251
- .titaui-dynamic-summary-task-progress__statistic-item--overdue-active {
297
+ .titaui-dynamic-task-progress__statistic-item--overdue-active {
252
298
  background: rgba(240, 94, 94, 0.3);
253
299
  }
254
300
 
255
- .titaui-dynamic-summary-task-progress__statistic-item--overdue-active::before {
301
+ .titaui-dynamic-task-progress__statistic-item--overdue-active::before {
256
302
  content: "";
257
303
  position: absolute;
258
304
  top: 0;
@@ -43,7 +43,7 @@ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Sy
43
43
 
44
44
  function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
45
45
 
46
- var prefix = 'titaui-dynamic-summary-task-progress';
46
+ var prefix = 'titaui-dynamic-task-progress';
47
47
 
48
48
  var TaskProgress = function TaskProgress(_ref) {
49
49
  var data = _ref.data,
@@ -68,6 +68,15 @@ var TaskProgress = function TaskProgress(_ref) {
68
68
  activeId = _useState6[0],
69
69
  setActiveId = _useState6[1];
70
70
 
71
+ var _useState7 = (0, _react.useState)(true),
72
+ _useState8 = _slicedToArray(_useState7, 2),
73
+ tableVisible = _useState8[0],
74
+ setTableVisible = _useState8[1];
75
+
76
+ var handleClickToHideTable = function handleClickToHideTable() {
77
+ setTableVisible(!tableVisible);
78
+ };
79
+
71
80
  var handleFilterDone = function handleFilterDone() {
72
81
  setActiveId(1);
73
82
  };
@@ -82,14 +91,14 @@ var TaskProgress = function TaskProgress(_ref) {
82
91
 
83
92
  var renderTitle = (0, _react.useMemo)(function () {
84
93
  if (reportType === _interface.EReportType.Daily) {
85
- return (0, _getLocale.getLocale)("Rep_NewS_Toworkasks");
94
+ return (0, _getLocale.getLocale)('Rep_NewS_Toworkasks');
86
95
  } else if (reportType === _interface.EReportType.Weekly) {
87
- return (0, _getLocale.getLocale)("Rep_NewS_Thisetasks");
96
+ return (0, _getLocale.getLocale)('Rep_NewS_Thisetasks');
88
97
  } else if (reportType === _interface.EReportType.Month) {
89
- return (0, _getLocale.getLocale)("Rep_NewS_Taskormonth");
98
+ return (0, _getLocale.getLocale)('Rep_NewS_Taskormonth');
90
99
  }
91
100
 
92
- return "";
101
+ return '';
93
102
  }, [reportType]);
94
103
  var renderTable = (0, _react.useMemo)(function () {
95
104
  return /*#__PURE__*/_react["default"].createElement("table", null, /*#__PURE__*/_react["default"].createElement("thead", null, /*#__PURE__*/_react["default"].createElement("tr", {
@@ -153,8 +162,13 @@ var TaskProgress = function TaskProgress(_ref) {
153
162
  className: prefix
154
163
  }, /*#__PURE__*/_react["default"].createElement("div", {
155
164
  className: "".concat(prefix, "__title")
156
- }, renderTitle), statusStatistic.done + statusStatistic.doing + statusStatistic.overDue > 0 && /*#__PURE__*/_react["default"].createElement("div", {
157
- className: "".concat(prefix, "__statistic")
165
+ }, /*#__PURE__*/_react["default"].createElement("div", {
166
+ className: (0, _classnames["default"])("".concat(prefix, "__title-arrow"), _defineProperty({}, "".concat(prefix, "__title-arrow--show"), !tableVisible)),
167
+ onClick: handleClickToHideTable
168
+ }, /*#__PURE__*/_react["default"].createElement("i", {
169
+ className: (0, _classnames["default"])('tu-icon-caret-down', "".concat(prefix, "__title-arrow-icon"), _defineProperty({}, "".concat(prefix, "__title-arrow-icon--rotate"), !tableVisible))
170
+ })), renderTitle), statusStatistic.done + statusStatistic.doing + statusStatistic.overDue > 0 && /*#__PURE__*/_react["default"].createElement("div", {
171
+ className: (0, _classnames["default"])("".concat(prefix, "__statistic"), _defineProperty({}, "".concat(prefix, "__statistic--hide"), !tableVisible))
158
172
  }, statusStatistic.done > 0 && /*#__PURE__*/_react["default"].createElement("span", {
159
173
  onClick: handleFilterDone,
160
174
  className: (0, _classnames["default"])("".concat(prefix, "__statistic-item ").concat(prefix, "__statistic-item--finished"), _defineProperty({}, "".concat(prefix, "__statistic-item--finished-active"), activeId === 1))
@@ -171,7 +185,7 @@ var TaskProgress = function TaskProgress(_ref) {
171
185
  }, (0, _getLocale.getLocale)('OKR_MyO_E_Overdue'), /*#__PURE__*/_react["default"].createElement("span", {
172
186
  className: "".concat(prefix, "__statistic-item--overdue-text")
173
187
  }, statusStatistic.overDue))), (tableData[1].length > 0 || tableData[2].length > 0 || tableData[3].length > 0) && /*#__PURE__*/_react["default"].createElement("div", {
174
- className: "".concat(prefix, "__table")
188
+ className: (0, _classnames["default"])("".concat(prefix, "__table"), _defineProperty({}, "".concat(prefix, "__table--hide"), !tableVisible))
175
189
  }, renderTable));
176
190
  };
177
191
 
@@ -11,6 +11,11 @@
11
11
  box-sizing: border-box;
12
12
  }
13
13
 
14
+ .titaui-dynamic-summary__evalute-card:hover .titaui-dynamic-summary__evalute-card__evalute {
15
+ opacity: 1;
16
+ transition: all 0.3s;
17
+ }
18
+
14
19
  .titaui-dynamic-summary__evalute-card__head {
15
20
  display: inline-flex;
16
21
  align-items: center;
@@ -35,6 +40,12 @@
35
40
  }
36
41
 
37
42
  .titaui-dynamic-summary__evalute-card__head-rate {
43
+ margin-left: 8px;
44
+ display: inline-flex;
45
+ align-items: center;
46
+ }
47
+
48
+ .titaui-dynamic-summary__evalute-card__head-rate-text {
38
49
  margin-left: 4px;
39
50
  color: #F0A326;
40
51
  }
@@ -76,6 +87,8 @@
76
87
  }
77
88
 
78
89
  .titaui-dynamic-summary__evalute-card__evalute {
90
+ opacity: 0;
91
+ transition: all 0.3s;
79
92
  position: absolute;
80
93
  right: 0;
81
94
  top: 8px;
@@ -165,11 +165,13 @@ var EvaluteCard = function EvaluteCard(props) {
165
165
  color: (user === null || user === void 0 ? void 0 : user.avatar.color) || ""
166
166
  }), /*#__PURE__*/_react["default"].createElement("span", {
167
167
  className: "".concat(preCls, "__head-name")
168
- }, user === null || user === void 0 ? void 0 : user.name), (0, _getLocale.getLocale)("Rep_NewS_EvaluationOF"), type === 1 && /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(_rate["default"], {
168
+ }, user === null || user === void 0 ? void 0 : user.name), (0, _getLocale.getLocale)("Rep_NewS_EvaluationOF"), type === 1 && /*#__PURE__*/_react["default"].createElement("span", {
169
+ className: "".concat(preCls, "__head-rate")
170
+ }, /*#__PURE__*/_react["default"].createElement(_rate["default"], {
169
171
  defaultValue: Number(value) / 2,
170
172
  disabled: true
171
173
  }), /*#__PURE__*/_react["default"].createElement("span", {
172
- className: "".concat(preCls, "__head-rate")
174
+ className: "".concat(preCls, "__head-rate-text")
173
175
  }, "".concat(value).concat((0, _getLocale.getLocale)("Per_Set_Form_Quantifier_Points")))), type === 2 && /*#__PURE__*/_react["default"].createElement("div", {
174
176
  className: "".concat(preCls, "__head-medal")
175
177
  }, /*#__PURE__*/_react["default"].createElement("img", {
@@ -30,6 +30,11 @@
30
30
  height: 44px;
31
31
  position: absolute;
32
32
  right: 0;
33
+ cursor: pointer;
34
+ }
35
+
36
+ .titaui-dynamic-new-report-item__content-mind:hover {
37
+ animation: dynamicQuickOperationRubberBand 1s;
33
38
  }
34
39
 
35
40
  .titaui-dynamic-new-report-item__upload {
@@ -108,3 +113,40 @@
108
113
  .titaui-dynamic-new-report-item__work .tita-rich-editor {
109
114
  min-height: auto;
110
115
  }
116
+
117
+ @keyframes dynamicQuickOperationRubberBand {
118
+ 0% {
119
+ -webkit-transform: scaleX(1);
120
+ transform: scaleX(1);
121
+ }
122
+
123
+ 30% {
124
+ -webkit-transform: scale3d(1.25, 0.75, 1);
125
+ transform: scale3d(1.25, 0.75, 1);
126
+ }
127
+
128
+ 40% {
129
+ -webkit-transform: scale3d(0.75, 1.25, 1);
130
+ transform: scale3d(0.75, 1.25, 1);
131
+ }
132
+
133
+ 50% {
134
+ -webkit-transform: scale3d(1.15, 0.85, 1);
135
+ transform: scale3d(1.15, 0.85, 1);
136
+ }
137
+
138
+ 65% {
139
+ -webkit-transform: scale3d(0.95, 1.05, 1);
140
+ transform: scale3d(0.95, 1.05, 1);
141
+ }
142
+
143
+ 75% {
144
+ -webkit-transform: scale3d(1.05, 0.95, 1);
145
+ transform: scale3d(1.05, 0.95, 1);
146
+ }
147
+
148
+ to {
149
+ -webkit-transform: scaleX(1);
150
+ transform: scaleX(1);
151
+ }
152
+ }
@@ -39,9 +39,11 @@ var _constant = require("./constant");
39
39
 
40
40
  var _util = require("./util");
41
41
 
42
+ var _bsGlobal = require("../../../../utils/bs-global");
43
+
42
44
  require("./index.css");
43
45
 
44
- var _excluded = ["data", "showDelete"];
46
+ var _excluded = ["data"];
45
47
 
46
48
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
47
49
 
@@ -79,11 +81,10 @@ var getEReportType = function getEReportType(type) {
79
81
  };
80
82
 
81
83
  var prefix = "titaui-dynamic-new-report-item";
84
+ var loginUserId = (0, _bsGlobal.getUserInfo)().Id;
82
85
 
83
86
  var DynamicReply = function DynamicReply(_ref) {
84
87
  var data = _ref.data,
85
- _ref$showDelete = _ref.showDelete,
86
- showDelete = _ref$showDelete === void 0 ? false : _ref$showDelete,
87
88
  restProps = _objectWithoutProperties(_ref, _excluded);
88
89
 
89
90
  var feedId = data.feedId,
@@ -102,16 +103,26 @@ var DynamicReply = function DynamicReply(_ref) {
102
103
  motionValue = _useState2[0],
103
104
  setMotionValue = _useState2[1];
104
105
 
106
+ var _useState3 = (0, _react.useState)(false),
107
+ _useState4 = _slicedToArray(_useState3, 2),
108
+ showDelete = _useState4[0],
109
+ setShowDelete = _useState4[1];
110
+
111
+ var _useState5 = (0, _react.useState)(false),
112
+ _useState6 = _slicedToArray(_useState5, 2),
113
+ showEdit = _useState6[0],
114
+ setShowEdit = _useState6[1];
115
+
105
116
  var contentRichTextRef = (0, _react.useRef)();
106
117
  var workPlanRichTextRef = (0, _react.useRef)();
107
118
 
108
119
  var _useContext = (0, _react.useContext)(_context.SearchKeyContext),
109
120
  searchKeyWord = _useContext.searchKeyWord;
110
121
 
111
- var _useState3 = (0, _react.useState)(evaluates || []),
112
- _useState4 = _slicedToArray(_useState3, 2),
113
- currentEvalutes = _useState4[0],
114
- setCurrentEvalutes = _useState4[1];
122
+ var _useState7 = (0, _react.useState)(evaluates || []),
123
+ _useState8 = _slicedToArray(_useState7, 2),
124
+ currentEvalutes = _useState8[0],
125
+ setCurrentEvalutes = _useState8[1];
115
126
 
116
127
  var renderSuffix = (0, _react.useMemo)(function () {
117
128
  var _classNames;
@@ -159,6 +170,12 @@ var DynamicReply = function DynamicReply(_ref) {
159
170
  setMotionValue(motion);
160
171
  }
161
172
  }, [dailyContent]);
173
+ (0, _react.useEffect)(function () {
174
+ if (loginUserId === publishUser.userId) {
175
+ setShowDelete(true);
176
+ setShowEdit(true);
177
+ }
178
+ }, []);
162
179
  return /*#__PURE__*/_react["default"].createElement("div", {
163
180
  className: prefix
164
181
  }, /*#__PURE__*/_react["default"].createElement(_summaryHeader["default"], _extends({
@@ -168,6 +185,7 @@ var DynamicReply = function DynamicReply(_ref) {
168
185
  user: publishUser,
169
186
  suffixContent: renderSuffix,
170
187
  showDelete: showDelete,
188
+ showEdit: showEdit,
171
189
  canEvaluate: canEvaluate && !currentEvalutes,
172
190
  setEvaluates: setCurrentEvalutes
173
191
  })), /*#__PURE__*/_react["default"].createElement("div", {
@@ -10,7 +10,7 @@
10
10
  .titaui-dynamic-item__content {
11
11
  position: relative;
12
12
  overflow: hidden;
13
- margin-right: 24px;
13
+ margin-right: 20px;
14
14
  }
15
15
 
16
16
  .titaui-dynamic-item__content-show-more {
@@ -100,7 +100,7 @@ var _default = function _default() {
100
100
  var showCompanyAll = baseAuth.isBoss() || baseAuth.isAssistant() || baseAuth.isPlanDailyManager();
101
101
  (0, _react.useEffect)(function () {
102
102
  if (showCompanyAll) {
103
- window.location.href = '#/summary/manage?departmentName=公司全部&departmentId=0';
103
+ window.location.href = '#/summary/manage?departmentName=公司全部&departmentId=0&modeType=date';
104
104
 
105
105
  var allDepartmentText = window.getLocale && window.getLocale(_i18n.locale.menu_alldeparment) || _i18n.locale.menu_alldeparment;
106
106
 
@@ -124,8 +124,7 @@ var _default = function _default() {
124
124
  });
125
125
  } else {
126
126
  (0, _requestApis.getMyDepartMent)().then(function (res) {
127
- location.href = "#/summary/manage?departmentName=".concat(res.Data[0].name, "&departmentId=").concat(res.Data[0].id);
128
- var rawTreeData = (0, _helper.translateDepartsToTreeNode)(res.Data);
127
+ var rawTreeData = (0, _helper.translateDepartsToTreeNode)(res.Data.departments);
129
128
  var rootNode = {
130
129
  async: true,
131
130
  data: {
@@ -133,14 +132,20 @@ var _default = function _default() {
133
132
  name: '全部管理部门'
134
133
  },
135
134
  pid: 0,
136
- id: rawTreeData[0].id,
135
+ id: -1,
137
136
  key: -1,
137
+ isLeaf: true,
138
138
  nodeType: _index.DEPART_NODE,
139
139
  title: '全部管理部门'
140
140
  };
141
141
 
142
142
  if (rawTreeData.length > 1) {
143
+ location.href = "#/summary/manage?departmentName=".concat(res.Data.departments[0].name, "&departmentId=-1&modeType=date");
143
144
  rawTreeData.unshift(rootNode);
145
+ setSelectedMenuKeys([-1]);
146
+ } else {
147
+ location.href = "#/summary/manage?departmentName=".concat(res.Data.departments[0].name, "&departmentId=").concat(res.Data.departments[0].id, "&modeType=date");
148
+ setSelectedMenuKeys([rawTreeData[0].id]);
144
149
  }
145
150
 
146
151
  setRawTreeData(_toConsumableArray(rawTreeData));
@@ -58,7 +58,7 @@ var summaryMenus = /*#__PURE__*/function () {
58
58
 
59
59
  this.COMPANYALL = _index.COMPANY_ALL_NODE;
60
60
  this.SHARE = _index.SHARE_NODE;
61
- this.SUBORDINATES = "subordinates";
61
+ this.SUBORDINATES = _index.SUBORDINATES_NODE;
62
62
  this.menus = [{
63
63
  icon: "caidan-my",
64
64
  label: _i18n.locale.menu_my_summary,
@@ -77,7 +77,7 @@ var summaryMenus = /*#__PURE__*/function () {
77
77
  icon: "caidan-xiashu",
78
78
  label: _i18n.locale.menu_my_subordinates,
79
79
  key: this.SUBORDINATES,
80
- type: _index.SUBORDINATES_NODE,
80
+ type: this.SUBORDINATES,
81
81
  isLeaf: false,
82
82
  children: [],
83
83
  href: "#/summary/subordinates",
@@ -85,8 +85,10 @@ var summaryMenus = /*#__PURE__*/function () {
85
85
  }, {
86
86
  icon: "caidan-enjoy",
87
87
  label: _i18n.locale.menu_my_share,
88
- key: PAGE_SUMMARY_SHARE,
89
- type: _index.MENU_ITEM_NOE,
88
+ key: this.SHARE,
89
+ type: this.SHARE,
90
+ isLeaf: false,
91
+ children: [],
90
92
  href: "#/summary/share",
91
93
  isShow: props.isShowShare
92
94
  }, {
@@ -116,10 +118,10 @@ var summaryMenus = /*#__PURE__*/function () {
116
118
  _createClass(summaryMenus, [{
117
119
  key: "setSubordinatesLoading",
118
120
  value: function setSubordinatesLoading(loading) {
119
- this.menus[1].children = [];
121
+ this.menus[2].children = [];
120
122
 
121
123
  if (loading) {
122
- this.menus[1].children.push({
124
+ this.menus[2].children.push({
123
125
  icon: "",
124
126
  label: "loading",
125
127
  key: "loading-subordinates",
@@ -160,6 +162,53 @@ var summaryMenus = /*#__PURE__*/function () {
160
162
 
161
163
  this.menus[2].children = treeNodeUsers;
162
164
  }
165
+ }, {
166
+ key: "setShareLoading",
167
+ value: function setShareLoading(loading) {
168
+ this.menus[3].children = [];
169
+
170
+ if (loading) {
171
+ this.menus[3].children.push({
172
+ icon: "",
173
+ label: "loading",
174
+ key: "loading-subordinates",
175
+ type: _index.LOADING_NODE,
176
+ href: "",
177
+ data: {}
178
+ });
179
+ }
180
+ }
181
+ }, {
182
+ key: "insertShare",
183
+ value: function insertShare(users) {
184
+ if (!users || !users.length) {
185
+ this.menus[3].children = [{
186
+ icon: "",
187
+ label: "empty-subordinates",
188
+ key: "empty-subordinates",
189
+ type: _index.NO_SUBORDINATES_NODE,
190
+ href: "",
191
+ data: {}
192
+ }];
193
+ return;
194
+ }
195
+
196
+ var treeNodeUsers = [];
197
+
198
+ for (var i = 0; i < users.length; i++) {
199
+ var user = users[i];
200
+ treeNodeUsers.push({
201
+ icon: "",
202
+ label: user.name,
203
+ key: "".concat(user.userId),
204
+ type: _index.USER_NODE,
205
+ href: "",
206
+ data: user
207
+ });
208
+ }
209
+
210
+ this.menus[3].children = treeNodeUsers;
211
+ }
163
212
  }, {
164
213
  key: "getMenus",
165
214
  value: function getMenus() {
@@ -64,7 +64,7 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
64
64
  maxHeight = _useState2[0],
65
65
  setMaxHeight = _useState2[1];
66
66
 
67
- var _useState3 = (0, _react.useState)(["myokr"]),
67
+ var _useState3 = (0, _react.useState)(['myokr']),
68
68
  _useState4 = _slicedToArray(_useState3, 2),
69
69
  expandedKeys = _useState4[0],
70
70
  setExpandedKeys = _useState4[1];
@@ -79,27 +79,23 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
79
79
  isShowShare = _useState8[0],
80
80
  setIsShowShare = _useState8[1];
81
81
 
82
- var _useState9 = (0, _react.useState)(baseAuth.isBoss() || baseAuth.isAssistant() || baseAuth.isPlanDailyManager()),
83
- _useState10 = _slicedToArray(_useState9, 2),
84
- isShowDepartment = _useState10[0],
85
- setIsShowDepartment = _useState10[1];
86
-
82
+ var isShowDepartment = baseAuth.isBoss() || baseAuth.isAssistant() || baseAuth.isPlanDailyManager() || baseAuth.isDepartmentLeader() || baseAuth.isHrbp();
87
83
  var flipRef = (0, _react.useRef)({
88
84
  next: function next() {},
89
85
  goback: function goback() {}
90
86
  });
91
87
  var summaryMenusData = (0, _react.useRef)(_menus.defaultRefObject);
92
88
 
93
- var _useState11 = (0, _react.useState)(function () {
89
+ var _useState9 = (0, _react.useState)(function () {
94
90
  summaryMenusData.current = new _menus["default"]({
95
91
  isShowShare: false,
96
92
  isShowDept: true
97
93
  });
98
94
  return summaryMenusData.current.getMenus();
99
95
  }),
100
- _useState12 = _slicedToArray(_useState11, 2),
101
- menus = _useState12[0],
102
- setMenus = _useState12[1]; // 判断路由高亮菜单
96
+ _useState10 = _slicedToArray(_useState9, 2),
97
+ menus = _useState10[0],
98
+ setMenus = _useState10[1]; // 判断路由高亮菜单
103
99
 
104
100
 
105
101
  (0, _react.useEffect)(function () {
@@ -139,7 +135,7 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
139
135
  resolve(true); // 获取数据
140
136
 
141
137
  (0, _requestApis.getSubordinates)({
142
- relationIds: "1,2"
138
+ relationIds: '1,2'
143
139
  }, {
144
140
  disabledDottedSubordinatesDig: true
145
141
  }).then(function (users) {
@@ -149,18 +145,41 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
149
145
  resolve(true);
150
146
  })["catch"](reject);
151
147
  });
148
+ }; // 获取共享我的数据列表
149
+
150
+
151
+ var getShareUsers = function getShareUsers() {
152
+ return new Promise(function (resolve, reject) {
153
+ var mdata = summaryMenusData.current; // 初始化 Loading
154
+
155
+ mdata.setShareLoading(true);
156
+ setMenus(mdata.getMenus());
157
+ resolve(true); // 获取数据
158
+
159
+ (0, _requestApis.getShareUsersData)().then(function (users) {
160
+ console.log(users);
161
+ mdata.setShareLoading(false);
162
+ mdata.insertShare(users);
163
+ setMenus(mdata.getMenus());
164
+ resolve(true);
165
+ })["catch"](reject);
166
+ });
152
167
  };
153
168
 
154
169
  var onLoadTreeNodeDataHandler = function onLoadTreeNodeDataHandler(treeNode) {
155
170
  return new Promise(function (resolve) {
156
- if (treeNode.key != summaryMenusData.current.SUBORDINATES) {
157
- resolve(true);
158
- } else if (treeNode.key == summaryMenusData.current.SUBORDINATES) {
171
+ if (treeNode.key == summaryMenusData.current.SUBORDINATES) {
159
172
  getSubordinaters().then(function () {
160
173
  return resolve(true);
161
174
  })["catch"](function () {
162
175
  return resolve(true);
163
176
  });
177
+ } else if (treeNode.key == summaryMenusData.current.SHARE) {
178
+ getShareUsers().then(function () {
179
+ return resolve(true);
180
+ })["catch"](function () {
181
+ return resolve(true);
182
+ });
164
183
  } else {
165
184
  resolve(true);
166
185
  }
@@ -194,17 +213,6 @@ var _default = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
194
213
  }
195
214
  }
196
215
  });
197
-
198
- if (!isShowDepartment) {
199
- (0, _requestApis.getMyDepartMent)().then(function (resp) {
200
- if (resp.Code === 1) {
201
- if (resp.Data.length > 0) {
202
- setIsShowDepartment(true);
203
- }
204
- }
205
- });
206
- }
207
-
208
216
  var obs = new _resizeObserverPolyfill["default"](function (entries) {
209
217
  var _iterator = _createForOfIteratorHelper(entries),
210
218
  _step;
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.removeFollower = exports.getSubordinates = exports.getMyDepartMent = exports.getFollowerList = exports.getDepsAndUsers = exports.addFollower = void 0;
6
+ exports.removeFollower = exports.getSubordinates = exports.getShareUsersData = exports.getMyDepartMent = exports.getFollowerList = exports.getDepsAndUsers = exports.addFollower = void 0;
7
7
 
8
8
  var _axios = _interopRequireDefault(require("axios"));
9
9
 
@@ -96,6 +96,20 @@ var getSubordinates = function getSubordinates(_ref) {
96
96
 
97
97
  exports.getSubordinates = getSubordinates;
98
98
 
99
+ var getShareUsersData = function getShareUsersData() {
100
+ return (0, _request.rget)("v1")("summary/getShareUsers?toUserId=".concat(userId)).then(function (res) {
101
+ var users = [];
102
+
103
+ if (res.Code === 1) {
104
+ users = res.Data;
105
+ }
106
+
107
+ return users;
108
+ });
109
+ };
110
+
111
+ exports.getShareUsersData = getShareUsersData;
112
+
99
113
  var addFollower = function addFollower(id) {
100
114
  return _axios["default"].post("".concat(requestDomain(), "/api/v1/").concat(tenantId, "/").concat(userId, "/follow/addFollower?followerId=").concat(id), null, {
101
115
  headers: {
@@ -140,7 +154,7 @@ var getDepsAndUsers = function getDepsAndUsers() {
140
154
  exports.getDepsAndUsers = getDepsAndUsers;
141
155
 
142
156
  var getMyDepartMent = function getMyDepartMent() {
143
- return (0, _request.rget)('v2')("department/myLead?toUserId=".concat(userId));
157
+ return (0, _request.rget)('v2')("department/sub/depsAndUsersByPrivilege?objType=8&isGetUser=false");
144
158
  };
145
159
 
146
160
  exports.getMyDepartMent = getMyDepartMent;
@@ -30,7 +30,7 @@
30
30
  margin: 0;
31
31
  padding: 0;
32
32
  display: inline-block;
33
- margin-right: 8px;
33
+ margin-right: 4px;
34
34
  position: relative;
35
35
  transition: all 0.3s;
36
36
  color: #dfe3ea;
package/lib/utils/auth.js CHANGED
@@ -67,6 +67,11 @@ var BaseAuth = /*#__PURE__*/function () {
67
67
  value: function isDepartmentLeader() {
68
68
  return !this.loginUserInfor.IsBoss && this.loginUserInfor.IsLeader;
69
69
  }
70
+ }, {
71
+ key: "isHrbp",
72
+ value: function isHrbp() {
73
+ return !this.loginUserInfor.IsBoss && this.loginUserInfor.IsHrbp;
74
+ }
70
75
  }, {
71
76
  key: "isPlanDailyManager",
72
77
  value: function isPlanDailyManager() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@titaui/pc",
3
- "version": "1.12.48",
3
+ "version": "1.12.49-beta.1",
4
4
  "nameCN": "",
5
5
  "description": "",
6
6
  "main": "lib/index.js",