@titaui/pc 1.11.37 → 1.11.38
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/lib/components/avatar/text-avatar/index.css +2 -2
- package/lib/components/avatar/text-avatar/index.js +2 -2
- package/lib/components/task-tree/index.js +1 -7
- package/lib/components/task-tree/task-item-node/e-status-dropdown.js +33 -13
- package/lib/components/task-tree/task-item-node/e-task.js +3 -3
- package/lib/components/task-tree/task-item-node/index.css +28 -18
- package/lib/components/task-tree/task-tree.css +1 -1
- package/package.json +1 -1
- package/lib/components/task-tree/mock.js +0 -944
|
@@ -132,7 +132,7 @@ function TextAvatar(props) {
|
|
|
132
132
|
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
133
133
|
className: (0, _classnames["default"])(preCls, extraCls, _defineProperty({}, "".concat(preCls, "--editable"), editable)),
|
|
134
134
|
style: {
|
|
135
|
-
|
|
135
|
+
width: width
|
|
136
136
|
}
|
|
137
137
|
}, renderAvatar(), /*#__PURE__*/_react["default"].createElement("span", {
|
|
138
138
|
ref: text,
|
|
@@ -143,7 +143,7 @@ function TextAvatar(props) {
|
|
|
143
143
|
})))), !showTooltip && /*#__PURE__*/_react["default"].createElement("span", {
|
|
144
144
|
className: (0, _classnames["default"])(preCls, extraCls, _defineProperty({}, "".concat(preCls, "--editable"), editable)),
|
|
145
145
|
style: {
|
|
146
|
-
|
|
146
|
+
width: width
|
|
147
147
|
}
|
|
148
148
|
}, renderAvatar(), /*#__PURE__*/_react["default"].createElement("span", {
|
|
149
149
|
ref: text,
|
|
@@ -11,12 +11,6 @@ var _helper = _interopRequireDefault(require("./helper"));
|
|
|
11
11
|
|
|
12
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
13
|
|
|
14
|
-
// import React from "react";
|
|
15
|
-
// import mockData from "./mock";
|
|
16
14
|
_taskTree["default"].formatTasksToTreeData = _helper["default"];
|
|
17
|
-
var _default = _taskTree["default"];
|
|
18
|
-
// const dataSource = formatTasksToTreeData(mockData);
|
|
19
|
-
// return <TaskTree dataSource={dataSource} />;
|
|
20
|
-
// };
|
|
21
|
-
|
|
15
|
+
var _default = _taskTree["default"];
|
|
22
16
|
exports["default"] = _default;
|
|
@@ -5,7 +5,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
-
exports["default"] =
|
|
8
|
+
exports["default"] = void 0;
|
|
9
9
|
|
|
10
10
|
var _react = _interopRequireWildcard(require("react"));
|
|
11
11
|
|
|
@@ -35,34 +35,51 @@ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Sy
|
|
|
35
35
|
|
|
36
36
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
37
37
|
|
|
38
|
-
function
|
|
38
|
+
var EStatusDropdown = function EStatusDropdown(props) {
|
|
39
|
+
// eslint-disable-next-line react/prop-types
|
|
39
40
|
var onChange = props.onChange,
|
|
40
41
|
checked = props.checked,
|
|
41
42
|
hasAuth = props.hasAuth;
|
|
42
43
|
|
|
43
|
-
var _useState = (0, _react.useState)(
|
|
44
|
+
var _useState = (0, _react.useState)("tu-icon-notstart"),
|
|
44
45
|
_useState2 = _slicedToArray(_useState, 2),
|
|
45
46
|
status = _useState2[0],
|
|
46
47
|
setStatus = _useState2[1];
|
|
47
48
|
|
|
48
49
|
var onMenuClickHandler = function onMenuClickHandler(name) {
|
|
49
50
|
setStatus(name);
|
|
50
|
-
|
|
51
|
+
|
|
52
|
+
if (onChange) {
|
|
53
|
+
onChange(name);
|
|
54
|
+
}
|
|
51
55
|
};
|
|
52
56
|
|
|
53
57
|
(0, _react.useEffect)(function () {
|
|
54
58
|
setStatus(checked);
|
|
55
59
|
}, [checked]);
|
|
60
|
+
|
|
61
|
+
if (!hasAuth) {
|
|
62
|
+
return /*#__PURE__*/_react["default"].createElement("span", {
|
|
63
|
+
style: {
|
|
64
|
+
color: "#89919F",
|
|
65
|
+
fontSize: 16,
|
|
66
|
+
marginRight: 4,
|
|
67
|
+
verticalAlign: "baseline"
|
|
68
|
+
},
|
|
69
|
+
className: (0, _classnames["default"])(status)
|
|
70
|
+
});
|
|
71
|
+
}
|
|
72
|
+
|
|
56
73
|
return /*#__PURE__*/_react["default"].createElement(_dropSelector["default"], {
|
|
57
74
|
onChange: onMenuClickHandler,
|
|
58
75
|
checked: status,
|
|
59
76
|
canEdit: hasAuth,
|
|
60
77
|
trigger: /*#__PURE__*/_react["default"].createElement("span", {
|
|
61
78
|
style: {
|
|
62
|
-
color:
|
|
79
|
+
color: "#89919F",
|
|
63
80
|
fontSize: 16,
|
|
64
81
|
marginRight: 4,
|
|
65
|
-
verticalAlign:
|
|
82
|
+
verticalAlign: "baseline"
|
|
66
83
|
},
|
|
67
84
|
className: (0, _classnames["default"])(status)
|
|
68
85
|
})
|
|
@@ -70,25 +87,28 @@ function _default(props) {
|
|
|
70
87
|
name: "tu-icon-finished",
|
|
71
88
|
icon: "tu-icon-finished",
|
|
72
89
|
exIconClass: "e-node-status-icon"
|
|
73
|
-
}, (0, _getLocale.getLocale)(
|
|
90
|
+
}, (0, _getLocale.getLocale)("OKR_MyO_E_From_Completed")), /*#__PURE__*/_react["default"].createElement(_dropSelector.IconItem, {
|
|
74
91
|
name: "tu-icon-running",
|
|
75
92
|
icon: "tu-icon-running",
|
|
76
93
|
exIconClass: "e-node-status-icon"
|
|
77
|
-
}, (0, _getLocale.getLocale)(
|
|
94
|
+
}, (0, _getLocale.getLocale)("Per_MyRe_text_Inprogress")), /*#__PURE__*/_react["default"].createElement(_dropSelector.IconItem, {
|
|
78
95
|
name: "tu-icon-canceled",
|
|
79
96
|
icon: "tu-icon-canceled",
|
|
80
97
|
exIconClass: "e-node-status-icon"
|
|
81
|
-
}, (0, _getLocale.getLocale)(
|
|
98
|
+
}, (0, _getLocale.getLocale)("OKR_MyO_E_From_Cancelled")), /*#__PURE__*/_react["default"].createElement(_dropSelector.IconItem, {
|
|
82
99
|
name: "tu-icon-deferred",
|
|
83
100
|
icon: "tu-icon-deferred",
|
|
84
101
|
exIconClass: "e-node-status-icon"
|
|
85
|
-
}, (0, _getLocale.getLocale)(
|
|
102
|
+
}, (0, _getLocale.getLocale)("OKR_MyO_E_From_Delayed")), /*#__PURE__*/_react["default"].createElement(_dropSelector.IconItem, {
|
|
86
103
|
name: "tu-icon-paused",
|
|
87
104
|
icon: "tu-icon-paused",
|
|
88
105
|
exIconClass: "e-node-status-icon"
|
|
89
|
-
}, (0, _getLocale.getLocale)(
|
|
106
|
+
}, (0, _getLocale.getLocale)("OKR_MyO_E_From_Suspended")), /*#__PURE__*/_react["default"].createElement(_dropSelector.IconItem, {
|
|
90
107
|
name: "tu-icon-notstart",
|
|
91
108
|
icon: "tu-icon-notstart",
|
|
92
109
|
exIconClass: "e-node-status-icon"
|
|
93
|
-
}, (0, _getLocale.getLocale)(
|
|
94
|
-
}
|
|
110
|
+
}, (0, _getLocale.getLocale)("OKR_MyO_E_From_NotStarted")));
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
var _default = EStatusDropdown;
|
|
114
|
+
exports["default"] = _default;
|
|
@@ -347,7 +347,7 @@ function ETaskNode(props) {
|
|
|
347
347
|
}, /*#__PURE__*/_react["default"].createElement(_eStatusDropdown["default"], {
|
|
348
348
|
onChange: onEStatusChangeHandler,
|
|
349
349
|
checked: _constant.EStatusStatus2ClassType[dataInfo.status],
|
|
350
|
-
hasAuth: hasEditAuth
|
|
350
|
+
hasAuth: hasEditAuth && data.editStatusable
|
|
351
351
|
})), isShowPriority && /*#__PURE__*/_react["default"].createElement("span", {
|
|
352
352
|
className: (0, _classnames["default"])("".concat(_precls["default"], "__e-task-node-priority"))
|
|
353
353
|
}, /*#__PURE__*/_react["default"].createElement(_ePriority["default"], {
|
|
@@ -356,7 +356,7 @@ function ETaskNode(props) {
|
|
|
356
356
|
hasAuth: hasEditAuth,
|
|
357
357
|
status: data.status
|
|
358
358
|
})), /*#__PURE__*/_react["default"].createElement("span", {
|
|
359
|
-
className: (0, _classnames["default"])("".concat(_precls["default"], "__e-task-node-title
|
|
359
|
+
className: (0, _classnames["default"])("".concat(_precls["default"], "__e-task-node-title"), _defineProperty({}, "".concat(_precls["default"], "__e-project-node-gray"), isCancel || isGray)),
|
|
360
360
|
onClick: handleShowTaskDetail
|
|
361
361
|
}, /*#__PURE__*/_react["default"].createElement(TooltipText, {
|
|
362
362
|
text: (0, _helpers.escapeHtml)(title),
|
|
@@ -376,7 +376,7 @@ function ETaskNode(props) {
|
|
|
376
376
|
avatar: user === null || user === void 0 ? void 0 : user.avatar,
|
|
377
377
|
extraCls: (isCancel || isGray) && "".concat(_precls["default"], "__e-project-node-gray")
|
|
378
378
|
})), /*#__PURE__*/_react["default"].createElement("span", {
|
|
379
|
-
className: (0, _classnames["default"])("".concat(_precls["default"], "__e-task-node-actions-date")),
|
|
379
|
+
className: (0, _classnames["default"])("".concat(_precls["default"], "__e-task-node-actions-date"), _defineProperty({}, "".concat(_precls["default"], "__e-task-node-actions-date--canedit"), dataInfo.status !== 2 && hasEditAuth)),
|
|
380
380
|
onClick: updateDateHandler
|
|
381
381
|
}, /*#__PURE__*/_react["default"].createElement(_statusTime["default"], {
|
|
382
382
|
deadLine: dataInfo.deadLine,
|
|
@@ -72,8 +72,8 @@
|
|
|
72
72
|
|
|
73
73
|
.titaui-task-tree__e-task-node-actions-user {
|
|
74
74
|
display: inline-block;
|
|
75
|
-
width:
|
|
76
|
-
margin-left:
|
|
75
|
+
width: 92px;
|
|
76
|
+
margin-left: 24px;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
.titaui-task-tree__e-task-node-actions-date {
|
|
@@ -83,27 +83,32 @@
|
|
|
83
83
|
line-height: 18px;
|
|
84
84
|
display: inline-flex;
|
|
85
85
|
align-items: center;
|
|
86
|
-
justify-content: flex-end;
|
|
87
86
|
box-sizing: border-box;
|
|
88
|
-
width:
|
|
89
|
-
height:
|
|
87
|
+
width: 82px;
|
|
88
|
+
height: 32px;
|
|
90
89
|
padding: 4px;
|
|
91
90
|
text-align: left;
|
|
92
|
-
line-height:
|
|
91
|
+
line-height: 32px;
|
|
92
|
+
margin-left: 28px;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
.titaui-task-tree__e-task-node-actions-date > span {
|
|
96
96
|
vertical-align: text-bottom;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
+
.titaui-task-tree__e-task-node-actions-date--canedit:hover {
|
|
100
|
+
border-radius: 8px;
|
|
101
|
+
border: 1px solid #bfc7d5;
|
|
102
|
+
padding: 3px;
|
|
103
|
+
}
|
|
104
|
+
|
|
99
105
|
.titaui-task-tree__e-task-node-actions-progress {
|
|
100
106
|
position: relative;
|
|
101
107
|
top: 3px;
|
|
102
108
|
color: #89919f;
|
|
103
109
|
cursor: auto;
|
|
104
|
-
width:
|
|
105
|
-
margin-left:
|
|
106
|
-
margin-right: 4px;
|
|
110
|
+
width: 68px;
|
|
111
|
+
margin-left: 20px;
|
|
107
112
|
}
|
|
108
113
|
|
|
109
114
|
.titaui-task-tree__e-task-node-actions-progress .tooltip-text-wrapper {
|
|
@@ -223,8 +228,8 @@
|
|
|
223
228
|
|
|
224
229
|
.titaui-task-tree__e-project-node-actions-user {
|
|
225
230
|
display: inline-block;
|
|
226
|
-
width:
|
|
227
|
-
margin-left:
|
|
231
|
+
width: 92px;
|
|
232
|
+
margin-left: 24px;
|
|
228
233
|
}
|
|
229
234
|
|
|
230
235
|
.titaui-task-tree__e-project-node-actions-date {
|
|
@@ -234,27 +239,32 @@
|
|
|
234
239
|
line-height: 18px;
|
|
235
240
|
display: inline-flex;
|
|
236
241
|
align-items: center;
|
|
237
|
-
justify-content: flex-end;
|
|
238
242
|
box-sizing: border-box;
|
|
239
|
-
width:
|
|
240
|
-
height:
|
|
243
|
+
width: 82px;
|
|
244
|
+
height: 32px;
|
|
241
245
|
padding: 4px;
|
|
242
246
|
text-align: left;
|
|
243
|
-
line-height:
|
|
247
|
+
line-height: 32px;
|
|
248
|
+
margin-left: 28px;
|
|
244
249
|
}
|
|
245
250
|
|
|
246
251
|
.titaui-task-tree__e-project-node-actions-date > span {
|
|
247
252
|
vertical-align: text-bottom;
|
|
248
253
|
}
|
|
249
254
|
|
|
255
|
+
.titaui-task-tree__e-project-node-actions-date--canedit:hover {
|
|
256
|
+
border-radius: 8px;
|
|
257
|
+
border: 1px solid #bfc7d5;
|
|
258
|
+
padding: 3px;
|
|
259
|
+
}
|
|
260
|
+
|
|
250
261
|
.titaui-task-tree__e-project-node-actions-progress {
|
|
251
262
|
position: relative;
|
|
252
263
|
top: 3px;
|
|
253
264
|
color: #89919f;
|
|
254
265
|
cursor: auto;
|
|
255
|
-
width:
|
|
256
|
-
margin-left:
|
|
257
|
-
margin-right: 4px;
|
|
266
|
+
width: 68px;
|
|
267
|
+
margin-left: 20px;
|
|
258
268
|
}
|
|
259
269
|
|
|
260
270
|
.titaui-task-tree__e-project-node-actions-progress .tooltip-text-wrapper {
|
package/package.json
CHANGED
|
@@ -1,944 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports["default"] = void 0;
|
|
7
|
-
var _default = [{
|
|
8
|
-
taskId: "500018_9867_7_20_637859876319419971",
|
|
9
|
-
id: 9867,
|
|
10
|
-
parentTaskId: "500018_9866_7_20_637859874800011714",
|
|
11
|
-
appId: "1",
|
|
12
|
-
userId: 500000126,
|
|
13
|
-
principalId: 500000126,
|
|
14
|
-
user: {
|
|
15
|
-
userId: 500000126,
|
|
16
|
-
userType: 0,
|
|
17
|
-
name: "张玮琦",
|
|
18
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
19
|
-
managerId: 0,
|
|
20
|
-
jobState: 1,
|
|
21
|
-
departmentId: 0,
|
|
22
|
-
departmentName: "默认部门",
|
|
23
|
-
postition: null,
|
|
24
|
-
subType: 0,
|
|
25
|
-
hasSubordinates: false,
|
|
26
|
-
avatar: {
|
|
27
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
28
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
29
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
30
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
31
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
32
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
33
|
-
hasAvatar: true,
|
|
34
|
-
color: null
|
|
35
|
-
},
|
|
36
|
-
staffCode: null
|
|
37
|
-
},
|
|
38
|
-
principalUser: {
|
|
39
|
-
userId: 500000126,
|
|
40
|
-
userType: 0,
|
|
41
|
-
name: "张玮琦",
|
|
42
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
43
|
-
managerId: 0,
|
|
44
|
-
jobState: 1,
|
|
45
|
-
departmentId: 0,
|
|
46
|
-
departmentName: "默认部门",
|
|
47
|
-
postition: null,
|
|
48
|
-
subType: 0,
|
|
49
|
-
hasSubordinates: false,
|
|
50
|
-
avatar: {
|
|
51
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
52
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
53
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
54
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
55
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
56
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
57
|
-
hasAvatar: true,
|
|
58
|
-
color: null
|
|
59
|
-
},
|
|
60
|
-
staffCode: null
|
|
61
|
-
},
|
|
62
|
-
taskName: "level3",
|
|
63
|
-
status: 1,
|
|
64
|
-
taskType: 0,
|
|
65
|
-
isPrivate: true,
|
|
66
|
-
isSuperior: false,
|
|
67
|
-
createDate: "2022/04/19",
|
|
68
|
-
startDate: "2022/04/19 08:00",
|
|
69
|
-
deadLine: "2022/04/19 18:00",
|
|
70
|
-
finishDate: "",
|
|
71
|
-
editable: true,
|
|
72
|
-
editLableable: false,
|
|
73
|
-
deleteable: true,
|
|
74
|
-
editStatusable: true,
|
|
75
|
-
isAddExperience: true,
|
|
76
|
-
isMark: false,
|
|
77
|
-
priority: 3,
|
|
78
|
-
priorityTitle: "中",
|
|
79
|
-
editPriorityAble: true,
|
|
80
|
-
isRemind: false,
|
|
81
|
-
isApply: false,
|
|
82
|
-
isDeadLine: true,
|
|
83
|
-
isShowWorkLable: true,
|
|
84
|
-
userRelation: 0,
|
|
85
|
-
labelId: "6793",
|
|
86
|
-
labelName: "第二季度的目标",
|
|
87
|
-
labelType: 62,
|
|
88
|
-
isLongTerm: false,
|
|
89
|
-
cycleId: 0,
|
|
90
|
-
isPush: true,
|
|
91
|
-
taskUrl: null,
|
|
92
|
-
departmentId: 0,
|
|
93
|
-
counter: {
|
|
94
|
-
taskTotal: 0,
|
|
95
|
-
finishTaskTotal: 0,
|
|
96
|
-
experienceTotal: 0,
|
|
97
|
-
commentTotal: 0,
|
|
98
|
-
operationTotal: 0,
|
|
99
|
-
meetTotal: 0,
|
|
100
|
-
businessTripTotal: 0,
|
|
101
|
-
applyTotal: 0,
|
|
102
|
-
workTimeTotal: 0,
|
|
103
|
-
attachmentTotal: 0,
|
|
104
|
-
dashangTotal: 0,
|
|
105
|
-
rewardTotal: 0,
|
|
106
|
-
praiseTotal: 0
|
|
107
|
-
},
|
|
108
|
-
remainDay: 1,
|
|
109
|
-
isAddMenu: true,
|
|
110
|
-
hasSubTask: false,
|
|
111
|
-
evaluateModel: null,
|
|
112
|
-
mileStoneId: 3173,
|
|
113
|
-
cycleable: false,
|
|
114
|
-
isExternal: false,
|
|
115
|
-
progress: 0,
|
|
116
|
-
riskLevel: 3,
|
|
117
|
-
newExperience: null,
|
|
118
|
-
isQuantify: false,
|
|
119
|
-
progressDescription: null,
|
|
120
|
-
objType: 7,
|
|
121
|
-
medalDetail: null,
|
|
122
|
-
workApplyStatus: 0,
|
|
123
|
-
workApplyType: 0
|
|
124
|
-
}, {
|
|
125
|
-
taskId: "500018_9866_7_20_637859874800011714",
|
|
126
|
-
id: 9866,
|
|
127
|
-
parentTaskId: "500018_9865_7_20_637859855638508805",
|
|
128
|
-
appId: "1",
|
|
129
|
-
userId: 500000126,
|
|
130
|
-
principalId: 500000126,
|
|
131
|
-
user: {
|
|
132
|
-
userId: 500000126,
|
|
133
|
-
userType: 0,
|
|
134
|
-
name: "张玮琦",
|
|
135
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
136
|
-
managerId: 0,
|
|
137
|
-
jobState: 1,
|
|
138
|
-
departmentId: 0,
|
|
139
|
-
departmentName: "默认部门",
|
|
140
|
-
postition: null,
|
|
141
|
-
subType: 0,
|
|
142
|
-
hasSubordinates: false,
|
|
143
|
-
avatar: {
|
|
144
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
145
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
146
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
147
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
148
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
149
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
150
|
-
hasAvatar: true,
|
|
151
|
-
color: null
|
|
152
|
-
},
|
|
153
|
-
staffCode: null
|
|
154
|
-
},
|
|
155
|
-
principalUser: {
|
|
156
|
-
userId: 500000126,
|
|
157
|
-
userType: 0,
|
|
158
|
-
name: "张玮琦",
|
|
159
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
160
|
-
managerId: 0,
|
|
161
|
-
jobState: 1,
|
|
162
|
-
departmentId: 0,
|
|
163
|
-
departmentName: "默认部门",
|
|
164
|
-
postition: null,
|
|
165
|
-
subType: 0,
|
|
166
|
-
hasSubordinates: false,
|
|
167
|
-
avatar: {
|
|
168
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
169
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
170
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
171
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
172
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
173
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
174
|
-
hasAvatar: true,
|
|
175
|
-
color: null
|
|
176
|
-
},
|
|
177
|
-
staffCode: null
|
|
178
|
-
},
|
|
179
|
-
taskName: "level2",
|
|
180
|
-
status: 1,
|
|
181
|
-
taskType: 0,
|
|
182
|
-
isPrivate: true,
|
|
183
|
-
isSuperior: false,
|
|
184
|
-
createDate: "2022/04/19",
|
|
185
|
-
startDate: "2022/04/19 08:00",
|
|
186
|
-
deadLine: "2022/04/19 18:00",
|
|
187
|
-
finishDate: "",
|
|
188
|
-
editable: true,
|
|
189
|
-
editLableable: false,
|
|
190
|
-
deleteable: true,
|
|
191
|
-
editStatusable: true,
|
|
192
|
-
isAddExperience: true,
|
|
193
|
-
isMark: false,
|
|
194
|
-
priority: 3,
|
|
195
|
-
priorityTitle: "中",
|
|
196
|
-
editPriorityAble: true,
|
|
197
|
-
isRemind: false,
|
|
198
|
-
isApply: false,
|
|
199
|
-
isDeadLine: true,
|
|
200
|
-
isShowWorkLable: true,
|
|
201
|
-
userRelation: 0,
|
|
202
|
-
labelId: "6793",
|
|
203
|
-
labelName: "第二季度的目标",
|
|
204
|
-
labelType: 62,
|
|
205
|
-
isLongTerm: false,
|
|
206
|
-
cycleId: 0,
|
|
207
|
-
isPush: true,
|
|
208
|
-
taskUrl: null,
|
|
209
|
-
departmentId: 0,
|
|
210
|
-
counter: {
|
|
211
|
-
taskTotal: 1,
|
|
212
|
-
finishTaskTotal: 0,
|
|
213
|
-
experienceTotal: 0,
|
|
214
|
-
commentTotal: 0,
|
|
215
|
-
operationTotal: 0,
|
|
216
|
-
meetTotal: 0,
|
|
217
|
-
businessTripTotal: 0,
|
|
218
|
-
applyTotal: 0,
|
|
219
|
-
workTimeTotal: 0,
|
|
220
|
-
attachmentTotal: 0,
|
|
221
|
-
dashangTotal: 0,
|
|
222
|
-
rewardTotal: 0,
|
|
223
|
-
praiseTotal: 0
|
|
224
|
-
},
|
|
225
|
-
remainDay: 1,
|
|
226
|
-
isAddMenu: true,
|
|
227
|
-
hasSubTask: false,
|
|
228
|
-
evaluateModel: null,
|
|
229
|
-
mileStoneId: 3173,
|
|
230
|
-
cycleable: false,
|
|
231
|
-
isExternal: false,
|
|
232
|
-
progress: 0,
|
|
233
|
-
riskLevel: 3,
|
|
234
|
-
newExperience: null,
|
|
235
|
-
isQuantify: false,
|
|
236
|
-
progressDescription: null,
|
|
237
|
-
objType: 7,
|
|
238
|
-
medalDetail: null,
|
|
239
|
-
workApplyStatus: 0,
|
|
240
|
-
workApplyType: 0
|
|
241
|
-
}, {
|
|
242
|
-
taskId: "500018_9865_7_20_637859855638508805",
|
|
243
|
-
id: 9865,
|
|
244
|
-
parentTaskId: null,
|
|
245
|
-
appId: "1",
|
|
246
|
-
userId: 500000126,
|
|
247
|
-
principalId: 500000126,
|
|
248
|
-
user: {
|
|
249
|
-
userId: 500000126,
|
|
250
|
-
userType: 0,
|
|
251
|
-
name: "张玮琦",
|
|
252
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
253
|
-
managerId: 0,
|
|
254
|
-
jobState: 1,
|
|
255
|
-
departmentId: 0,
|
|
256
|
-
departmentName: "默认部门",
|
|
257
|
-
postition: null,
|
|
258
|
-
subType: 0,
|
|
259
|
-
hasSubordinates: false,
|
|
260
|
-
avatar: {
|
|
261
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
262
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
263
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
264
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
265
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
266
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
267
|
-
hasAvatar: true,
|
|
268
|
-
color: null
|
|
269
|
-
},
|
|
270
|
-
staffCode: null
|
|
271
|
-
},
|
|
272
|
-
principalUser: {
|
|
273
|
-
userId: 500000126,
|
|
274
|
-
userType: 0,
|
|
275
|
-
name: "张玮琦",
|
|
276
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
277
|
-
managerId: 0,
|
|
278
|
-
jobState: 1,
|
|
279
|
-
departmentId: 0,
|
|
280
|
-
departmentName: "默认部门",
|
|
281
|
-
postition: null,
|
|
282
|
-
subType: 0,
|
|
283
|
-
hasSubordinates: false,
|
|
284
|
-
avatar: {
|
|
285
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
286
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
287
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
288
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
289
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
290
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
291
|
-
hasAvatar: true,
|
|
292
|
-
color: null
|
|
293
|
-
},
|
|
294
|
-
staffCode: null
|
|
295
|
-
},
|
|
296
|
-
taskName: "fdsagsa",
|
|
297
|
-
status: 1,
|
|
298
|
-
taskType: 0,
|
|
299
|
-
isPrivate: true,
|
|
300
|
-
isSuperior: false,
|
|
301
|
-
createDate: "2022/04/19",
|
|
302
|
-
startDate: "2022/04/19 08:00",
|
|
303
|
-
deadLine: "2022/04/19 18:00",
|
|
304
|
-
finishDate: "",
|
|
305
|
-
editable: true,
|
|
306
|
-
editLableable: true,
|
|
307
|
-
deleteable: true,
|
|
308
|
-
editStatusable: true,
|
|
309
|
-
isAddExperience: true,
|
|
310
|
-
isMark: false,
|
|
311
|
-
priority: 3,
|
|
312
|
-
priorityTitle: "中",
|
|
313
|
-
editPriorityAble: true,
|
|
314
|
-
isRemind: false,
|
|
315
|
-
isApply: false,
|
|
316
|
-
isDeadLine: true,
|
|
317
|
-
isShowWorkLable: true,
|
|
318
|
-
userRelation: 0,
|
|
319
|
-
labelId: "6793",
|
|
320
|
-
labelName: "第二季度的目标",
|
|
321
|
-
labelType: 62,
|
|
322
|
-
isLongTerm: false,
|
|
323
|
-
cycleId: 0,
|
|
324
|
-
isPush: true,
|
|
325
|
-
taskUrl: null,
|
|
326
|
-
departmentId: 0,
|
|
327
|
-
counter: {
|
|
328
|
-
taskTotal: 1,
|
|
329
|
-
finishTaskTotal: 0,
|
|
330
|
-
experienceTotal: 0,
|
|
331
|
-
commentTotal: 0,
|
|
332
|
-
operationTotal: 0,
|
|
333
|
-
meetTotal: 0,
|
|
334
|
-
businessTripTotal: 0,
|
|
335
|
-
applyTotal: 0,
|
|
336
|
-
workTimeTotal: 0,
|
|
337
|
-
attachmentTotal: 0,
|
|
338
|
-
dashangTotal: 0,
|
|
339
|
-
rewardTotal: 0,
|
|
340
|
-
praiseTotal: 0
|
|
341
|
-
},
|
|
342
|
-
remainDay: 1,
|
|
343
|
-
isAddMenu: true,
|
|
344
|
-
hasSubTask: false,
|
|
345
|
-
evaluateModel: null,
|
|
346
|
-
mileStoneId: 3173,
|
|
347
|
-
cycleable: false,
|
|
348
|
-
isExternal: false,
|
|
349
|
-
progress: 0,
|
|
350
|
-
riskLevel: 3,
|
|
351
|
-
newExperience: null,
|
|
352
|
-
isQuantify: false,
|
|
353
|
-
progressDescription: null,
|
|
354
|
-
objType: 7,
|
|
355
|
-
medalDetail: null,
|
|
356
|
-
workApplyStatus: 0,
|
|
357
|
-
workApplyType: 0
|
|
358
|
-
}, {
|
|
359
|
-
taskId: "500018_9864_7_20_637859826119135522",
|
|
360
|
-
id: 9864,
|
|
361
|
-
parentTaskId: "500018_9052_4_10_637859825437975151",
|
|
362
|
-
appId: "1",
|
|
363
|
-
userId: 500000126,
|
|
364
|
-
principalId: 500000126,
|
|
365
|
-
user: {
|
|
366
|
-
userId: 500000126,
|
|
367
|
-
userType: 0,
|
|
368
|
-
name: "张玮琦",
|
|
369
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
370
|
-
managerId: 0,
|
|
371
|
-
jobState: 1,
|
|
372
|
-
departmentId: 0,
|
|
373
|
-
departmentName: "默认部门",
|
|
374
|
-
postition: null,
|
|
375
|
-
subType: 0,
|
|
376
|
-
hasSubordinates: false,
|
|
377
|
-
avatar: {
|
|
378
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
379
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
380
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
381
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
382
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
383
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
384
|
-
hasAvatar: true,
|
|
385
|
-
color: null
|
|
386
|
-
},
|
|
387
|
-
staffCode: null
|
|
388
|
-
},
|
|
389
|
-
principalUser: {
|
|
390
|
-
userId: 500000126,
|
|
391
|
-
userType: 0,
|
|
392
|
-
name: "张玮琦",
|
|
393
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
394
|
-
managerId: 0,
|
|
395
|
-
jobState: 1,
|
|
396
|
-
departmentId: 0,
|
|
397
|
-
departmentName: "默认部门",
|
|
398
|
-
postition: null,
|
|
399
|
-
subType: 0,
|
|
400
|
-
hasSubordinates: false,
|
|
401
|
-
avatar: {
|
|
402
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
403
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
404
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
405
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
406
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
407
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
408
|
-
hasAvatar: true,
|
|
409
|
-
color: null
|
|
410
|
-
},
|
|
411
|
-
staffCode: null
|
|
412
|
-
},
|
|
413
|
-
taskName: "asdf",
|
|
414
|
-
status: 1,
|
|
415
|
-
taskType: 0,
|
|
416
|
-
isPrivate: true,
|
|
417
|
-
isSuperior: false,
|
|
418
|
-
createDate: "2022/04/19",
|
|
419
|
-
startDate: "2022/04/19 08:00",
|
|
420
|
-
deadLine: "2022/04/19 18:00",
|
|
421
|
-
finishDate: "",
|
|
422
|
-
editable: true,
|
|
423
|
-
editLableable: false,
|
|
424
|
-
deleteable: true,
|
|
425
|
-
editStatusable: true,
|
|
426
|
-
isAddExperience: true,
|
|
427
|
-
isMark: false,
|
|
428
|
-
priority: 3,
|
|
429
|
-
priorityTitle: "中",
|
|
430
|
-
editPriorityAble: true,
|
|
431
|
-
isRemind: false,
|
|
432
|
-
isApply: false,
|
|
433
|
-
isDeadLine: true,
|
|
434
|
-
isShowWorkLable: true,
|
|
435
|
-
userRelation: 0,
|
|
436
|
-
labelId: "9052",
|
|
437
|
-
labelName: "新建测试项目",
|
|
438
|
-
labelType: 4,
|
|
439
|
-
isLongTerm: false,
|
|
440
|
-
cycleId: 0,
|
|
441
|
-
isPush: true,
|
|
442
|
-
taskUrl: null,
|
|
443
|
-
departmentId: 0,
|
|
444
|
-
counter: {
|
|
445
|
-
taskTotal: 0,
|
|
446
|
-
finishTaskTotal: 0,
|
|
447
|
-
experienceTotal: 0,
|
|
448
|
-
commentTotal: 0,
|
|
449
|
-
operationTotal: 0,
|
|
450
|
-
meetTotal: 0,
|
|
451
|
-
businessTripTotal: 0,
|
|
452
|
-
applyTotal: 0,
|
|
453
|
-
workTimeTotal: 0,
|
|
454
|
-
attachmentTotal: 0,
|
|
455
|
-
dashangTotal: 0,
|
|
456
|
-
rewardTotal: 0,
|
|
457
|
-
praiseTotal: 0
|
|
458
|
-
},
|
|
459
|
-
remainDay: 1,
|
|
460
|
-
isAddMenu: true,
|
|
461
|
-
hasSubTask: false,
|
|
462
|
-
evaluateModel: null,
|
|
463
|
-
mileStoneId: 3173,
|
|
464
|
-
cycleable: false,
|
|
465
|
-
isExternal: false,
|
|
466
|
-
progress: 0,
|
|
467
|
-
riskLevel: 3,
|
|
468
|
-
newExperience: null,
|
|
469
|
-
isQuantify: false,
|
|
470
|
-
progressDescription: null,
|
|
471
|
-
objType: 7,
|
|
472
|
-
medalDetail: null,
|
|
473
|
-
workApplyStatus: 0,
|
|
474
|
-
workApplyType: 0
|
|
475
|
-
}, {
|
|
476
|
-
taskId: "500018_9052_4_10_637859825437975151",
|
|
477
|
-
id: 9052,
|
|
478
|
-
parentTaskId: null,
|
|
479
|
-
appId: null,
|
|
480
|
-
userId: 500000126,
|
|
481
|
-
principalId: 500000126,
|
|
482
|
-
user: {
|
|
483
|
-
userId: 500000126,
|
|
484
|
-
userType: 0,
|
|
485
|
-
name: "张玮琦",
|
|
486
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
487
|
-
managerId: 0,
|
|
488
|
-
jobState: 1,
|
|
489
|
-
departmentId: 0,
|
|
490
|
-
departmentName: "默认部门",
|
|
491
|
-
postition: null,
|
|
492
|
-
subType: 0,
|
|
493
|
-
hasSubordinates: false,
|
|
494
|
-
avatar: {
|
|
495
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
496
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
497
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
498
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
499
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
500
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
501
|
-
hasAvatar: true,
|
|
502
|
-
color: null
|
|
503
|
-
},
|
|
504
|
-
staffCode: null
|
|
505
|
-
},
|
|
506
|
-
principalUser: {
|
|
507
|
-
userId: 500000126,
|
|
508
|
-
userType: 0,
|
|
509
|
-
name: "张玮琦",
|
|
510
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
511
|
-
managerId: 0,
|
|
512
|
-
jobState: 1,
|
|
513
|
-
departmentId: 0,
|
|
514
|
-
departmentName: "默认部门",
|
|
515
|
-
postition: null,
|
|
516
|
-
subType: 0,
|
|
517
|
-
hasSubordinates: false,
|
|
518
|
-
avatar: {
|
|
519
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
520
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
521
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
522
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
523
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
524
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
525
|
-
hasAvatar: true,
|
|
526
|
-
color: null
|
|
527
|
-
},
|
|
528
|
-
staffCode: null
|
|
529
|
-
},
|
|
530
|
-
taskName: "新建测试项目",
|
|
531
|
-
status: 1,
|
|
532
|
-
taskType: 0,
|
|
533
|
-
isPrivate: false,
|
|
534
|
-
isSuperior: false,
|
|
535
|
-
createDate: "2022/04/19",
|
|
536
|
-
startDate: "2022/04/19 00:00",
|
|
537
|
-
deadLine: "2022/05/18 23:59",
|
|
538
|
-
finishDate: "",
|
|
539
|
-
editable: true,
|
|
540
|
-
editLableable: true,
|
|
541
|
-
deleteable: true,
|
|
542
|
-
editStatusable: true,
|
|
543
|
-
isAddExperience: true,
|
|
544
|
-
isMark: false,
|
|
545
|
-
priority: 3,
|
|
546
|
-
priorityTitle: "中",
|
|
547
|
-
editPriorityAble: true,
|
|
548
|
-
isRemind: false,
|
|
549
|
-
isApply: false,
|
|
550
|
-
isDeadLine: false,
|
|
551
|
-
isShowWorkLable: true,
|
|
552
|
-
userRelation: 0,
|
|
553
|
-
labelId: "4051",
|
|
554
|
-
labelName: null,
|
|
555
|
-
labelType: 4,
|
|
556
|
-
isLongTerm: false,
|
|
557
|
-
cycleId: 0,
|
|
558
|
-
isPush: true,
|
|
559
|
-
taskUrl: null,
|
|
560
|
-
departmentId: 0,
|
|
561
|
-
counter: {
|
|
562
|
-
taskTotal: 1,
|
|
563
|
-
finishTaskTotal: 0,
|
|
564
|
-
experienceTotal: 0,
|
|
565
|
-
commentTotal: 0,
|
|
566
|
-
operationTotal: 0,
|
|
567
|
-
meetTotal: 0,
|
|
568
|
-
businessTripTotal: 0,
|
|
569
|
-
applyTotal: 0,
|
|
570
|
-
workTimeTotal: 0,
|
|
571
|
-
attachmentTotal: 0,
|
|
572
|
-
dashangTotal: 0,
|
|
573
|
-
rewardTotal: 0,
|
|
574
|
-
praiseTotal: 0
|
|
575
|
-
},
|
|
576
|
-
remainDay: 30,
|
|
577
|
-
isAddMenu: true,
|
|
578
|
-
hasSubTask: false,
|
|
579
|
-
evaluateModel: null,
|
|
580
|
-
mileStoneId: 3173,
|
|
581
|
-
cycleable: false,
|
|
582
|
-
isExternal: false,
|
|
583
|
-
progress: 0,
|
|
584
|
-
riskLevel: 0,
|
|
585
|
-
newExperience: null,
|
|
586
|
-
isQuantify: false,
|
|
587
|
-
progressDescription: null,
|
|
588
|
-
objType: 4,
|
|
589
|
-
medalDetail: null,
|
|
590
|
-
workApplyStatus: 0,
|
|
591
|
-
workApplyType: 48
|
|
592
|
-
}, {
|
|
593
|
-
taskId: "500018_7539_7_20_637844328753995909",
|
|
594
|
-
id: 7539,
|
|
595
|
-
parentTaskId: "500018_7538_7_20_637844328633398697",
|
|
596
|
-
appId: "1",
|
|
597
|
-
userId: 500000126,
|
|
598
|
-
principalId: 500000126,
|
|
599
|
-
user: {
|
|
600
|
-
userId: 500000126,
|
|
601
|
-
userType: 0,
|
|
602
|
-
name: "张玮琦",
|
|
603
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
604
|
-
managerId: 0,
|
|
605
|
-
jobState: 1,
|
|
606
|
-
departmentId: 0,
|
|
607
|
-
departmentName: "默认部门",
|
|
608
|
-
postition: null,
|
|
609
|
-
subType: 0,
|
|
610
|
-
hasSubordinates: false,
|
|
611
|
-
avatar: {
|
|
612
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
613
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
614
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
615
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
616
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
617
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
618
|
-
hasAvatar: true,
|
|
619
|
-
color: null
|
|
620
|
-
},
|
|
621
|
-
staffCode: null
|
|
622
|
-
},
|
|
623
|
-
principalUser: {
|
|
624
|
-
userId: 500000126,
|
|
625
|
-
userType: 0,
|
|
626
|
-
name: "张玮琦",
|
|
627
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
628
|
-
managerId: 0,
|
|
629
|
-
jobState: 1,
|
|
630
|
-
departmentId: 0,
|
|
631
|
-
departmentName: "默认部门",
|
|
632
|
-
postition: null,
|
|
633
|
-
subType: 0,
|
|
634
|
-
hasSubordinates: false,
|
|
635
|
-
avatar: {
|
|
636
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
637
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
638
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
639
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
640
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
641
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
642
|
-
hasAvatar: true,
|
|
643
|
-
color: null
|
|
644
|
-
},
|
|
645
|
-
staffCode: null
|
|
646
|
-
},
|
|
647
|
-
taskName: "fsagsag",
|
|
648
|
-
status: 1,
|
|
649
|
-
taskType: 0,
|
|
650
|
-
isPrivate: true,
|
|
651
|
-
isSuperior: false,
|
|
652
|
-
createDate: "2022/04/01",
|
|
653
|
-
startDate: "2022/04/01 08:00",
|
|
654
|
-
deadLine: "2022/04/01 18:00",
|
|
655
|
-
finishDate: "",
|
|
656
|
-
editable: true,
|
|
657
|
-
editLableable: false,
|
|
658
|
-
deleteable: true,
|
|
659
|
-
editStatusable: true,
|
|
660
|
-
isAddExperience: true,
|
|
661
|
-
isMark: false,
|
|
662
|
-
priority: 3,
|
|
663
|
-
priorityTitle: "中",
|
|
664
|
-
editPriorityAble: true,
|
|
665
|
-
isRemind: false,
|
|
666
|
-
isApply: false,
|
|
667
|
-
isDeadLine: true,
|
|
668
|
-
isShowWorkLable: true,
|
|
669
|
-
userRelation: 0,
|
|
670
|
-
labelId: "7368",
|
|
671
|
-
labelName: "fdsa",
|
|
672
|
-
labelType: 4,
|
|
673
|
-
isLongTerm: false,
|
|
674
|
-
cycleId: 0,
|
|
675
|
-
isPush: true,
|
|
676
|
-
taskUrl: null,
|
|
677
|
-
departmentId: 0,
|
|
678
|
-
counter: {
|
|
679
|
-
taskTotal: 0,
|
|
680
|
-
finishTaskTotal: 0,
|
|
681
|
-
experienceTotal: 0,
|
|
682
|
-
commentTotal: 0,
|
|
683
|
-
operationTotal: 0,
|
|
684
|
-
meetTotal: 0,
|
|
685
|
-
businessTripTotal: 0,
|
|
686
|
-
applyTotal: 0,
|
|
687
|
-
workTimeTotal: 0,
|
|
688
|
-
attachmentTotal: 0,
|
|
689
|
-
dashangTotal: 0,
|
|
690
|
-
rewardTotal: 0,
|
|
691
|
-
praiseTotal: 0
|
|
692
|
-
},
|
|
693
|
-
remainDay: 19,
|
|
694
|
-
isAddMenu: true,
|
|
695
|
-
hasSubTask: false,
|
|
696
|
-
evaluateModel: null,
|
|
697
|
-
mileStoneId: 3173,
|
|
698
|
-
cycleable: false,
|
|
699
|
-
isExternal: false,
|
|
700
|
-
progress: 0,
|
|
701
|
-
riskLevel: 3,
|
|
702
|
-
newExperience: null,
|
|
703
|
-
isQuantify: false,
|
|
704
|
-
progressDescription: null,
|
|
705
|
-
objType: 7,
|
|
706
|
-
medalDetail: null,
|
|
707
|
-
workApplyStatus: 0,
|
|
708
|
-
workApplyType: 0
|
|
709
|
-
}, {
|
|
710
|
-
taskId: "500018_7538_7_20_637844328633398697",
|
|
711
|
-
id: 7538,
|
|
712
|
-
parentTaskId: "500018_7368_4_10_637844318625901563",
|
|
713
|
-
appId: "1",
|
|
714
|
-
userId: 500000126,
|
|
715
|
-
principalId: 500000126,
|
|
716
|
-
user: {
|
|
717
|
-
userId: 500000126,
|
|
718
|
-
userType: 0,
|
|
719
|
-
name: "张玮琦",
|
|
720
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
721
|
-
managerId: 0,
|
|
722
|
-
jobState: 1,
|
|
723
|
-
departmentId: 0,
|
|
724
|
-
departmentName: "默认部门",
|
|
725
|
-
postition: null,
|
|
726
|
-
subType: 0,
|
|
727
|
-
hasSubordinates: false,
|
|
728
|
-
avatar: {
|
|
729
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
730
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
731
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
732
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
733
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
734
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
735
|
-
hasAvatar: true,
|
|
736
|
-
color: null
|
|
737
|
-
},
|
|
738
|
-
staffCode: null
|
|
739
|
-
},
|
|
740
|
-
principalUser: {
|
|
741
|
-
userId: 500000126,
|
|
742
|
-
userType: 0,
|
|
743
|
-
name: "张玮琦",
|
|
744
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
745
|
-
managerId: 0,
|
|
746
|
-
jobState: 1,
|
|
747
|
-
departmentId: 0,
|
|
748
|
-
departmentName: "默认部门",
|
|
749
|
-
postition: null,
|
|
750
|
-
subType: 0,
|
|
751
|
-
hasSubordinates: false,
|
|
752
|
-
avatar: {
|
|
753
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
754
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
755
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
756
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
757
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
758
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
759
|
-
hasAvatar: true,
|
|
760
|
-
color: null
|
|
761
|
-
},
|
|
762
|
-
staffCode: null
|
|
763
|
-
},
|
|
764
|
-
taskName: "fsaga",
|
|
765
|
-
status: 1,
|
|
766
|
-
taskType: 0,
|
|
767
|
-
isPrivate: true,
|
|
768
|
-
isSuperior: false,
|
|
769
|
-
createDate: "2022/04/01",
|
|
770
|
-
startDate: "2022/04/01 08:00",
|
|
771
|
-
deadLine: "2022/04/01 18:00",
|
|
772
|
-
finishDate: "",
|
|
773
|
-
editable: true,
|
|
774
|
-
editLableable: false,
|
|
775
|
-
deleteable: true,
|
|
776
|
-
editStatusable: true,
|
|
777
|
-
isAddExperience: true,
|
|
778
|
-
isMark: false,
|
|
779
|
-
priority: 3,
|
|
780
|
-
priorityTitle: "中",
|
|
781
|
-
editPriorityAble: true,
|
|
782
|
-
isRemind: false,
|
|
783
|
-
isApply: false,
|
|
784
|
-
isDeadLine: true,
|
|
785
|
-
isShowWorkLable: true,
|
|
786
|
-
userRelation: 0,
|
|
787
|
-
labelId: "7368",
|
|
788
|
-
labelName: "fdsa",
|
|
789
|
-
labelType: 4,
|
|
790
|
-
isLongTerm: false,
|
|
791
|
-
cycleId: 0,
|
|
792
|
-
isPush: true,
|
|
793
|
-
taskUrl: null,
|
|
794
|
-
departmentId: 0,
|
|
795
|
-
counter: {
|
|
796
|
-
taskTotal: 1,
|
|
797
|
-
finishTaskTotal: 0,
|
|
798
|
-
experienceTotal: 0,
|
|
799
|
-
commentTotal: 0,
|
|
800
|
-
operationTotal: 0,
|
|
801
|
-
meetTotal: 0,
|
|
802
|
-
businessTripTotal: 0,
|
|
803
|
-
applyTotal: 0,
|
|
804
|
-
workTimeTotal: 0,
|
|
805
|
-
attachmentTotal: 0,
|
|
806
|
-
dashangTotal: 0,
|
|
807
|
-
rewardTotal: 0,
|
|
808
|
-
praiseTotal: 0
|
|
809
|
-
},
|
|
810
|
-
remainDay: 19,
|
|
811
|
-
isAddMenu: true,
|
|
812
|
-
hasSubTask: false,
|
|
813
|
-
evaluateModel: null,
|
|
814
|
-
mileStoneId: 3173,
|
|
815
|
-
cycleable: false,
|
|
816
|
-
isExternal: false,
|
|
817
|
-
progress: 0,
|
|
818
|
-
riskLevel: 3,
|
|
819
|
-
newExperience: null,
|
|
820
|
-
isQuantify: false,
|
|
821
|
-
progressDescription: null,
|
|
822
|
-
objType: 7,
|
|
823
|
-
medalDetail: null,
|
|
824
|
-
workApplyStatus: 0,
|
|
825
|
-
workApplyType: 0
|
|
826
|
-
}, {
|
|
827
|
-
taskId: "500018_7368_4_10_637844318625901563",
|
|
828
|
-
id: 7368,
|
|
829
|
-
parentTaskId: null,
|
|
830
|
-
appId: null,
|
|
831
|
-
userId: 500000126,
|
|
832
|
-
principalId: 500000126,
|
|
833
|
-
user: {
|
|
834
|
-
userId: 500000126,
|
|
835
|
-
userType: 0,
|
|
836
|
-
name: "张玮琦",
|
|
837
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
838
|
-
managerId: 0,
|
|
839
|
-
jobState: 1,
|
|
840
|
-
departmentId: 0,
|
|
841
|
-
departmentName: "默认部门",
|
|
842
|
-
postition: null,
|
|
843
|
-
subType: 0,
|
|
844
|
-
hasSubordinates: false,
|
|
845
|
-
avatar: {
|
|
846
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
847
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
848
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
849
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
850
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
851
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
852
|
-
hasAvatar: true,
|
|
853
|
-
color: null
|
|
854
|
-
},
|
|
855
|
-
staffCode: null
|
|
856
|
-
},
|
|
857
|
-
principalUser: {
|
|
858
|
-
userId: 500000126,
|
|
859
|
-
userType: 0,
|
|
860
|
-
name: "张玮琦",
|
|
861
|
-
email: "4adbbaa2-a0d6-4f7b-841f-c1ab0c34a07b_220301_102224@virtual.account",
|
|
862
|
-
managerId: 0,
|
|
863
|
-
jobState: 1,
|
|
864
|
-
departmentId: 0,
|
|
865
|
-
departmentName: "默认部门",
|
|
866
|
-
postition: null,
|
|
867
|
-
subType: 0,
|
|
868
|
-
hasSubordinates: false,
|
|
869
|
-
avatar: {
|
|
870
|
-
original: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_o.jpeg",
|
|
871
|
-
small: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_s.jpeg",
|
|
872
|
-
medium: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_m.jpeg",
|
|
873
|
-
big: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_b.jpeg",
|
|
874
|
-
normal: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_n.jpeg",
|
|
875
|
-
large: "//file.tita.work/TitaImage/500018/c8ea63be9cbc4f5d8848d62bc440f933_l.jpeg",
|
|
876
|
-
hasAvatar: true,
|
|
877
|
-
color: null
|
|
878
|
-
},
|
|
879
|
-
staffCode: null
|
|
880
|
-
},
|
|
881
|
-
taskName: "fdsa",
|
|
882
|
-
status: 1,
|
|
883
|
-
taskType: 0,
|
|
884
|
-
isPrivate: false,
|
|
885
|
-
isSuperior: false,
|
|
886
|
-
createDate: "2022/04/01",
|
|
887
|
-
startDate: "2022/04/01 00:00",
|
|
888
|
-
deadLine: "2022/04/30 23:59",
|
|
889
|
-
finishDate: "",
|
|
890
|
-
editable: true,
|
|
891
|
-
editLableable: true,
|
|
892
|
-
deleteable: true,
|
|
893
|
-
editStatusable: true,
|
|
894
|
-
isAddExperience: true,
|
|
895
|
-
isMark: false,
|
|
896
|
-
priority: 3,
|
|
897
|
-
priorityTitle: "中",
|
|
898
|
-
editPriorityAble: true,
|
|
899
|
-
isRemind: false,
|
|
900
|
-
isApply: false,
|
|
901
|
-
isDeadLine: false,
|
|
902
|
-
isShowWorkLable: true,
|
|
903
|
-
userRelation: 0,
|
|
904
|
-
labelId: "4051",
|
|
905
|
-
labelName: null,
|
|
906
|
-
labelType: 4,
|
|
907
|
-
isLongTerm: false,
|
|
908
|
-
cycleId: 0,
|
|
909
|
-
isPush: true,
|
|
910
|
-
taskUrl: null,
|
|
911
|
-
departmentId: 0,
|
|
912
|
-
counter: {
|
|
913
|
-
taskTotal: 2,
|
|
914
|
-
finishTaskTotal: 0,
|
|
915
|
-
experienceTotal: 0,
|
|
916
|
-
commentTotal: 0,
|
|
917
|
-
operationTotal: 0,
|
|
918
|
-
meetTotal: 0,
|
|
919
|
-
businessTripTotal: 0,
|
|
920
|
-
applyTotal: 0,
|
|
921
|
-
workTimeTotal: 0,
|
|
922
|
-
attachmentTotal: 0,
|
|
923
|
-
dashangTotal: 0,
|
|
924
|
-
rewardTotal: 0,
|
|
925
|
-
praiseTotal: 0
|
|
926
|
-
},
|
|
927
|
-
remainDay: 12,
|
|
928
|
-
isAddMenu: true,
|
|
929
|
-
hasSubTask: false,
|
|
930
|
-
evaluateModel: null,
|
|
931
|
-
mileStoneId: 3173,
|
|
932
|
-
cycleable: false,
|
|
933
|
-
isExternal: false,
|
|
934
|
-
progress: 0,
|
|
935
|
-
riskLevel: 0,
|
|
936
|
-
newExperience: null,
|
|
937
|
-
isQuantify: false,
|
|
938
|
-
progressDescription: null,
|
|
939
|
-
objType: 4,
|
|
940
|
-
medalDetail: null,
|
|
941
|
-
workApplyStatus: 0,
|
|
942
|
-
workApplyType: 0
|
|
943
|
-
}];
|
|
944
|
-
exports["default"] = _default;
|