@chlp-tech/rpa-ui 0.0.11 → 0.0.13
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/dist/MediaAccountPreview/index.d.ts +11 -0
- package/dist/MediaAccountPreview/index.js +39 -0
- package/dist/MediaAccountPreview/index.module.less +35 -0
- package/dist/account-select/index.d.ts +6 -38
- package/dist/account-select/index.js +256 -185
- package/dist/account-select/index.module.less +152 -39
- package/dist/account-select/type.d.ts +90 -0
- package/dist/account-select/type.js +1 -0
- package/dist/cover-modal/index.d.ts +10 -0
- package/dist/cover-modal/index.js +64 -0
- package/dist/drawer-task/index.d.ts +2 -2
- package/dist/drawer-task/index.js +3 -1
- package/dist/drawer-task/index.module.less +6 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/publish-account2/imgs/close.svg +25 -0
- package/dist/publish-account2/imgs/fb.svg +20 -0
- package/dist/publish-account2/imgs/ins.svg +36 -0
- package/dist/publish-account2/imgs/tk.svg +31 -0
- package/dist/publish-account2/imgs/tt.svg +21 -0
- package/dist/publish-account2/imgs/yt.svg +25 -0
- package/dist/publish-account2/index.d.ts +37 -0
- package/dist/publish-account2/index.js +144 -0
- package/dist/publish-account2/index.module.less +83 -0
- package/dist/publish-status/imgs/delete.svg +22 -0
- package/dist/publish-status/imgs/pause.svg +27 -0
- package/dist/publish-status/index.js +26 -0
- package/dist/release-video-card/index.d.ts +1 -0
- package/dist/release-video-card/index.js +21 -8
- package/dist/release-video-card/index.module.less +1 -0
- package/dist/text-ellipsis/index.js +8 -4
- package/package.json +3 -2
|
@@ -1,54 +1,50 @@
|
|
|
1
|
-
.
|
|
2
|
-
padding: 2px 17px 2px 2px;
|
|
3
|
-
border-radius: 25px;
|
|
1
|
+
.box {
|
|
4
2
|
display: flex;
|
|
5
|
-
|
|
3
|
+
flex-direction: row;
|
|
6
4
|
align-items: center;
|
|
5
|
+
justify-content: space-between;
|
|
6
|
+
|
|
7
|
+
padding: 2px 17px 2px 2px;
|
|
8
|
+
border-radius: 999px;
|
|
7
9
|
cursor: pointer;
|
|
8
10
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
11
|
+
border: 1px solid #D4DBE7;
|
|
12
|
+
|
|
13
|
+
.placeHolderText {
|
|
12
14
|
font-size: 14px;
|
|
13
15
|
color: #9EA7B5;
|
|
14
16
|
}
|
|
15
17
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
color: #142A51;
|
|
21
|
-
}
|
|
18
|
+
.centerContentBox {
|
|
19
|
+
flex: 1;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
margin: 0 12px;
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
23
|
+
.selectInfoBox {
|
|
24
|
+
display: flex;
|
|
25
|
+
flex-direction: row;
|
|
26
|
+
align-items: center;
|
|
27
|
+
.accountName {
|
|
28
|
+
color: #142A51;
|
|
29
|
+
font-size: 14px;
|
|
30
|
+
flex: 1;
|
|
31
|
+
min-width: 0;
|
|
32
|
+
}
|
|
29
33
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
34
|
+
.languageText {
|
|
35
|
+
width: max-content;
|
|
36
|
+
background: #E9F1FF;
|
|
37
|
+
border-radius: 4px;
|
|
38
|
+
border: 1px solid #004FD3;
|
|
39
|
+
padding: 4px 8px;
|
|
40
|
+
line-height: 1;
|
|
41
|
+
font-size: 12px;
|
|
42
|
+
color: #004FD3;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
35
45
|
}
|
|
36
46
|
}
|
|
37
|
-
|
|
38
|
-
.wrap_no_active {
|
|
39
|
-
background: #F5F7FA;
|
|
40
|
-
border-radius: 25px;
|
|
41
|
-
border: 1px solid #D4DBE7;
|
|
42
|
-
padding: 2px 17px 2px 2px;
|
|
43
|
-
display: flex;
|
|
44
|
-
justify-content: space-between;
|
|
45
|
-
align-items: center;
|
|
46
|
-
cursor: pointer;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
.popover_title {
|
|
51
|
-
font-family: PingFangSC, PingFang SC;
|
|
47
|
+
.defaultDisablePopContent {
|
|
52
48
|
font-weight: 400;
|
|
53
49
|
font-size: 14px;
|
|
54
50
|
color: #FA4441;
|
|
@@ -56,3 +52,120 @@
|
|
|
56
52
|
text-align: left;
|
|
57
53
|
font-style: normal;
|
|
58
54
|
}
|
|
55
|
+
|
|
56
|
+
.boxDisabled {
|
|
57
|
+
cursor: not-allowed;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.popBox {
|
|
61
|
+
width: 481px;
|
|
62
|
+
background: #FFFFFF;
|
|
63
|
+
box-shadow: 0 9px 28px 8px rgba(0,0,0,0.05), 0 6px 16px 0 rgba(0,0,0,0.08), 0 3px 6px -4px rgba(0,0,0,0.12);
|
|
64
|
+
border-radius: 8px;
|
|
65
|
+
|
|
66
|
+
:global {
|
|
67
|
+
.ant-popover-inner {
|
|
68
|
+
padding: 4px;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.scrollBox {
|
|
73
|
+
display: flex;
|
|
74
|
+
flex-direction: column;
|
|
75
|
+
max-height: 50vh;
|
|
76
|
+
overflow: auto;
|
|
77
|
+
margin-top: 4px;
|
|
78
|
+
gap: 2px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.rowBox {
|
|
82
|
+
display: flex;
|
|
83
|
+
flex-direction: row;
|
|
84
|
+
align-items: center;
|
|
85
|
+
padding: 6px 12px;
|
|
86
|
+
gap: 12px;
|
|
87
|
+
box-sizing: border-box;
|
|
88
|
+
width: 100%;
|
|
89
|
+
|
|
90
|
+
&:hover {
|
|
91
|
+
background-color: #F5F7FA;
|
|
92
|
+
border-radius: 4px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.name {
|
|
96
|
+
font-size: 14px;
|
|
97
|
+
color: #142A51;
|
|
98
|
+
width: 130px;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.remark {
|
|
102
|
+
font-size: 12px;
|
|
103
|
+
color: #9EA7B5;
|
|
104
|
+
flex: 1;
|
|
105
|
+
min-width: 0;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.countryAndLanguage {
|
|
109
|
+
font-size: 12px;
|
|
110
|
+
color: #9EA7B5;
|
|
111
|
+
width: 80px;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.userWrap {
|
|
115
|
+
width: 80px;
|
|
116
|
+
display: flex;
|
|
117
|
+
flex-direction: row;
|
|
118
|
+
justify-content: flex-end;
|
|
119
|
+
}
|
|
120
|
+
.userBox {
|
|
121
|
+
width: max-content;
|
|
122
|
+
background: #E9F1FF;
|
|
123
|
+
border-radius: 4px;
|
|
124
|
+
border: 1px solid #004FD3;
|
|
125
|
+
padding: 4px 8px;
|
|
126
|
+
line-height: 1;
|
|
127
|
+
|
|
128
|
+
font-size: 12px;
|
|
129
|
+
color: #004FD3;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.rowBoxClick {
|
|
134
|
+
cursor: pointer;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.rowBoxSelect {
|
|
138
|
+
background-color: #e6f3ff;
|
|
139
|
+
border-radius: 4px;
|
|
140
|
+
&:hover {
|
|
141
|
+
background-color: #e6f3ff;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.rowBoxDisable {
|
|
146
|
+
cursor: not-allowed;
|
|
147
|
+
border-radius: 4px;
|
|
148
|
+
background-color: rgb(254, 236, 236);
|
|
149
|
+
&:hover {
|
|
150
|
+
background-color: rgb(254, 236, 236);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.rowBoxDisableMatchLanguage {
|
|
155
|
+
cursor: not-allowed;
|
|
156
|
+
border-radius: 4px;
|
|
157
|
+
background-color: #ECEFF4;
|
|
158
|
+
&:hover {
|
|
159
|
+
background-color: #ECEFF4;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.accountPrePopBox {
|
|
165
|
+
:global {
|
|
166
|
+
.ant-popover-inner {
|
|
167
|
+
padding: 0px !important;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import React, { ReactElement } from "react";
|
|
2
|
+
export interface IAccountSelectProps {
|
|
3
|
+
/**
|
|
4
|
+
* 普通状态下的icon
|
|
5
|
+
*/
|
|
6
|
+
icon?: string | React.ReactElement;
|
|
7
|
+
/**
|
|
8
|
+
* 禁用状态下的icon
|
|
9
|
+
*/
|
|
10
|
+
disabledIcon?: string | React.ReactElement;
|
|
11
|
+
/**
|
|
12
|
+
* 默认选中的条数
|
|
13
|
+
*/
|
|
14
|
+
defaultSelectList?: (number | string)[];
|
|
15
|
+
/**
|
|
16
|
+
* 没有选择文件的时候默认提示文案
|
|
17
|
+
*/
|
|
18
|
+
placeholder?: string | React.ReactElement;
|
|
19
|
+
/**
|
|
20
|
+
* 是否禁用
|
|
21
|
+
*/
|
|
22
|
+
disabled?: boolean;
|
|
23
|
+
disabledPopContent?: string | React.ReactElement;
|
|
24
|
+
/**
|
|
25
|
+
* 是否多选
|
|
26
|
+
*/
|
|
27
|
+
multiple?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* 选项发生变化触发
|
|
30
|
+
* @param values
|
|
31
|
+
*/
|
|
32
|
+
onChange?: (values: (string | number)[]) => void;
|
|
33
|
+
/**
|
|
34
|
+
* 下拉选项列表
|
|
35
|
+
*/
|
|
36
|
+
options?: IAccountOptionModel[];
|
|
37
|
+
/**
|
|
38
|
+
* 自定义渲染选择之后的视图
|
|
39
|
+
* @param values
|
|
40
|
+
*/
|
|
41
|
+
renderSelectStatus?: (values: (string | number)[]) => ReactElement;
|
|
42
|
+
}
|
|
43
|
+
export interface IAccountOptionModel {
|
|
44
|
+
/**
|
|
45
|
+
* 选项唯一值
|
|
46
|
+
*/
|
|
47
|
+
id: string | number;
|
|
48
|
+
/**
|
|
49
|
+
* 账号名
|
|
50
|
+
*/
|
|
51
|
+
accountName?: string;
|
|
52
|
+
/**
|
|
53
|
+
* 备注
|
|
54
|
+
*/
|
|
55
|
+
remark?: string;
|
|
56
|
+
/**
|
|
57
|
+
* 国家
|
|
58
|
+
*/
|
|
59
|
+
countryCnName?: string;
|
|
60
|
+
languageCode?: string;
|
|
61
|
+
/**
|
|
62
|
+
* 语言
|
|
63
|
+
*/
|
|
64
|
+
languageCnName?: string;
|
|
65
|
+
/**
|
|
66
|
+
* 所属人员
|
|
67
|
+
*/
|
|
68
|
+
ownerUserName?: string;
|
|
69
|
+
/**
|
|
70
|
+
* 1 - 语言相同,2 - 账号被废弃
|
|
71
|
+
*/
|
|
72
|
+
disabledState?: number;
|
|
73
|
+
}
|
|
74
|
+
export interface IAccountGroupAccounts extends IAccountSelectProps {
|
|
75
|
+
key: string;
|
|
76
|
+
}
|
|
77
|
+
export interface IAccountListProps {
|
|
78
|
+
accounts: IAccountGroupAccounts[];
|
|
79
|
+
colSpan?: number;
|
|
80
|
+
onChange?: (selected: {
|
|
81
|
+
[key: string]: string[];
|
|
82
|
+
}) => void;
|
|
83
|
+
value?: {
|
|
84
|
+
[key: string]: string[];
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
export interface IAccountListRef {
|
|
88
|
+
resetSelectList?: () => void;
|
|
89
|
+
setNewsSelectAccount?: (defaultSelectObj: any) => void;
|
|
90
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -16,5 +16,15 @@ interface CoverModalProps {
|
|
|
16
16
|
handleUpload: (file: File) => Promise<string>;
|
|
17
17
|
children: React.ReactNode;
|
|
18
18
|
}
|
|
19
|
+
export interface ICoverModalV2Props {
|
|
20
|
+
open?: boolean;
|
|
21
|
+
defaultTab?: TabOptions;
|
|
22
|
+
defaultData?: defaultData;
|
|
23
|
+
videoUrl: string;
|
|
24
|
+
handleUpload: (file: File) => Promise<string>;
|
|
25
|
+
onClose?: () => void;
|
|
26
|
+
onSubmit?: (key: 'selectCover' | 'uploadCover' | string, data: string | number) => void;
|
|
27
|
+
}
|
|
19
28
|
declare const CoverModal: FC<CoverModalProps>;
|
|
29
|
+
export declare const CoverModalV2: FC<ICoverModalV2Props>;
|
|
20
30
|
export default CoverModal;
|
|
@@ -407,4 +407,68 @@ var CoverModal = function CoverModal(props) {
|
|
|
407
407
|
onClick: handleOpen
|
|
408
408
|
}, props.children));
|
|
409
409
|
};
|
|
410
|
+
export var CoverModalV2 = function CoverModalV2(props) {
|
|
411
|
+
var _props$defaultTab2;
|
|
412
|
+
var _useState15 = useState((_props$defaultTab2 = props.defaultTab) !== null && _props$defaultTab2 !== void 0 ? _props$defaultTab2 : 1),
|
|
413
|
+
_useState16 = _slicedToArray(_useState15, 2),
|
|
414
|
+
value = _useState16[0],
|
|
415
|
+
setValue = _useState16[1];
|
|
416
|
+
var handleSubmit = function handleSubmit(key, data) {
|
|
417
|
+
var _props$onSubmit;
|
|
418
|
+
(_props$onSubmit = props.onSubmit) === null || _props$onSubmit === void 0 || _props$onSubmit.call(props, key, data);
|
|
419
|
+
};
|
|
420
|
+
var coverVisible = useMemo(function () {
|
|
421
|
+
return {
|
|
422
|
+
'selectVisible': value === 1,
|
|
423
|
+
'uploadVisible': value === 2
|
|
424
|
+
};
|
|
425
|
+
}, [value]);
|
|
426
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Modal, {
|
|
427
|
+
open: props.open,
|
|
428
|
+
title: "\u8BBE\u7F6E\u5C01\u9762",
|
|
429
|
+
footer: false,
|
|
430
|
+
width: 640,
|
|
431
|
+
onCancel: props.onClose,
|
|
432
|
+
maskClosable: false
|
|
433
|
+
}, /*#__PURE__*/React.createElement(Segmented, {
|
|
434
|
+
value: value,
|
|
435
|
+
options: [{
|
|
436
|
+
label: '选取封面',
|
|
437
|
+
value: 1
|
|
438
|
+
}, {
|
|
439
|
+
label: /*#__PURE__*/React.createElement("div", {
|
|
440
|
+
style: {
|
|
441
|
+
display: 'flex',
|
|
442
|
+
gap: 5,
|
|
443
|
+
alignItems: 'center'
|
|
444
|
+
}
|
|
445
|
+
}, /*#__PURE__*/React.createElement("div", null, "\u4E0A\u4F20\u5C01\u9762"), /*#__PURE__*/React.createElement(Popover, {
|
|
446
|
+
placement: "right",
|
|
447
|
+
content: /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("div", null, "\u5C01\u9762\u56FE\u7247\u5927\u5C0F\u4E0D\u5F97\u8D85\u8FC78mb\uFF0C"), /*#__PURE__*/React.createElement("div", null, "\u56FE\u7247\u5C3A\u5BF8\u9700\u548C\u89C6\u9891\u5C3A\u5BF8\u76F8\u8FD1"))
|
|
448
|
+
}, /*#__PURE__*/React.createElement(InfoCircleOutlined, null))),
|
|
449
|
+
value: 2
|
|
450
|
+
}],
|
|
451
|
+
onChange: function onChange(e) {
|
|
452
|
+
return setValue(e);
|
|
453
|
+
}
|
|
454
|
+
}), /*#__PURE__*/React.createElement(SelectCover, {
|
|
455
|
+
visible: coverVisible['selectVisible'],
|
|
456
|
+
handleClose: function handleClose() {
|
|
457
|
+
var _props$onClose;
|
|
458
|
+
return (_props$onClose = props.onClose) === null || _props$onClose === void 0 ? void 0 : _props$onClose.call(props);
|
|
459
|
+
},
|
|
460
|
+
handleSubmit: handleSubmit,
|
|
461
|
+
videoUrl: props.videoUrl,
|
|
462
|
+
defaultData: props.defaultData
|
|
463
|
+
}), /*#__PURE__*/React.createElement(UploadCover, {
|
|
464
|
+
visible: coverVisible['uploadVisible'],
|
|
465
|
+
handleClose: function handleClose() {
|
|
466
|
+
var _props$onClose2;
|
|
467
|
+
return (_props$onClose2 = props.onClose) === null || _props$onClose2 === void 0 ? void 0 : _props$onClose2.call(props);
|
|
468
|
+
},
|
|
469
|
+
handleSubmit: handleSubmit,
|
|
470
|
+
handleUpload: props.handleUpload,
|
|
471
|
+
defaultData: props.defaultData
|
|
472
|
+
})));
|
|
473
|
+
};
|
|
410
474
|
export default CoverModal;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { DrawerClassNames } from "antd/es/drawer/DrawerPanel";
|
|
3
3
|
interface DrawerTaskProps {
|
|
4
|
-
children
|
|
5
|
-
title
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
title?: string;
|
|
6
6
|
open?: boolean;
|
|
7
7
|
defaultTab?: string;
|
|
8
8
|
hideDefaultOpen?: boolean;
|
|
@@ -120,7 +120,9 @@ var DrawerTask = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
120
120
|
className: styles["drawer_wrap__right"]
|
|
121
121
|
}, /*#__PURE__*/React.createElement("div", {
|
|
122
122
|
className: styles["drawer_wrap__right__title"]
|
|
123
|
-
}, /*#__PURE__*/React.createElement("div",
|
|
123
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
124
|
+
className: styles.titleBox
|
|
125
|
+
}, (currentActiveTabItem === null || currentActiveTabItem === void 0 ? void 0 : currentActiveTabItem.title) || props.title), /*#__PURE__*/React.createElement("div", {
|
|
124
126
|
className: styles["cursor"],
|
|
125
127
|
onClick: handleClose
|
|
126
128
|
}, /*#__PURE__*/React.createElement(Image, {
|
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export { default as DynamicForm } from "./dynamic-form";
|
|
|
11
11
|
export { default as DrawerTask } from "./drawer-task";
|
|
12
12
|
export { default as StatusTag } from "./publish-status";
|
|
13
13
|
export { default as AccountComponent } from "./publish-account";
|
|
14
|
+
export { default as AccountComponentV2 } from "./publish-account2";
|
|
14
15
|
export { default as AccountSelectList } from "./account-select";
|
|
15
16
|
export { default as LabelSelect } from "./label-select";
|
|
16
17
|
export { default as BatchLabel } from "./batch-label";
|
|
@@ -19,4 +20,6 @@ export { default as FormItem } from "./form-item";
|
|
|
19
20
|
export { default as SoundWave } from "./sound-wave";
|
|
20
21
|
export { default as AiEmpty } from "./ai-empty";
|
|
21
22
|
export { default as CoverModal } from './cover-modal';
|
|
23
|
+
export { CoverModalV2 } from './cover-modal';
|
|
24
|
+
export { default as MediaAccountPreview } from './MediaAccountPreview';
|
|
22
25
|
export { mapToMockData } from "./utils";
|
package/dist/index.js
CHANGED
|
@@ -11,6 +11,7 @@ export { default as DynamicForm } from "./dynamic-form";
|
|
|
11
11
|
export { default as DrawerTask } from "./drawer-task";
|
|
12
12
|
export { default as StatusTag } from "./publish-status";
|
|
13
13
|
export { default as AccountComponent } from "./publish-account";
|
|
14
|
+
export { default as AccountComponentV2 } from "./publish-account2";
|
|
14
15
|
export { default as AccountSelectList } from "./account-select";
|
|
15
16
|
export { default as LabelSelect } from "./label-select";
|
|
16
17
|
export { default as BatchLabel } from "./batch-label";
|
|
@@ -19,4 +20,6 @@ export { default as FormItem } from "./form-item";
|
|
|
19
20
|
export { default as SoundWave } from "./sound-wave";
|
|
20
21
|
export { default as AiEmpty } from "./ai-empty";
|
|
21
22
|
export { default as CoverModal } from "./cover-modal";
|
|
23
|
+
export { CoverModalV2 } from "./cover-modal";
|
|
24
|
+
export { default as MediaAccountPreview } from "./MediaAccountPreview";
|
|
22
25
|
export { mapToMockData } from "./utils";
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 62 (91390) - https://sketch.com -->
|
|
4
|
+
<title>矩形</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<g id="发布管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
7
|
+
<g id="发布管理-任务详情--文本任务-异常情况" transform="translate(-1568.000000, -507.000000)">
|
|
8
|
+
<g id="编组-16" transform="translate(1040.000000, 56.000000)">
|
|
9
|
+
<g id="编组-17" transform="translate(104.000000, 81.000000)">
|
|
10
|
+
<g id="编组-33" transform="translate(0.000000, 360.000000)">
|
|
11
|
+
<g id="编组-31备份" transform="translate(252.000000, 0.000000)">
|
|
12
|
+
<g id="编组-33" transform="translate(172.000000, 10.000000)">
|
|
13
|
+
<rect id="矩形" fill="#D8D8D8" opacity="0" x="0" y="0" width="16" height="16"></rect>
|
|
14
|
+
<g id="编组" transform="translate(3.000000, 3.000000)" stroke="#142A51" stroke-linecap="round" stroke-linejoin="round">
|
|
15
|
+
<line x1="0" y1="0" x2="10" y2="10" id="路径"></line>
|
|
16
|
+
<line x1="0" y1="10" x2="10" y2="0" id="路径"></line>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
</g>
|
|
22
|
+
</g>
|
|
23
|
+
</g>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 62 (91390) - https://sketch.com -->
|
|
4
|
+
<title>矩形</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<g id="发布管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
7
|
+
<g id="发布管理-任务详情--视频任务" transform="translate(-1144.000000, -502.000000)" fill-rule="nonzero">
|
|
8
|
+
<g id="编组-16" transform="translate(1040.000000, 56.000000)">
|
|
9
|
+
<g id="编组-17" transform="translate(104.000000, 81.000000)">
|
|
10
|
+
<g id="编组-33" transform="translate(0.000000, 364.000000)">
|
|
11
|
+
<g id="facebook" transform="translate(0.000000, 1.000000)">
|
|
12
|
+
<rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="32" height="32"></rect>
|
|
13
|
+
<path d="M30.6666667,15.9917267 C30.6157794,8.15081431 24.4774152,1.71951574 16.6917967,1.34998948 C8.90617812,0.980463233 2.19319237,6.80180241 1.40875977,14.6030701 C0.624327162,22.4043379 6.04248736,29.4601799 13.7439479,30.6666667 L13.7439479,20.4520913 L9.98711285,20.4520913 L9.98711285,15.9917267 L13.7439479,15.9917267 L13.7439479,12.0534404 C13.7969709,9.36045579 15.9413711,7.18320482 18.6176799,7.10504615 C19.8896924,7.03924118 21.1647196,7.14613144 22.4083603,7.42283294 L22.4083603,11.0206334 L19.9940579,11.0206334 C19.4953209,11.0264153 19.0200291,11.2345205 18.6759437,11.5977659 C18.3318582,11.9610112 18.1481276,12.4486254 18.1664084,12.9500532 L18.1664084,15.9917267 L22.2955424,15.9917267 L21.6411988,20.4520913 L18.1664084,20.4520913 L18.1664084,30.6666667 C25.3684945,29.560267 30.683123,23.3210284 30.6666667,15.9917267 L30.6666667,15.9917267 Z" id="路径" fill="#1876F2"></path>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 62 (91390) - https://sketch.com -->
|
|
4
|
+
<title>矩形</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<defs>
|
|
7
|
+
<linearGradient x1="14.6140845%" y1="85.3314554%" x2="85.2446009%" y2="14.7007042%" id="linearGradient-1">
|
|
8
|
+
<stop stop-color="#F9ED41" offset="0%"></stop>
|
|
9
|
+
<stop stop-color="#FF833D" offset="24.12%"></stop>
|
|
10
|
+
<stop stop-color="#EE5568" offset="40.1%"></stop>
|
|
11
|
+
<stop stop-color="#E7407B" offset="48.88%"></stop>
|
|
12
|
+
<stop stop-color="#0028FF" offset="100%"></stop>
|
|
13
|
+
</linearGradient>
|
|
14
|
+
</defs>
|
|
15
|
+
<g id="发布管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
16
|
+
<g id="发布管理-任务详情--视频任务" transform="translate(-1144.000000, -599.000000)" fill-rule="nonzero">
|
|
17
|
+
<g id="编组-16" transform="translate(1040.000000, 56.000000)">
|
|
18
|
+
<g id="编组-17" transform="translate(104.000000, 81.000000)">
|
|
19
|
+
<g id="编组-33" transform="translate(0.000000, 364.000000)">
|
|
20
|
+
<g id="instagram-fill" transform="translate(0.000000, 98.000000)">
|
|
21
|
+
<rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="32" height="32"></rect>
|
|
22
|
+
<g id="编组" transform="translate(1.333333, 1.333333)">
|
|
23
|
+
<circle id="椭圆形" fill="url(#linearGradient-1)" cx="14.5302326" cy="14.5984496" r="14.5302326"></circle>
|
|
24
|
+
<g transform="translate(5.457364, 5.457364)" fill="#FFFFFF">
|
|
25
|
+
<path d="M12.8930233,0.272868217 L5.18449612,0.272868217 C2.45581395,0.272868217 0.204651163,2.52403101 0.204651163,5.25271318 L0.204651163,12.9612403 C0.204651163,15.6899225 2.45581395,17.9410853 5.18449612,17.9410853 L12.8930233,17.9410853 C15.6217054,17.9410853 17.8728682,15.6899225 17.8728682,12.9612403 L17.8728682,5.25271318 C17.8728682,2.52403101 15.6217054,0.272868217 12.8930233,0.272868217 Z M16.303876,12.8248062 C16.303876,14.7348837 14.7348837,16.303876 12.8248062,16.303876 L5.32093023,16.303876 C3.41085271,16.303876 1.84186047,14.7348837 1.84186047,12.8248062 L1.84186047,5.32093023 C1.84186047,3.41085271 3.41085271,1.84186047 5.32093023,1.84186047 L12.8248062,1.84186047 C14.7348837,1.84186047 16.303876,3.41085271 16.303876,5.32093023 L16.303876,12.8248062 Z" id="形状"></path>
|
|
26
|
+
<path d="M9.07286822,4.57054264 C6.54883721,4.57054264 4.57054264,6.61705426 4.57054264,9.07286822 C4.57054264,11.5286822 6.61705426,13.5751938 9.07286822,13.5751938 C11.5968992,13.5751938 13.5751938,11.5286822 13.5751938,9.07286822 C13.5751938,6.61705426 11.5286822,4.57054264 9.07286822,4.57054264 Z M9.07286822,11.9379845 C7.50387597,11.9379845 6.20775194,10.6418605 6.20775194,9.07286822 C6.20775194,7.50387597 7.50387597,6.20775194 9.07286822,6.20775194 C10.6418605,6.20775194 11.9379845,7.50387597 11.9379845,9.07286822 C11.9379845,10.7100775 10.6418605,11.9379845 9.07286822,11.9379845 Z" id="形状"></path>
|
|
27
|
+
<path d="M14.8031008,4.36589147 C14.8031008,4.97984496 14.3255814,5.45736434 13.7116279,5.45736434 C13.0976744,5.45736434 12.620155,4.97984496 12.620155,4.36589147 C12.620155,3.75193798 13.0976744,3.2744186 13.7116279,3.2744186 C14.3255814,3.2744186 14.8031008,3.82015504 14.8031008,4.36589147 Z" id="路径"></path>
|
|
28
|
+
</g>
|
|
29
|
+
</g>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
</g>
|
|
33
|
+
</g>
|
|
34
|
+
</g>
|
|
35
|
+
</g>
|
|
36
|
+
</svg>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 62 (91390) - https://sketch.com -->
|
|
4
|
+
<title>矩形</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<g id="发布管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
7
|
+
<g id="发布管理-任务详情--视频任务" transform="translate(-1144.000000, -647.000000)" fill-rule="nonzero">
|
|
8
|
+
<g id="编组-16" transform="translate(1040.000000, 56.000000)">
|
|
9
|
+
<g id="编组-17" transform="translate(104.000000, 81.000000)">
|
|
10
|
+
<g id="编组-33" transform="translate(0.000000, 364.000000)">
|
|
11
|
+
<g id="编组-9" transform="translate(0.000000, 146.000000)">
|
|
12
|
+
<rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="32" height="32"></rect>
|
|
13
|
+
<g id="编组" transform="translate(1.333333, 1.333333)">
|
|
14
|
+
<circle id="椭圆形" fill="#010201" cx="14.6666667" cy="14.6666667" r="14.6666667"></circle>
|
|
15
|
+
<g transform="translate(5.649383, 4.562963)" id="路径">
|
|
16
|
+
<path d="M4.95407407,15.9920988 C4.97580247,16.0138272 4.99753086,16.0138272 4.99753086,16.0355556 C5.14962963,16.1441975 5.28,16.3180247 5.43209877,16.4483951 C5.91012346,16.8395062 6.45333333,17.0567901 7.08345679,17.0785185 C8.56098765,17.1654321 9.84296296,16.057284 10.0167901,14.6014815 C10.0167901,14.5362963 10.0167901,14.4493827 10.0167901,14.3841975 C10.0167901,9.99506173 10.0167901,5.60592593 10.0167901,1.21679012 C10.0167901,0.912592593 10.0167901,0.912592593 10.3209877,0.912592593 C10.9945679,0.912592593 11.6464198,0.912592593 12.32,0.912592593 C12.3851852,0.912592593 12.4503704,0.890864198 12.5155556,0.934320988 C12.5155556,0.934320988 12.5155556,0.934320988 12.537284,0.934320988 C12.5590123,0.977777778 12.5807407,0.999506173 12.5807407,1.04296296 C12.8414815,2.2162963 13.4498765,3.17234568 14.4276543,3.88938272 C14.4928395,3.93283951 14.5362963,3.99802469 14.6014815,4.04148148 C14.6449383,4.08493827 14.6883951,4.10666667 14.7318519,4.15012346 C14.8839506,4.23703704 14.9925926,4.3891358 15.1446914,4.49777778 C15.6879012,4.95407407 16.2962963,5.2582716 16.9698765,5.43209877 C17.0350617,5.45382716 17.1002469,5.45382716 17.1437037,5.49728395 C17.1437037,5.49728395 17.1437037,5.49728395 17.1654321,5.49728395 C17.2088889,5.54074074 17.2088889,5.58419753 17.2088889,5.64938272 C17.2088889,6.43160494 17.2088889,7.19209877 17.2088889,7.97432099 C17.2088889,8.14814815 17.1871605,8.16987654 17.0133333,8.16987654 C16.4483951,8.16987654 15.8834568,8.10469136 15.3402469,7.97432099 C14.3841975,7.75703704 13.5150617,7.36592593 12.7111111,6.84444444 C12.6676543,6.82271605 12.6241975,6.75753086 12.5807407,6.77925926 C12.5155556,6.80098765 12.5590123,6.88790123 12.5590123,6.93135802 C12.5590123,9.10419753 12.5590123,11.277037 12.5590123,13.4716049 C12.5590123,14.9925926 12.0592593,16.3614815 11.0597531,17.5130864 C9.99506173,18.7516049 8.64790123,19.468642 7.04,19.6641975 C5.80148148,19.8162963 4.60641975,19.5990123 3.4982716,19.0340741 C3.32444444,18.9471605 3.15061728,18.8385185 2.97679012,18.7081481 C2.93333333,18.6646914 2.86814815,18.6212346 2.82469136,18.5777778 C2.43358025,18.2518519 2.17283951,17.8390123 1.91209877,17.4261728 C1.52098765,16.774321 1.28197531,16.0790123 1.15160494,15.3185185 C1.08641975,14.8839506 1.04296296,14.4493827 1.06469136,14.0365432 C1.15160494,12.6459259 1.60790123,11.4074074 2.49876543,10.3209877 C3.25925926,9.40839506 4.19358025,8.7782716 5.3017284,8.40888889 C5.75802469,8.25679012 6.23604938,8.14814815 6.73580247,8.12641975 C6.82271605,8.12641975 6.90962963,8.10469136 7.0182716,8.10469136 C7.0617284,8.10469136 7.10518519,8.10469136 7.14864198,8.12641975 C7.14864198,8.12641975 7.14864198,8.12641975 7.17037037,8.12641975 C7.19209877,8.16987654 7.19209877,8.21333333 7.19209877,8.25679012 C7.19209877,9.03901235 7.19209877,9.82123457 7.19209877,10.6034568 C7.19209877,10.6251852 7.19209877,10.668642 7.19209877,10.6903704 C7.19209877,10.777284 7.14864198,10.7990123 7.08345679,10.777284 C6.86617284,10.7120988 6.64888889,10.6903704 6.43160494,10.668642 C6.08395062,10.6469136 5.75802469,10.6903704 5.43209877,10.8207407 C4.34567901,11.2118519 3.69382716,11.9940741 3.56345679,13.1239506 C3.43308642,14.2538272 3.86765432,15.1446914 4.80197531,15.7965432 C4.80197531,15.8617284 4.88888889,15.9269136 4.95407407,15.9920988 Z" fill="#FFFFFF"></path>
|
|
17
|
+
<path d="M2.93333333,18.7081481 C2.97679012,18.6864198 2.99851852,18.7298765 3.02024691,18.7516049 C3.71555556,19.1861728 4.47604938,19.468642 5.28,19.5990123 C5.69283951,19.6641975 6.10567901,19.6859259 6.51851852,19.6641975 C7.9091358,19.5990123 9.12592593,19.142716 10.2123457,18.2518519 C11.2335802,17.4044444 11.9288889,16.3180247 12.2765432,15.0360494 C12.3851852,14.6232099 12.4503704,14.2103704 12.4720988,13.7975309 C12.4938272,13.5585185 12.4938272,13.3195062 12.4938272,13.0804938 C12.4938272,10.9945679 12.4938272,8.93037037 12.4938272,6.84444444 C12.4938272,6.80098765 12.4938272,6.75753086 12.4938272,6.69234568 C12.537284,6.67061728 12.5807407,6.71407407 12.6024691,6.73580247 C13.3412346,7.23555556 14.1451852,7.62666667 15.014321,7.84395062 C15.4923457,7.97432099 15.9703704,8.06123457 16.4701235,8.10469136 C16.665679,8.12641975 16.882963,8.12641975 17.0785185,8.12641975 C17.1654321,8.12641975 17.1654321,8.12641975 17.1654321,8.03950617 C17.1654321,7.9308642 17.1654321,7.84395062 17.1654321,7.73530864 C17.1654321,7.04 17.1654321,6.32296296 17.1654321,5.62765432 C17.1654321,5.58419753 17.1654321,5.54074074 17.1654321,5.49728395 C17.3609877,5.51901235 17.5348148,5.56246914 17.708642,5.56246914 C17.817284,5.56246914 17.9476543,5.58419753 18.0562963,5.58419753 C18.1214815,5.58419753 18.1432099,5.60592593 18.1214815,5.64938272 C18.1214815,5.67111111 18.1214815,5.69283951 18.1214815,5.7145679 C18.1214815,6.73580247 18.1214815,7.73530864 18.1214815,8.75654321 C18.1214815,8.7782716 18.1214815,8.8 18.1214815,8.8217284 C18.1214815,8.90864198 18.1214815,8.90864198 18.0345679,8.90864198 C17.708642,8.90864198 17.4044444,8.88691358 17.0785185,8.84345679 C16.4266667,8.75654321 15.8182716,8.60444444 15.2098765,8.3654321 C14.6232099,8.14814815 14.08,7.84395062 13.5802469,7.4962963 C13.5585185,7.4745679 13.5150617,7.45283951 13.4716049,7.43111111 C13.4716049,7.4962963 13.4716049,7.53975309 13.4716049,7.58320988 C13.4716049,9.79950617 13.4716049,12.0158025 13.4716049,14.2320988 C13.4716049,15.4054321 13.1674074,16.5135802 12.537284,17.5130864 C11.7767901,18.7298765 10.7120988,19.577284 9.36493827,20.0553086 C8.53925926,20.3595062 7.71358025,20.4681481 6.84444444,20.402963 C5.38864198,20.294321 4.10666667,19.7293827 3.04197531,18.7516049 C2.97679012,18.7733333 2.95506173,18.7516049 2.93333333,18.7081481 Z" fill="#CB1C54"></path>
|
|
18
|
+
<path d="M12.4938272,0.956049383 C12.4503704,0.956049383 12.4069136,0.956049383 12.3634568,0.956049383 C11.6464198,0.956049383 10.9293827,0.956049383 10.2123457,0.956049383 C10.0385185,0.956049383 10.0385185,0.956049383 10.0385185,1.10814815 C10.0385185,5.47555556 10.0385185,9.84296296 10.0385185,14.2103704 C10.0385185,14.5145679 10.0167901,14.8187654 9.92987654,15.1012346 C9.60395062,16.1224691 8.90864198,16.7960494 7.86567901,17.0350617 C6.73580247,17.2958025 5.77975309,16.9481481 5.01925926,16.0790123 C4.99753086,16.057284 4.99753086,16.0355556 4.99753086,16.0355556 C5.21481481,16.1224691 5.43209877,16.2093827 5.67111111,16.2528395 C6.40987654,16.4049383 7.08345679,16.2962963 7.73530864,15.8834568 C8.47407407,15.4271605 8.90864198,14.7753086 9.06074074,13.9279012 C9.08246914,13.7758025 9.10419753,13.6019753 9.10419753,13.4498765 C9.10419753,9.08246914 9.10419753,4.71506173 9.10419753,0.325925926 C9.10419753,0.13037037 9.08246914,0.152098765 9.27802469,0.152098765 C10.2775309,0.152098765 11.2987654,0.152098765 12.2982716,0.152098765 C12.32,0.152098765 12.3417284,0.152098765 12.3634568,0.152098765 C12.4720988,0.152098765 12.4720988,0.152098765 12.4720988,0.260740741 C12.4503704,0.478024691 12.4503704,0.717037037 12.4938272,0.956049383 Z" fill="#6ABAC5"></path>
|
|
19
|
+
<path d="M7.10518519,8.12641975 C6.49679012,8.14814815 5.88839506,8.23506173 5.3017284,8.43061728 C4.45432099,8.71308642 3.69382716,9.14765432 3.04197531,9.75604938 C2.17283951,10.5382716 1.58617284,11.5160494 1.28197531,12.6241975 C1.17333333,13.0153086 1.10814815,13.4281481 1.06469136,13.8409877 C1.04296296,14.08 1.04296296,14.3407407 1.06469136,14.5797531 C1.10814815,15.2750617 1.23851852,15.948642 1.49925926,16.5787654 C1.80345679,17.2958025 2.1945679,17.9476543 2.73777778,18.5125926 C2.73777778,18.534321 2.75950617,18.534321 2.75950617,18.5560494 C2.6291358,18.5125926 2.54222222,18.425679 2.43358025,18.3387654 C1.43407407,17.5565432 0.738765432,16.557037 0.347654321,15.3185185 C0.217283951,14.8839506 0.13037037,14.4711111 0.0869135802,14.0148148 C0.0651851852,13.6888889 0.0434567901,13.362963 0.0651851852,13.0587654 C0.108641975,12.32 0.282469136,11.602963 0.586666667,10.9293827 C0.912592593,10.2340741 1.34716049,9.60395062 1.89037037,9.06074074 C2.54222222,8.43061728 3.28098765,7.95259259 4.12839506,7.64839506 C4.67160494,7.45283951 5.21481481,7.34419753 5.77975309,7.30074074 C6.19259259,7.27901235 6.6054321,7.27901235 6.99654321,7.32246914 C7.0617284,7.32246914 7.08345679,7.34419753 7.08345679,7.40938272 C7.10518519,7.67012346 7.10518519,7.88740741 7.10518519,8.12641975 Z" fill="#6ABAC5"></path>
|
|
20
|
+
<path d="M4.95407407,15.9920988 C4.71506173,15.8834568 4.49777778,15.7096296 4.30222222,15.5358025 C3.80246914,15.0577778 3.52,14.4928395 3.45481481,13.8192593 C3.30271605,12.4069136 4.19358025,11.1901235 5.43209877,10.7990123 C5.95358025,10.6469136 6.49679012,10.6251852 7.0182716,10.777284 C7.04,10.777284 7.08345679,10.7990123 7.10518519,10.7990123 C7.12691358,10.7555556 7.10518519,10.7120988 7.10518519,10.668642 C7.10518519,9.86469136 7.10518519,9.08246914 7.10518519,8.27851852 C7.10518519,8.23506173 7.10518519,8.19160494 7.10518519,8.14814815 C7.40938272,8.12641975 7.71358025,8.14814815 8.01777778,8.19160494 C8.06123457,8.19160494 8.08296296,8.21333333 8.08296296,8.25679012 C8.08296296,8.27851852 8.08296296,8.30024691 8.08296296,8.32197531 C8.08296296,9.36493827 8.08296296,10.4296296 8.08296296,11.4725926 C8.08296296,11.5160494 8.08296296,11.5595062 8.06123457,11.602963 C7.9308642,11.5812346 7.77876543,11.5377778 7.64839506,11.5160494 C6.84444444,11.4074074 6.10567901,11.602963 5.45382716,12.102716 C4.88888889,12.537284 4.54123457,13.1239506 4.43259259,13.8409877 C4.30222222,14.6014815 4.45432099,15.2967901 4.88888889,15.9269136 C4.93234568,15.9269136 4.93234568,15.948642 4.95407407,15.9920988 Z" fill="#CB1C54"></path>
|
|
21
|
+
<path d="M14.5797531,4.06320988 C14.2755556,3.88938272 14.0148148,3.65037037 13.7540741,3.41135802 C13.1022222,2.73777778 12.6676543,1.93382716 12.4938272,0.999506173 C12.4938272,0.999506173 12.4938272,0.977777778 12.4938272,0.977777778 C12.7762963,0.956049383 13.0587654,0.977777778 13.3412346,0.977777778 C13.3846914,0.977777778 13.4064198,0.999506173 13.4064198,1.04296296 C13.4064198,1.06469136 13.4064198,1.08641975 13.4064198,1.10814815 C13.3846914,1.91209877 13.6237037,2.6291358 14.0148148,3.32444444 C14.1451852,3.56345679 14.3190123,3.80246914 14.4928395,4.01975309 C14.5580247,4.01975309 14.5797531,4.01975309 14.5797531,4.06320988 Z" fill="#CB1C54"></path>
|
|
22
|
+
<path d="M17.1219753,5.51901235 C16.3180247,5.34518519 15.6009877,4.97580247 14.9708642,4.43259259 C14.8839506,4.34567901 14.7753086,4.28049383 14.7101235,4.17185185 C14.7318519,4.17185185 14.7535802,4.19358025 14.7753086,4.19358025 C15.2750617,4.47604938 15.7965432,4.64987654 16.3614815,4.75851852 C16.5787654,4.80197531 16.7960494,4.8237037 17.0133333,4.8237037 C17.1002469,4.8237037 17.1002469,4.8237037 17.1002469,4.91061728 C17.1219753,5.10617284 17.1219753,5.32345679 17.1219753,5.51901235 Z" fill="#6ABAC5"></path>
|
|
23
|
+
</g>
|
|
24
|
+
</g>
|
|
25
|
+
</g>
|
|
26
|
+
</g>
|
|
27
|
+
</g>
|
|
28
|
+
</g>
|
|
29
|
+
</g>
|
|
30
|
+
</g>
|
|
31
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 62 (91390) - https://sketch.com -->
|
|
4
|
+
<title>矩形</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<g id="发布管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
7
|
+
<g id="发布管理-列表模式--" transform="translate(-1047.000000, -714.000000)" fill-rule="nonzero">
|
|
8
|
+
<g id="编组-15备份-4" transform="translate(810.000000, 488.000000)">
|
|
9
|
+
<g id="编组-19备份-3" transform="translate(235.000000, 224.000000)">
|
|
10
|
+
<g id="编组-9" transform="translate(2.000000, 2.000000)">
|
|
11
|
+
<rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="24" height="24"></rect>
|
|
12
|
+
<g id="编组-41" transform="translate(1.000000, 1.000000)">
|
|
13
|
+
<path d="M18.6916589,18.6916589 C22.9676345,14.4156834 22.9676345,7.48295721 18.6916589,3.20698166 C14.4156834,-1.06899389 7.48295721,-1.06899389 3.20698166,3.20698166 C-1.06899389,7.48295721 -1.06899389,14.4156834 3.20698166,18.6916589 C7.48295721,22.9676345 14.4156834,22.9676345 18.6916589,18.6916589 Z" id="椭圆形" fill="#000000"></path>
|
|
14
|
+
<path d="M14.1995927,16.1468582 L15.3754548,16.1468582 L7.75131683,5.70318005 L6.48694902,5.70318005 L14.1995927,16.1468582 Z M14.9455697,4.45145591 L17.0823513,4.45145591 L12.4168341,9.96409959 L17.9041904,17.4618007 L13.6053398,17.4618007 L10.2421214,12.9100766 L6.39844327,17.4618007 L4.26166166,17.4618007 L9.24327086,11.5698467 L3.99614442,4.45145591 L8.39614442,4.45145591 L11.4306272,8.61122603 L14.9455697,4.45145591 Z" id="形状" fill="#FFFFFF"></path>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 62 (91390) - https://sketch.com -->
|
|
4
|
+
<title>矩形</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<g id="发布管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
7
|
+
<g id="发布管理-任务详情--视频任务" transform="translate(-1144.000000, -695.000000)" fill-rule="nonzero">
|
|
8
|
+
<g id="编组-16" transform="translate(1040.000000, 56.000000)">
|
|
9
|
+
<g id="编组-17" transform="translate(104.000000, 81.000000)">
|
|
10
|
+
<g id="编组-33" transform="translate(0.000000, 364.000000)">
|
|
11
|
+
<g id="编组-11备份-2" transform="translate(0.000000, 194.000000)">
|
|
12
|
+
<g id="编组-9">
|
|
13
|
+
<rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="32" height="32"></rect>
|
|
14
|
+
<g id="编组" transform="translate(1.333333, 1.333333)">
|
|
15
|
+
<circle id="椭圆形" fill="#DA0000" cx="14.6666667" cy="14.6666667" r="14.6666667"></circle>
|
|
16
|
+
<path d="M23.9664198,9.97333333 C23.7491358,9.12592593 23.0755556,8.47407407 22.2281481,8.23506173 C20.7071605,7.82222222 14.5797531,7.82222222 14.5797531,7.82222222 C14.5797531,7.82222222 8.47407407,7.82222222 6.93135802,8.23506173 C6.08395062,8.45234568 5.43209877,9.12592593 5.19308642,9.97333333 C4.78024691,11.494321 4.78024691,14.6883951 4.78024691,14.6883951 C4.78024691,14.6883951 4.78024691,17.8607407 5.19308642,19.4034568 C5.41037037,20.2508642 6.08395062,20.902716 6.93135802,21.1417284 C8.45234568,21.5545679 14.5797531,21.5545679 14.5797531,21.5545679 C14.5797531,21.5545679 20.6854321,21.5545679 22.2281481,21.1417284 C23.0755556,20.9244444 23.7274074,20.2508642 23.9664198,19.4034568 C24.3792593,17.8824691 24.3792593,14.6883951 24.3792593,14.6883951 C24.3792593,14.6883951 24.3792593,11.494321 23.9664198,9.97333333 Z M12.6459259,17.6217284 L12.6459259,11.7550617 L17.7303704,14.6883951 L12.6459259,17.6217284 Z" id="形状" fill="#FFFFFF"></path>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
</g>
|
|
22
|
+
</g>
|
|
23
|
+
</g>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|