@titaui/pc 1.10.17-beta.2 → 1.10.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/lib/components/dynamic/components/first-level-tabs/index.js +1 -1
  2. package/lib/components/dynamic/dynamic-item/dynamic-chart/index.css +4 -0
  3. package/lib/components/dynamic/dynamic-item/dynamic-chart/index.js +107 -0
  4. package/lib/components/dynamic/dynamic-item/{dynamic-replay → dynamic-reply}/index.css +0 -0
  5. package/lib/components/dynamic/dynamic-item/{dynamic-replay → dynamic-reply}/index.js +0 -0
  6. package/lib/components/dynamic/dynamic-item/dynamic-share-content/index.js +42 -0
  7. package/lib/components/dynamic/dynamic-item/index.js +17 -3
  8. package/lib/components/menus/export-modules/demo-menus/menus.js +14 -14
  9. package/lib/components/nav-top/components/user-message/index.js +3 -0
  10. package/lib/components/superset-charts/components/index.js +63 -0
  11. package/lib/components/superset-charts/index.js +13 -0
  12. package/lib/components/superset-charts/init/index.js +42 -0
  13. package/lib/components/superset-charts/init/insert-assets.js +101 -0
  14. package/lib/components/superset-charts/init/use-get-assets.js +193 -0
  15. package/lib/components/superset-charts/interface.js +5 -0
  16. package/lib/components/superset-charts/utils/axios.js +90 -0
  17. package/lib/components/user-selector/empty/index.css +6 -6
  18. package/lib/components/user-selector/selected-panel/index.css +3 -3
  19. package/lib/index.js +7 -7
  20. package/package.json +1 -1
  21. package/lib/components/video-modal/img/bigFaqi.png +0 -0
  22. package/lib/components/video-modal/img/close.png +0 -0
  23. package/lib/components/video-modal/img/full.svg +0 -21
  24. package/lib/components/video-modal/img/muted.svg +0 -14
  25. package/lib/components/video-modal/img/not-muted.svg +0 -22
  26. package/lib/components/video-modal/img/pause.svg +0 -13
  27. package/lib/components/video-modal/img/play.svg +0 -18
  28. package/lib/components/video-modal/img/small.svg +0 -22
  29. package/lib/components/video-modal/index.css +0 -240
  30. package/lib/components/video-modal/index.js +0 -327
  31. package/lib/components/video-modal/utils.js +0 -25
@@ -0,0 +1,193 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.transMetasToTableData = exports.getAssetsVersion = exports.getAssetsUri = exports.getAssets = exports.domain = exports["default"] = void 0;
7
+
8
+ var _react = require("react");
9
+
10
+ var _axios = _interopRequireDefault(require("../utils/axios"));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
13
+
14
+ function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
15
+
16
+ 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."); }
17
+
18
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
19
+
20
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
21
+
22
+ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
23
+
24
+ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
25
+
26
+ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
27
+
28
+ function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
29
+
30
+ var domain = "https://tracker.tita.com";
31
+ exports.domain = domain;
32
+
33
+ var transMetasToTableData = function transMetasToTableData() {
34
+ var dataSource = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
35
+ var listData = [];
36
+ dataSource.forEach(function (dataItem) {
37
+ var data = {};
38
+ dataItem.forEach(function (field) {
39
+ var name = field.name,
40
+ value = field.value;
41
+ data[name] = value;
42
+ });
43
+ listData.push(data);
44
+ });
45
+ return listData;
46
+ };
47
+
48
+ exports.transMetasToTableData = transMetasToTableData;
49
+ var storageKey = "DEMO_CHART_URI_";
50
+
51
+ var getAssetsVersion = function getAssetsVersion() {
52
+ return _axios["default"].post("".concat(domain, "/api/v1/metas/list"), {
53
+ filter: {
54
+ fields: [],
55
+ order: {
56
+ name: "create_time_unix",
57
+ operator: "desc"
58
+ },
59
+ limit: 1
60
+ },
61
+ objectName: "superset_assets_version"
62
+ }).then(function (res) {
63
+ return transMetasToTableData(res.data.list);
64
+ });
65
+ };
66
+
67
+ exports.getAssetsVersion = getAssetsVersion;
68
+
69
+ var getAssetsUri = function getAssetsUri(version) {
70
+ return _axios["default"].post("".concat(domain, "/api/v1/metas/list"), {
71
+ filter: {
72
+ fields: [{
73
+ name: "version",
74
+ operator: "=",
75
+ value: version,
76
+ type: "string"
77
+ }],
78
+ order: {
79
+ name: "create_time_unix",
80
+ operator: "desc"
81
+ },
82
+ limit: 20
83
+ },
84
+ objectName: "superset_assets"
85
+ }).then(function (res) {
86
+ localStorage.setItem("".concat(storageKey, "version"), JSON.stringify(transMetasToTableData(res.data.list)));
87
+ return transMetasToTableData(res.data.list);
88
+ });
89
+ };
90
+
91
+ exports.getAssetsUri = getAssetsUri;
92
+
93
+ var getAssets = /*#__PURE__*/function () {
94
+ var _ref = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
95
+ var versionRes, assets, assetsUri;
96
+ return regeneratorRuntime.wrap(function _callee$(_context) {
97
+ while (1) {
98
+ switch (_context.prev = _context.next) {
99
+ case 0:
100
+ _context.next = 2;
101
+ return getAssetsVersion();
102
+
103
+ case 2:
104
+ versionRes = _context.sent;
105
+ assets = localStorage.getItem("".concat(storageKey, "version"));
106
+
107
+ if (!assets) {
108
+ _context.next = 6;
109
+ break;
110
+ }
111
+
112
+ return _context.abrupt("return", JSON.parse(assets));
113
+
114
+ case 6:
115
+ _context.next = 8;
116
+ return getAssetsUri(versionRes[0].version);
117
+
118
+ case 8:
119
+ assetsUri = _context.sent;
120
+ return _context.abrupt("return", assetsUri);
121
+
122
+ case 10:
123
+ case "end":
124
+ return _context.stop();
125
+ }
126
+ }
127
+ }, _callee);
128
+ }));
129
+
130
+ return function getAssets() {
131
+ return _ref.apply(this, arguments);
132
+ };
133
+ }();
134
+
135
+ exports.getAssets = getAssets;
136
+
137
+ var useInsertAssets = function useInsertAssets() {
138
+ var _useState = (0, _react.useState)([]),
139
+ _useState2 = _slicedToArray(_useState, 2),
140
+ assetsUri = _useState2[0],
141
+ setAssetsUri = _useState2[1];
142
+
143
+ (0, _react.useEffect)(function () {
144
+ _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2() {
145
+ var versionRes, assets, cacheVersion, uri;
146
+ return regeneratorRuntime.wrap(function _callee2$(_context2) {
147
+ while (1) {
148
+ switch (_context2.prev = _context2.next) {
149
+ case 0:
150
+ _context2.next = 2;
151
+ return getAssetsVersion();
152
+
153
+ case 2:
154
+ versionRes = _context2.sent;
155
+ assets = localStorage.getItem("".concat(storageKey, "version"));
156
+ cacheVersion = "";
157
+
158
+ if (assets !== null) {
159
+ cacheVersion = JSON.parse(assets)[0].version;
160
+ }
161
+
162
+ if (!(assets !== null && assets === cacheVersion)) {
163
+ _context2.next = 10;
164
+ break;
165
+ }
166
+
167
+ setAssetsUri(JSON.parse(assets));
168
+ _context2.next = 14;
169
+ break;
170
+
171
+ case 10:
172
+ _context2.next = 12;
173
+ return getAssetsUri(versionRes[0].version);
174
+
175
+ case 12:
176
+ uri = _context2.sent;
177
+ setAssetsUri(uri);
178
+
179
+ case 14:
180
+ case "end":
181
+ return _context2.stop();
182
+ }
183
+ }
184
+ }, _callee2);
185
+ }))();
186
+ }, []);
187
+ return {
188
+ assetsUri: assetsUri
189
+ };
190
+ };
191
+
192
+ var _default = useInsertAssets;
193
+ exports["default"] = _default;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -0,0 +1,90 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.getJwtToken = exports["default"] = void 0;
7
+ exports.setToken = setToken;
8
+
9
+ var _axios = _interopRequireDefault(require("axios"));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
12
+
13
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
14
+
15
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
16
+
17
+ 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; }
18
+
19
+ var requestDomain = function requestDomain() {
20
+ if (!window.location.hostname.match(/dev/)) return "";
21
+ return "".concat(window.location.protocol, "//www.tita.gift");
22
+ };
23
+
24
+ var tenantId = window.BSGlobal && window.BSGlobal.tenantInfo.Id || 0;
25
+ var userId = window.BSGlobal && window.BSGlobal.loginUserInfo.Id || 0;
26
+
27
+ function getToken() {
28
+ return localStorage.getItem("DEMOFREE_TOKEN") || "";
29
+ }
30
+
31
+ function clearToken() {
32
+ localStorage.removeItem("DEMOFREE_TOKEN");
33
+ }
34
+
35
+ function setToken(token) {
36
+ localStorage.setItem("DEMOFREE_TOKEN", token);
37
+ }
38
+
39
+ var getJwtToken = function getJwtToken() {
40
+ return _axios["default"].get("".concat(requestDomain(), "/api/v1/").concat(tenantId, "/").concat(userId, "/const/skynetToken")).then(function (res) {
41
+ setToken(JSON.parse(res.data.Data.obj).token);
42
+ return JSON.parse(res.data.Data.obj).token;
43
+ });
44
+ };
45
+
46
+ exports.getJwtToken = getJwtToken;
47
+
48
+ var instance = _axios["default"].create({
49
+ timeout: 10 * 1000
50
+ });
51
+
52
+ var beforeRequest = function beforeRequest(config) {
53
+ var copyConfig = _objectSpread({}, config);
54
+
55
+ copyConfig.headers.authorization = "Bearer ".concat(getToken());
56
+ return copyConfig;
57
+ };
58
+
59
+ var beforeResponse = function beforeResponse(res) {
60
+ var config = res.config;
61
+ config.retry = 3;
62
+ config.retryCount = config.retryCount || 0;
63
+
64
+ if (res.data.code === 401) {
65
+ // 401错误表示未登录授权或者token失效
66
+ clearToken();
67
+
68
+ if (config.retryCount <= config.retry) {
69
+ config.retryCount += 1;
70
+ return getJwtToken().then(function () {
71
+ return instance.request(res.config);
72
+ });
73
+ }
74
+
75
+ return Promise.reject(res);
76
+ }
77
+
78
+ return res.data;
79
+ };
80
+
81
+ var requestError = function requestError(error) {
82
+ return Promise.reject(error);
83
+ };
84
+
85
+ instance.interceptors.request.use(beforeRequest, requestError);
86
+ instance.interceptors.response.use(beforeResponse, function (error) {
87
+ throw new Error(error);
88
+ });
89
+ var _default = instance;
90
+ exports["default"] = _default;
@@ -14,9 +14,9 @@
14
14
 
15
15
  .add-group {
16
16
  display: inline-block;
17
- color: #2879FF;
17
+ color: #2879ff;
18
18
  font-size: 14px;
19
- border: 1px solid #2879FF;
19
+ border: 1px solid #2879ff;
20
20
  background: #fff;
21
21
  border-radius: 2px;
22
22
  margin-top: 8px;
@@ -24,13 +24,13 @@
24
24
  }
25
25
 
26
26
  .add-group:hover {
27
- color: #5C8EFF;
28
- border-color: #5C8EFF;
27
+ color: #5c8eff;
28
+ border-color: #5c8eff;
29
29
  }
30
30
 
31
31
  .empty-tip {
32
32
  font-size: 14px;
33
- margin: 120px auto;
34
- color: #6F7886;
33
+ margin: 10px auto;
34
+ color: #6f7886;
35
35
  text-align: center;
36
36
  }
@@ -20,7 +20,7 @@
20
20
  .persel-selected-panel__result-clear {
21
21
  float: right;
22
22
  cursor: pointer;
23
- color: #2879FF;
23
+ color: #2879ff;
24
24
  }
25
25
 
26
26
  .persel-selected-panel__content {
@@ -32,7 +32,7 @@
32
32
 
33
33
  .persel-selected-panel .empty-tip {
34
34
  font-size: 14px;
35
- margin: 120px auto;
36
- color: #6F7886;
35
+ margin: 10px auto;
36
+ color: #6f7886;
37
37
  text-align: center;
38
38
  }
package/lib/index.js CHANGED
@@ -417,6 +417,12 @@ Object.defineProperty(exports, "StatusTime", {
417
417
  return _statusTime["default"];
418
418
  }
419
419
  });
420
+ Object.defineProperty(exports, "SupersetChart", {
421
+ enumerable: true,
422
+ get: function get() {
423
+ return _supersetCharts["default"];
424
+ }
425
+ });
420
426
  Object.defineProperty(exports, "Switch", {
421
427
  enumerable: true,
422
428
  get: function get() {
@@ -501,12 +507,6 @@ Object.defineProperty(exports, "VersionChangeModal", {
501
507
  return _versionChangeModal["default"];
502
508
  }
503
509
  });
504
- Object.defineProperty(exports, "VideoModal", {
505
- enumerable: true,
506
- get: function get() {
507
- return _videoModal["default"];
508
- }
509
- });
510
510
  Object.defineProperty(exports, "WeeklyReport", {
511
511
  enumerable: true,
512
512
  get: function get() {
@@ -732,6 +732,6 @@ var _uploadPhotoModal = _interopRequireDefault(require("./components/upload-phot
732
732
 
733
733
  var _bookDemo = _interopRequireDefault(require("./components/book-demo"));
734
734
 
735
- var _videoModal = _interopRequireDefault(require("./components/video-modal"));
735
+ var _supersetCharts = _interopRequireDefault(require("./components/superset-charts"));
736
736
 
737
737
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@titaui/pc",
3
- "version": "1.10.17-beta.2",
3
+ "version": "1.10.19",
4
4
  "nameCN": "",
5
5
  "description": "",
6
6
  "main": "lib/index.js",
@@ -1,21 +0,0 @@
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
- <title>全屏</title>
4
- <defs>
5
- <filter color-interpolation-filters="auto" id="filter-1">
6
- <feColorMatrix in="SourceGraphic" type="matrix" values="0 0 0 0 1.000000 0 0 0 0 1.000000 0 0 0 0 1.000000 0 0 0 1.000000 0"></feColorMatrix>
7
- </filter>
8
- </defs>
9
- <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
10
- <g id="点击查看视频" transform="translate(-486.000000, -87.000000)">
11
- <g id="全屏" transform="translate(486.000000, 87.000000)">
12
- <rect id="矩形备份-6" x="0" y="0" width="16" height="16"></rect>
13
- <g id="全屏" filter="url(#filter-1)">
14
- <g>
15
- <path d="M13.3333333,8.8699914 C13.6952827,8.8699914 13.9898621,9.15843612 13.9997439,9.51799775 L14,9.53665807 L14,11.8095238 C14,13.0071927 13.0388065,13.9803629 11.8457473,13.9997065 L11.8095238,14 L9.52485212,14 C9.15666229,14 8.85818546,13.7015232 8.85818546,13.3333333 C8.85818546,12.971384 9.14663018,12.6768046 9.5061918,12.6669228 L9.52485212,12.6666667 L11.8095238,12.6666667 C12.2760501,12.6666667 12.6555245,12.2939535 12.6664257,11.8300485 L12.6666667,11.8095238 L12.6666667,9.53665807 C12.6666667,9.16846824 12.9651435,8.8699914 13.3333333,8.8699914 Z M2.66666667,8.84191565 C3.02861599,8.84191565 3.32319545,9.13036037 3.33307721,9.489922 L3.33333333,9.50858232 L3.33333333,11.8095238 C3.33333333,12.2760501 3.70604651,12.6555245 4.16995152,12.6664257 L4.19047619,12.6666667 L6.47311169,12.6666667 C6.84130152,12.6666667 7.13977836,12.9651435 7.13977836,13.3333333 C7.13977836,13.6952827 6.85133364,13.9898621 6.49177201,13.9997439 L6.47311169,14 L4.19047619,14 C2.99280726,14 2.0196371,13.0388065 2.00029346,11.8457473 L2,11.8095238 L2,9.50858232 C2,9.14039249 2.29847683,8.84191565 2.66666667,8.84191565 Z M6.47638719,2 C6.84457703,2 7.14305386,2.29847683 7.14305386,2.66666667 C7.14305386,3.02861599 6.85460914,3.32319545 6.49504752,3.33307721 L6.47638719,3.33333333 L4.19047619,3.33333333 C3.72394994,3.33333333 3.34447552,3.70604651 3.33357425,4.16995152 L3.33333333,4.19047619 L3.33333333,6.47612057 C3.33333333,6.8443104 3.0348565,7.14278723 2.66666667,7.14278723 C2.30471734,7.14278723 2.01013789,6.85434251 2.00025612,6.49478089 L2,6.47612057 L2,4.19047619 C2,2.99280726 2.96119347,2.0196371 4.15425266,2.00029346 L4.19047619,2 L6.47638719,2 Z M11.8095238,2 C13.0071927,2 13.9803629,2.96119347 13.9997065,4.15425266 L14,4.19047619 L14,6.46713633 C14,6.83532616 13.7015232,7.13380299 13.3333333,7.13380299 C12.971384,7.13380299 12.6768046,6.84535827 12.6669228,6.48579665 L12.6666667,6.46713633 L12.6666667,4.19047619 C12.6666667,3.72394994 12.2939535,3.34447552 11.8300485,3.33357425 L11.8095238,3.33333333 L9.56078908,3.33333333 C9.19259925,3.33333333 8.89412242,3.0348565 8.89412242,2.66666667 C8.89412242,2.30471734 9.18256714,2.01013789 9.54212876,2.00025612 L9.56078908,2 L11.8095238,2 Z" id="形状" fill="#444444" fill-rule="nonzero"></path>
16
- </g>
17
- </g>
18
- </g>
19
- </g>
20
- </g>
21
- </svg>
@@ -1,14 +0,0 @@
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
- <title>编组 8</title>
4
- <g id="线性" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="编组-8">
6
- <rect id="矩形" x="0" y="0" width="16" height="16"></rect>
7
- <g id="编组" fill="#FFFFFF" fill-rule="nonzero">
8
- <g id="静音">
9
- <path d="M3.28766429,4.60754762 L4.25898598,5.57889897 C3.71839644,5.84502621 3.34393885,6.39826821 3.33355489,7.04022003 L3.33333333,8.93245138 C3.33333333,9.83877344 4.05900687,10.5752087 4.95973238,10.5898467 L4.9870801,10.5900688 L5.65310585,10.5900688 C6.07617225,10.5900688 6.48158322,10.7576044 6.7810532,11.0552843 L6.80226255,11.0767679 L8.29926628,12.6219853 C8.48581643,12.7800023 8.72216689,12.8666971 8.96640827,12.8666971 C9.53019785,12.8666971 9.98855748,12.4142413 9.99978907,11.8518276 L10,11.8306862 L10,11.3199333 L11.2241569,12.5440254 C10.9218408,13.5036526 10.0257704,14.2000304 8.96640827,14.2000304 C8.41865484,14.2000304 7.88834453,14.0098771 7.46550858,13.6627582 L7.43747973,13.6393848 L7.38734907,13.5969217 L5.84463197,12.0045187 C5.7979892,11.9563737 5.73507167,11.9276985 5.66852215,11.9238477 L4.9870801,11.9234022 C3.35316681,11.9234022 2.02676463,10.6102728 2.00039998,8.98189173 L2,7.06763176 C2,6.04826718 2.50945141,5.14757661 3.28766429,4.60754762 Z M3.28595479,2.34314575 L13.6568542,12.7140452 C13.9172038,12.9743947 13.9172038,13.3965047 13.6568542,13.6568542 C13.3965047,13.9172038 12.9743947,13.9172038 12.7140452,13.6568542 L2.34314575,3.28595479 C2.08279622,3.02560526 2.08279622,2.60349528 2.34314575,2.34314575 C2.60349528,2.08279622 3.02560526,2.08279622 3.28595479,2.34314575 Z M12.9612676,4.39630795 C13.635995,5.45648994 14,6.6878458 14,7.97134943 C14,9.26666772 13.6292471,10.5087612 12.9428229,11.5752092 C12.9365895,11.5848936 12.9301474,11.5943626 12.9235064,11.6036141 L11.9550266,10.6350444 C12.4183868,9.83322648 12.6666667,8.92137825 12.6666667,7.97134943 C12.6666667,6.94333913 12.3759736,5.95998277 11.8364174,5.11219185 C11.6387315,4.80157303 11.7302817,4.38951067 12.0409006,4.19182479 C12.3515194,3.99413891 12.7635817,4.08568914 12.9612676,4.39630795 Z M10.7752429,2.64125439 C11.1278572,3.05949124 11.3246633,3.58664187 11.3330535,4.13294907 L11.3333333,10.0134 L10,8.68006667 L10,4.16939694 C10,3.9245839 9.91350763,3.68768026 9.75585962,3.50069348 C9.39252467,3.06974081 8.75332847,3.0103815 8.31755677,3.36295511 L8.29926628,3.37809784 L6.80226255,4.92331521 C6.70885932,5.01972666 6.60457885,5.10312547 6.4922413,5.17231722 L5.3966,4.07666667 L5.65310585,4.07668099 C5.72013933,4.07668099 5.78451333,4.05144474 5.8335851,4.0063268 L5.84463197,3.99556447 L7.38734907,2.40316145 L7.43747973,2.36069836 C8.43638105,1.51458065 9.93143682,1.64041351 10.7752429,2.64125439 Z" id="形状结合"></path>
10
- </g>
11
- </g>
12
- </g>
13
- </g>
14
- </svg>
@@ -1,22 +0,0 @@
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
- <title>编组 7</title>
4
- <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="交互说明" transform="translate(-859.000000, -1543.000000)">
6
- <g id="编组-2" transform="translate(87.000000, 1038.000000)">
7
- <g id="编组-10" transform="translate(0.000000, 476.000000)">
8
- <g id="编组-3" transform="translate(33.000000, 29.000000)">
9
- <g id="编组-7" transform="translate(739.000000, 0.000000)">
10
- <rect id="矩形" x="0" y="0" width="16" height="16"></rect>
11
- <g id="编组" fill="#FFFFFF" fill-rule="nonzero">
12
- <g id="声音">
13
- <path d="M7.43747973,2.38934893 L7.38734907,2.43181202 L5.84463197,4.02421504 C5.79440129,4.07606349 5.72529575,4.10533156 5.65310585,4.10533156 L4.9870801,4.10533156 C3.33666263,4.10533156 2,5.44512271 2,7.09628233 L2,8.96110195 C2,10.6122616 3.33666263,11.9520527 4.9870801,11.9520527 L5.65310585,11.9520527 C5.72529575,11.9520527 5.79440129,11.9813208 5.84463197,12.0331692 L7.38734907,13.6255723 L7.43747973,13.6680354 C7.8647838,14.0299826 8.40648254,14.228681 8.96640827,14.228681 C10.2743236,14.228681 11.3333333,13.1671926 11.3333333,11.8593368 L11.3333333,4.19804751 C11.3333333,3.63877514 11.135693,3.09743596 10.7752429,2.66990496 C9.93143682,1.66906408 8.43638105,1.54323122 7.43747973,2.38934893 Z M9.75585962,3.52934405 C9.91350763,3.71633083 10,3.95323447 10,4.19804751 L10,11.8593368 C10,12.4315098 9.53724522,12.8953477 8.96640827,12.8953477 C8.72216689,12.8953477 8.48581643,12.8086529 8.29926628,12.6506359 L6.80226255,11.1054185 C6.5008785,10.7943278 6.08624526,10.6187194 5.65310585,10.6187194 L4.9870801,10.6187194 C4.07374098,10.6187194 3.33333333,9.87657878 3.33333333,8.96110195 L3.33333333,7.09628233 C3.33333333,6.1808055 4.07374098,5.4386649 4.9870801,5.4386649 L5.65310585,5.4386649 C6.08624526,5.4386649 6.5008785,5.26305644 6.80226255,4.95196579 L8.29926628,3.40674842 C8.73526822,3.03743369 9.38740727,3.09232163 9.75585962,3.52934405 Z M12.0409006,4.22047536 C12.3515194,4.02278948 12.7635817,4.11433971 12.9612676,4.42495852 C13.635995,5.48514051 14,6.71649637 14,8 C14,9.2953183 13.6292471,10.5374117 12.9428229,11.6038598 C12.7435468,11.9134608 12.3310204,12.0028968 12.0214194,11.8036207 C11.7118184,11.6043445 11.6223824,11.1918181 11.8216585,10.8822171 C12.3705856,10.0293885 12.6666667,9.03745996 12.6666667,8 C12.6666667,6.97198971 12.3759736,5.98863335 11.8364174,5.14084242 C11.6387315,4.83022361 11.7302817,4.41816124 12.0409006,4.22047536 Z" id="形状结合"></path>
14
- </g>
15
- </g>
16
- </g>
17
- </g>
18
- </g>
19
- </g>
20
- </g>
21
- </g>
22
- </svg>
@@ -1,13 +0,0 @@
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
- <title>编组 8</title>
4
- <g id="线性" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="编组-8">
6
- <rect id="矩形" x="0" y="0" width="16" height="16"></rect>
7
- <g id="播放" fill="#FFFFFF">
8
- <rect id="矩形" x="3.66666667" y="1.66666667" width="2.66666667" height="12.6666667" rx="1.33333333"></rect>
9
- <rect id="矩形备份" x="9.66666667" y="1.66666667" width="2.66666667" height="12.6666667" rx="1.33333333"></rect>
10
- </g>
11
- </g>
12
- </g>
13
- </svg>
@@ -1,18 +0,0 @@
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
- <title>编组 7</title>
4
- <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="点击查看视频" transform="translate(-212.000000, -638.000000)">
6
- <g id="编组-10" transform="translate(179.000000, 560.000000)">
7
- <g id="编组-3" transform="translate(28.000000, 74.000000)">
8
- <g id="编组-7" transform="translate(5.000000, 4.000000)">
9
- <rect id="矩形" x="0" y="0" width="16" height="16"></rect>
10
- <g id="暂停" fill="#FFFFFF">
11
- <path d="M10.2948234,4.73838412 L14.1640013,10.9290687 C14.7260051,11.8282748 14.4526486,13.0128196 13.5534425,13.5748234 C13.2482938,13.7655413 12.8956904,13.8666667 12.5358445,13.8666667 L4.79748881,13.8666667 C3.73710209,13.8666667 2.87748881,13.0070534 2.87748881,11.9466667 C2.87748881,11.5868208 2.97861414,11.2342174 3.16933206,10.9290687 L7.03850992,4.73838412 C7.60051376,3.83917798 8.78505849,3.56582151 9.68426463,4.12782534 C9.93150136,4.2823483 10.1403005,4.49114739 10.2948234,4.73838412 Z" id="三角形" transform="translate(8.666667, 8.000000) rotate(90.000000) translate(-8.666667, -8.000000) "></path>
12
- </g>
13
- </g>
14
- </g>
15
- </g>
16
- </g>
17
- </g>
18
- </svg>
@@ -1,22 +0,0 @@
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
- <title>缩小屏幕</title>
4
- <defs>
5
- <filter color-interpolation-filters="auto" id="filter-1">
6
- <feColorMatrix in="SourceGraphic" type="matrix" values="0 0 0 0 1.000000 0 0 0 0 1.000000 0 0 0 0 1.000000 0 0 0 1.000000 0"></feColorMatrix>
7
- </filter>
8
- </defs>
9
- <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
10
- <g id="点击查看视频" transform="translate(-504.000000, -87.000000)">
11
- <g id="缩小屏幕" transform="translate(504.000000, 87.000000)">
12
- <rect id="矩形备份-8" x="0" y="0" width="16" height="16"></rect>
13
- <g id="缩小屏幕" filter="url(#filter-1)">
14
- <g>
15
- <path d="M2.66666667,8.84191565 C3.02861599,8.84191565 3.32319545,9.13036037 3.33307721,9.489922 L3.33333333,11.8095238 C3.33333333,12.2760501 3.70604651,12.6555245 4.16995152,12.6664257 L6.47311169,12.6666667 C6.84130152,12.6666667 7.13977836,12.9651435 7.13977836,13.3333333 C7.13977836,13.6952827 6.85133364,13.9898621 6.49177201,13.9997439 L4.19047619,14 C2.99280726,14 2.0196371,13.0388065 2.00029346,11.8457473 L2,9.50858232 C2,9.14039249 2.29847683,8.84191565 2.66666667,8.84191565 Z M13.3333333,8.8699914 C13.7015232,8.8699914 14,9.16846824 14,9.53665807 C14,9.8986074 13.7115553,10.1931869 13.3519937,10.2030686 L11.0486616,10.2033247 C10.5821354,10.2033247 10.202661,10.5760379 10.1917597,11.0399429 L10.1915188,13.3333333 C10.1915188,13.7015232 9.89304196,14 9.52485212,14 C9.1629028,14 8.86832334,13.7115553 8.85844158,13.3519937 L8.85818546,11.0604676 C8.85818546,9.86279866 9.81937893,8.8896285 11.0124381,8.87028486 L11.0486616,8.8699914 L13.3333333,8.8699914 Z M6.47638719,2 C6.83833652,2 7.13291597,2.28844472 7.14279774,2.64800634 L7.14305386,2.66666667 L7.14305386,4.95231104 C7.14305386,6.14997997 6.18186038,7.12315013 4.9888012,7.14249377 L2.66666667,7.14278723 C2.29847683,7.14278723 2,6.8443104 2,6.47612057 C2,6.11417124 2.28844472,5.81959178 2.64800634,5.80971002 L4.95257767,5.8094539 C5.41910392,5.8094539 5.79857834,5.43674073 5.80947961,4.97283571 L5.80972053,2.66666667 C5.80972053,2.29847683 6.10819736,2 6.47638719,2 Z M11.8095238,2 C13.0071927,2 13.9803629,2.96119347 13.9997065,4.15425266 L14,6.46713633 C14,6.83532616 13.7015232,7.13380299 13.3333333,7.13380299 C12.971384,7.13380299 12.6768046,6.84535827 12.6669228,6.48579665 L12.6666667,4.19047619 C12.6666667,3.72394994 12.2939535,3.34447552 11.8300485,3.33357425 L9.56078908,3.33333333 C9.19259925,3.33333333 8.89412242,3.0348565 8.89412242,2.66666667 C8.89412242,2.30471734 9.18256714,2.01013789 9.54212876,2.00025612 L11.8095238,2 Z" id="形状结合" fill="#444444" fill-rule="nonzero"></path>
16
- <path d="M11.265279,10.3224699 L13.8108634,12.8680544 C14.0712129,13.1284039 14.0712129,13.5505139 13.8108634,13.8108634 C13.5505139,14.0712129 13.1284039,14.0712129 12.8680544,13.8108634 L10.3224699,11.265279 C10.0621204,11.0049295 10.0621204,10.5828195 10.3224699,10.3224699 C10.5828195,10.0621204 11.0049295,10.0621204 11.265279,10.3224699 Z M3.13194565,2.18913661 L5.67753006,4.73472102 C5.93787959,4.99507055 5.93787959,5.41718053 5.67753006,5.67753006 C5.41718053,5.93787959 4.99507055,5.93787959 4.73472102,5.67753006 L2.18913661,3.13194565 C1.92878708,2.87159612 1.92878708,2.44948613 2.18913661,2.18913661 C2.44948613,1.92878708 2.87159612,1.92878708 3.13194565,2.18913661 Z" id="形状" fill="#444444"></path>
17
- </g>
18
- </g>
19
- </g>
20
- </g>
21
- </g>
22
- </svg>