@chlp-tech/rpa-ui 0.0.11-beta.11 → 0.0.11-beta.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.
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="14px" height="14px" viewBox="0 0 14 14" 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="广告投放2025" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
7
|
+
<g id="发布管理-广告帖子--" transform="translate(-1511.000000, -981.000000)" fill-rule="nonzero">
|
|
8
|
+
<g id="编组-15备份-8" transform="translate(1352.000000, 824.000000)">
|
|
9
|
+
<g id="编组-39备份-4" transform="translate(152.000000, 152.000000)">
|
|
10
|
+
<g id="编组-37">
|
|
11
|
+
<g>
|
|
12
|
+
<g id="Icon/Checkbox-Normal" transform="translate(6.000000, 4.000000)">
|
|
13
|
+
<g id="编组">
|
|
14
|
+
<rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="16" height="16"></rect>
|
|
15
|
+
<g id="poweroff-circle-fill">
|
|
16
|
+
<rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="16" height="16"></rect>
|
|
17
|
+
<path d="M8,1 C4.134375,1 1,4.134375 1,8 C1,11.865625 4.134375,15 8,15 C11.865625,15 15,11.865625 15,8 C15,4.134375 11.865625,1 8,1 Z M6.75,10.375 C6.75,10.44375 6.69375,10.5 6.625,10.5 L5.875,10.5 C5.80625,10.5 5.75,10.44375 5.75,10.375 L5.75,5.625 C5.75,5.55625 5.80625,5.5 5.875,5.5 L6.625,5.5 C6.69375,5.5 6.75,5.55625 6.75,5.625 L6.75,10.375 Z M10.25,10.375 C10.25,10.44375 10.19375,10.5 10.125,10.5 L9.375,10.5 C9.30625,10.5 9.25,10.44375 9.25,10.375 L9.25,5.625 C9.25,5.55625 9.30625,5.5 9.375,5.5 L10.125,5.5 C10.19375,5.5 10.25,5.55625 10.25,5.625 L10.25,10.375 Z" id="形状" fill="#3F5270"></path>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
</g>
|
|
22
|
+
</g>
|
|
23
|
+
</g>
|
|
24
|
+
</g>
|
|
25
|
+
</g>
|
|
26
|
+
</g>
|
|
27
|
+
</svg>
|
|
@@ -5,6 +5,7 @@ import Wait from "./imgs/wait.svg";
|
|
|
5
5
|
import Success from "./imgs/success.svg";
|
|
6
6
|
import Fail from "./imgs/fail.svg";
|
|
7
7
|
import Publish from "./imgs/publish.svg";
|
|
8
|
+
import Pause from "./imgs/pause.svg";
|
|
8
9
|
var statusTag = {
|
|
9
10
|
0: {
|
|
10
11
|
bgColor: '#ECEFF4',
|
|
@@ -35,6 +36,24 @@ var statusTag = {
|
|
|
35
36
|
textColor: '#004FD3',
|
|
36
37
|
text: '发布中',
|
|
37
38
|
icon: Publish
|
|
39
|
+
},
|
|
40
|
+
5: {
|
|
41
|
+
bgColor: '#E9F1FF',
|
|
42
|
+
textColor: '#004FD3',
|
|
43
|
+
text: '排队中',
|
|
44
|
+
icon: Publish
|
|
45
|
+
},
|
|
46
|
+
6: {
|
|
47
|
+
bgColor: '#ECEFF4',
|
|
48
|
+
textColor: '#3F5270',
|
|
49
|
+
text: '已暂停',
|
|
50
|
+
icon: Pause
|
|
51
|
+
},
|
|
52
|
+
7: {
|
|
53
|
+
bgColor: '#E9F1FF',
|
|
54
|
+
textColor: '#004FD3',
|
|
55
|
+
text: '审核中',
|
|
56
|
+
icon: Publish
|
|
38
57
|
}
|
|
39
58
|
};
|
|
40
59
|
var StatusTag = function StatusTag(_ref) {
|