@zgfe/business-lib 1.0.24 → 1.0.25-insight.10
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/es/addToPanel/index.js +33 -16
- package/es/assets/iconfont/demo_index.html +440 -3
- package/es/assets/iconfont/iconfont.css +79 -3
- package/es/assets/iconfont/iconfont.js +14 -14
- package/es/assets/iconfont/iconfont.json +133 -0
- package/es/assets/iconfont/iconfont.ttf +0 -0
- package/es/assets/iconfont/iconfont.woff +0 -0
- package/es/assets/iconfont/iconfont.woff2 +0 -0
- package/es/assets/styles/resetAntd.less +11 -4
- package/es/attrConditions/group.js +4 -4
- package/es/attrConditions/types.d.ts +1 -0
- package/es/attributeSelector/styles/index.less +31 -2
- package/es/attributeSelector/util.js +9 -1
- package/es/chart/demo/bar.js +3 -4
- package/es/chart/demo/data/data.d.ts +7 -0
- package/es/chart/demo/data/data.js +10 -0
- package/es/chart/demo/data/data3.d.ts +0 -2
- package/es/chart/demo/data/data3.js +15 -574
- package/es/chart/demo/map.js +1 -2
- package/es/chart/index.js +2 -2
- package/es/chart/util/chartOptionConfig.d.ts +1 -54
- package/es/chart/util/chartOptionConfig.js +13 -7
- package/es/chart/util/formatData.js +2 -1
- package/es/chart/util/formatOption.js +7 -23
- package/es/chart/util/mapUtil.d.ts +2 -2
- package/es/chart/util/mapUtil.js +59 -75
- package/es/eventSelector/index.js +2 -2
- package/es/eventSelector/listPanel.js +20 -5
- package/es/eventSelector/types.d.ts +1 -1
- package/es/layout/analysisLayout/demo/index.js +5 -1
- package/es/layout/analysisLayout/index.js +5 -5
- package/es/layout/analysisLayout/index.less +0 -6
- package/es/select/handle.js +20 -7
- package/es/select/index.js +11 -6
- package/es/select/styles/handle.less +21 -14
- package/es/select/types.d.ts +4 -0
- package/es/targetConditionGroup/index.js +3 -1
- package/es/targetConditionGroup/types.d.ts +1 -0
- package/es/targetSelector/index.js +13 -0
- package/es/targetSelector/styles/index.less +2 -0
- package/es/utils/ajax.js +5 -1
- package/package.json +2 -2
package/es/addToPanel/index.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
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; }
|
|
2
|
+
|
|
3
|
+
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; }
|
|
4
|
+
|
|
5
|
+
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; }
|
|
6
|
+
|
|
1
7
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
2
8
|
|
|
3
9
|
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."); }
|
|
@@ -10,7 +16,7 @@ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Sy
|
|
|
10
16
|
|
|
11
17
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
12
18
|
|
|
13
|
-
import { Button, Form, Input, notification
|
|
19
|
+
import { Button, Form, Input, notification } from 'antd';
|
|
14
20
|
import React, { useContext, useEffect, useRef, useState } from 'react';
|
|
15
21
|
import BizDialog from '../dialog';
|
|
16
22
|
import BizSelect from '../select';
|
|
@@ -43,15 +49,10 @@ var BizAddToPanel = function BizAddToPanel(props) {
|
|
|
43
49
|
formData = _useState6[0],
|
|
44
50
|
setFormData = _useState6[1];
|
|
45
51
|
|
|
46
|
-
var _useState7 = useState(
|
|
52
|
+
var _useState7 = useState(false),
|
|
47
53
|
_useState8 = _slicedToArray(_useState7, 2),
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
var _useState9 = useState(false),
|
|
52
|
-
_useState10 = _slicedToArray(_useState9, 2),
|
|
53
|
-
loading = _useState10[0],
|
|
54
|
-
setLoading = _useState10[1];
|
|
54
|
+
loading = _useState8[0],
|
|
55
|
+
setLoading = _useState8[1];
|
|
55
56
|
|
|
56
57
|
var _useContext = useContext(BizGlobalDataContext),
|
|
57
58
|
currentApp = _useContext.currentApp,
|
|
@@ -79,14 +80,14 @@ var BizAddToPanel = function BizAddToPanel(props) {
|
|
|
79
80
|
notification.error({
|
|
80
81
|
message: '获取看板列表失败'
|
|
81
82
|
});
|
|
82
|
-
setReady(false);
|
|
83
83
|
return;
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
setGroupList(res.panels);
|
|
87
|
-
setReady(false);
|
|
88
87
|
}).catch(function () {
|
|
89
|
-
|
|
88
|
+
notification.error({
|
|
89
|
+
message: '获取看板列表失败'
|
|
90
|
+
});
|
|
90
91
|
});
|
|
91
92
|
}
|
|
92
93
|
|
|
@@ -173,7 +174,24 @@ var BizAddToPanel = function BizAddToPanel(props) {
|
|
|
173
174
|
}
|
|
174
175
|
}, form.panel.name || ((_result$panel2 = result.panel) === null || _result$panel2 === void 0 ? void 0 : _result$panel2.name)), "\u6210\u529F")
|
|
175
176
|
});
|
|
176
|
-
|
|
177
|
+
|
|
178
|
+
if (props.onOk) {
|
|
179
|
+
var responseData = data;
|
|
180
|
+
|
|
181
|
+
if (props.type !== 'edit') {
|
|
182
|
+
var _result$panel3;
|
|
183
|
+
|
|
184
|
+
responseData = _objectSpread({
|
|
185
|
+
panelId: ((_result$panel3 = result.panel) === null || _result$panel3 === void 0 ? void 0 : _result$panel3.id) || form.panel.id
|
|
186
|
+
}, result.panel_element);
|
|
187
|
+
|
|
188
|
+
if (form.panel.id === 0) {
|
|
189
|
+
responseData.panel = _objectSpread({}, result.panel);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
props.onOk(responseData);
|
|
194
|
+
}
|
|
177
195
|
} else if (result.flag === -101) {
|
|
178
196
|
notification.error({
|
|
179
197
|
message: '添加失败',
|
|
@@ -197,8 +215,6 @@ var BizAddToPanel = function BizAddToPanel(props) {
|
|
|
197
215
|
onCancel: props.onCancel,
|
|
198
216
|
onOk: onAdd,
|
|
199
217
|
confirmLoading: loading
|
|
200
|
-
}, /*#__PURE__*/React.createElement(Skeleton, {
|
|
201
|
-
loading: ready
|
|
202
218
|
}, /*#__PURE__*/React.createElement(Form, {
|
|
203
219
|
ref: refForm,
|
|
204
220
|
onFinish: onSubmit,
|
|
@@ -245,6 +261,7 @@ var BizAddToPanel = function BizAddToPanel(props) {
|
|
|
245
261
|
}]
|
|
246
262
|
}, /*#__PURE__*/React.createElement(Input, {
|
|
247
263
|
placeholder: "\u6307\u6807\u540D\u79F0",
|
|
264
|
+
autoComplete: "off",
|
|
248
265
|
allowClear: {
|
|
249
266
|
clearIcon: /*#__PURE__*/React.createElement(IconFont, {
|
|
250
267
|
type: 'qingchu'
|
|
@@ -275,7 +292,7 @@ var BizAddToPanel = function BizAddToPanel(props) {
|
|
|
275
292
|
}, /*#__PURE__*/React.createElement(RadioGroup, {
|
|
276
293
|
options: props.showOptions
|
|
277
294
|
})) : null;
|
|
278
|
-
})))
|
|
295
|
+
})));
|
|
279
296
|
};
|
|
280
297
|
|
|
281
298
|
BizAddToPanel.defaultProps = {
|
|
@@ -54,6 +54,120 @@
|
|
|
54
54
|
<div class="content unicode" style="display: block;">
|
|
55
55
|
<ul class="icon_lists dib-box">
|
|
56
56
|
|
|
57
|
+
<li class="dib">
|
|
58
|
+
<span class="icon bsicon"></span>
|
|
59
|
+
<div class="name">删除桶</div>
|
|
60
|
+
<div class="code-name">&#xe6b1;</div>
|
|
61
|
+
</li>
|
|
62
|
+
|
|
63
|
+
<li class="dib">
|
|
64
|
+
<span class="icon bsicon"></span>
|
|
65
|
+
<div class="name">删除</div>
|
|
66
|
+
<div class="code-name">&#xe6b2;</div>
|
|
67
|
+
</li>
|
|
68
|
+
|
|
69
|
+
<li class="dib">
|
|
70
|
+
<span class="icon bsicon"></span>
|
|
71
|
+
<div class="name">重新加载</div>
|
|
72
|
+
<div class="code-name">&#xe6b3;</div>
|
|
73
|
+
</li>
|
|
74
|
+
|
|
75
|
+
<li class="dib">
|
|
76
|
+
<span class="icon bsicon"></span>
|
|
77
|
+
<div class="name">调整大小-左右</div>
|
|
78
|
+
<div class="code-name">&#xe6b4;</div>
|
|
79
|
+
</li>
|
|
80
|
+
|
|
81
|
+
<li class="dib">
|
|
82
|
+
<span class="icon bsicon"></span>
|
|
83
|
+
<div class="name">调整大小-上下</div>
|
|
84
|
+
<div class="code-name">&#xe6b5;</div>
|
|
85
|
+
</li>
|
|
86
|
+
|
|
87
|
+
<li class="dib">
|
|
88
|
+
<span class="icon bsicon"></span>
|
|
89
|
+
<div class="name">拖拽</div>
|
|
90
|
+
<div class="code-name">&#xe6b6;</div>
|
|
91
|
+
</li>
|
|
92
|
+
|
|
93
|
+
<li class="dib">
|
|
94
|
+
<span class="icon bsicon"></span>
|
|
95
|
+
<div class="name">更多操作</div>
|
|
96
|
+
<div class="code-name">&#xe6b0;</div>
|
|
97
|
+
</li>
|
|
98
|
+
|
|
99
|
+
<li class="dib">
|
|
100
|
+
<span class="icon bsicon"></span>
|
|
101
|
+
<div class="name">数据集业务</div>
|
|
102
|
+
<div class="code-name">&#xe6ad;</div>
|
|
103
|
+
</li>
|
|
104
|
+
|
|
105
|
+
<li class="dib">
|
|
106
|
+
<span class="icon bsicon"></span>
|
|
107
|
+
<div class="name">重命名</div>
|
|
108
|
+
<div class="code-name">&#xe6ae;</div>
|
|
109
|
+
</li>
|
|
110
|
+
|
|
111
|
+
<li class="dib">
|
|
112
|
+
<span class="icon bsicon"></span>
|
|
113
|
+
<div class="name">编辑</div>
|
|
114
|
+
<div class="code-name">&#xe6af;</div>
|
|
115
|
+
</li>
|
|
116
|
+
|
|
117
|
+
<li class="dib">
|
|
118
|
+
<span class="icon bsicon"></span>
|
|
119
|
+
<div class="name">输出</div>
|
|
120
|
+
<div class="code-name">&#xe6ac;</div>
|
|
121
|
+
</li>
|
|
122
|
+
|
|
123
|
+
<li class="dib">
|
|
124
|
+
<span class="icon bsicon"></span>
|
|
125
|
+
<div class="name">数据拆分</div>
|
|
126
|
+
<div class="code-name">&#xe6a9;</div>
|
|
127
|
+
</li>
|
|
128
|
+
|
|
129
|
+
<li class="dib">
|
|
130
|
+
<span class="icon bsicon"></span>
|
|
131
|
+
<div class="name">聚合</div>
|
|
132
|
+
<div class="code-name">&#xe6ab;</div>
|
|
133
|
+
</li>
|
|
134
|
+
|
|
135
|
+
<li class="dib">
|
|
136
|
+
<span class="icon bsicon"></span>
|
|
137
|
+
<div class="name">列转列</div>
|
|
138
|
+
<div class="code-name">&#xe6a8;</div>
|
|
139
|
+
</li>
|
|
140
|
+
|
|
141
|
+
<li class="dib">
|
|
142
|
+
<span class="icon bsicon"></span>
|
|
143
|
+
<div class="name">行转列</div>
|
|
144
|
+
<div class="code-name">&#xe6a7;</div>
|
|
145
|
+
</li>
|
|
146
|
+
|
|
147
|
+
<li class="dib">
|
|
148
|
+
<span class="icon bsicon"></span>
|
|
149
|
+
<div class="name">字段设置</div>
|
|
150
|
+
<div class="code-name">&#xe6a6;</div>
|
|
151
|
+
</li>
|
|
152
|
+
|
|
153
|
+
<li class="dib">
|
|
154
|
+
<span class="icon bsicon"></span>
|
|
155
|
+
<div class="name">连接</div>
|
|
156
|
+
<div class="code-name">&#xe6a4;</div>
|
|
157
|
+
</li>
|
|
158
|
+
|
|
159
|
+
<li class="dib">
|
|
160
|
+
<span class="icon bsicon"></span>
|
|
161
|
+
<div class="name">合并</div>
|
|
162
|
+
<div class="code-name">&#xe6a5;</div>
|
|
163
|
+
</li>
|
|
164
|
+
|
|
165
|
+
<li class="dib">
|
|
166
|
+
<span class="icon bsicon"></span>
|
|
167
|
+
<div class="name">全屏展示</div>
|
|
168
|
+
<div class="code-name">&#xe6a3;</div>
|
|
169
|
+
</li>
|
|
170
|
+
|
|
57
171
|
<li class="dib">
|
|
58
172
|
<span class="icon bsicon"></span>
|
|
59
173
|
<div class="name">收藏</div>
|
|
@@ -306,9 +420,9 @@
|
|
|
306
420
|
<pre><code class="language-css"
|
|
307
421
|
>@font-face {
|
|
308
422
|
font-family: 'bsicon';
|
|
309
|
-
src: url('iconfont.woff2?t=
|
|
310
|
-
url('iconfont.woff?t=
|
|
311
|
-
url('iconfont.ttf?t=
|
|
423
|
+
src: url('iconfont.woff2?t=1662017629485') format('woff2'),
|
|
424
|
+
url('iconfont.woff?t=1662017629485') format('woff'),
|
|
425
|
+
url('iconfont.ttf?t=1662017629485') format('truetype');
|
|
312
426
|
}
|
|
313
427
|
</code></pre>
|
|
314
428
|
<h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
|
|
@@ -334,6 +448,177 @@
|
|
|
334
448
|
<div class="content font-class">
|
|
335
449
|
<ul class="icon_lists dib-box">
|
|
336
450
|
|
|
451
|
+
<li class="dib">
|
|
452
|
+
<span class="icon bsicon shanchutong"></span>
|
|
453
|
+
<div class="name">
|
|
454
|
+
删除桶
|
|
455
|
+
</div>
|
|
456
|
+
<div class="code-name">.shanchutong
|
|
457
|
+
</div>
|
|
458
|
+
</li>
|
|
459
|
+
|
|
460
|
+
<li class="dib">
|
|
461
|
+
<span class="icon bsicon shanchu2"></span>
|
|
462
|
+
<div class="name">
|
|
463
|
+
删除
|
|
464
|
+
</div>
|
|
465
|
+
<div class="code-name">.shanchu2
|
|
466
|
+
</div>
|
|
467
|
+
</li>
|
|
468
|
+
|
|
469
|
+
<li class="dib">
|
|
470
|
+
<span class="icon bsicon zhongxinjiazai"></span>
|
|
471
|
+
<div class="name">
|
|
472
|
+
重新加载
|
|
473
|
+
</div>
|
|
474
|
+
<div class="code-name">.zhongxinjiazai
|
|
475
|
+
</div>
|
|
476
|
+
</li>
|
|
477
|
+
|
|
478
|
+
<li class="dib">
|
|
479
|
+
<span class="icon bsicon tiaozhengdaxiao-zuoyou"></span>
|
|
480
|
+
<div class="name">
|
|
481
|
+
调整大小-左右
|
|
482
|
+
</div>
|
|
483
|
+
<div class="code-name">.tiaozhengdaxiao-zuoyou
|
|
484
|
+
</div>
|
|
485
|
+
</li>
|
|
486
|
+
|
|
487
|
+
<li class="dib">
|
|
488
|
+
<span class="icon bsicon tiaozhengdaxiao-shangxia"></span>
|
|
489
|
+
<div class="name">
|
|
490
|
+
调整大小-上下
|
|
491
|
+
</div>
|
|
492
|
+
<div class="code-name">.tiaozhengdaxiao-shangxia
|
|
493
|
+
</div>
|
|
494
|
+
</li>
|
|
495
|
+
|
|
496
|
+
<li class="dib">
|
|
497
|
+
<span class="icon bsicon tuozhuai"></span>
|
|
498
|
+
<div class="name">
|
|
499
|
+
拖拽
|
|
500
|
+
</div>
|
|
501
|
+
<div class="code-name">.tuozhuai
|
|
502
|
+
</div>
|
|
503
|
+
</li>
|
|
504
|
+
|
|
505
|
+
<li class="dib">
|
|
506
|
+
<span class="icon bsicon gengduocaozuo2"></span>
|
|
507
|
+
<div class="name">
|
|
508
|
+
更多操作
|
|
509
|
+
</div>
|
|
510
|
+
<div class="code-name">.gengduocaozuo2
|
|
511
|
+
</div>
|
|
512
|
+
</li>
|
|
513
|
+
|
|
514
|
+
<li class="dib">
|
|
515
|
+
<span class="icon bsicon shujujiyewu"></span>
|
|
516
|
+
<div class="name">
|
|
517
|
+
数据集业务
|
|
518
|
+
</div>
|
|
519
|
+
<div class="code-name">.shujujiyewu
|
|
520
|
+
</div>
|
|
521
|
+
</li>
|
|
522
|
+
|
|
523
|
+
<li class="dib">
|
|
524
|
+
<span class="icon bsicon zhongmingming"></span>
|
|
525
|
+
<div class="name">
|
|
526
|
+
重命名
|
|
527
|
+
</div>
|
|
528
|
+
<div class="code-name">.zhongmingming
|
|
529
|
+
</div>
|
|
530
|
+
</li>
|
|
531
|
+
|
|
532
|
+
<li class="dib">
|
|
533
|
+
<span class="icon bsicon bianji1"></span>
|
|
534
|
+
<div class="name">
|
|
535
|
+
编辑
|
|
536
|
+
</div>
|
|
537
|
+
<div class="code-name">.bianji1
|
|
538
|
+
</div>
|
|
539
|
+
</li>
|
|
540
|
+
|
|
541
|
+
<li class="dib">
|
|
542
|
+
<span class="icon bsicon shuchu"></span>
|
|
543
|
+
<div class="name">
|
|
544
|
+
输出
|
|
545
|
+
</div>
|
|
546
|
+
<div class="code-name">.shuchu
|
|
547
|
+
</div>
|
|
548
|
+
</li>
|
|
549
|
+
|
|
550
|
+
<li class="dib">
|
|
551
|
+
<span class="icon bsicon shujuchaifen"></span>
|
|
552
|
+
<div class="name">
|
|
553
|
+
数据拆分
|
|
554
|
+
</div>
|
|
555
|
+
<div class="code-name">.shujuchaifen
|
|
556
|
+
</div>
|
|
557
|
+
</li>
|
|
558
|
+
|
|
559
|
+
<li class="dib">
|
|
560
|
+
<span class="icon bsicon juhe"></span>
|
|
561
|
+
<div class="name">
|
|
562
|
+
聚合
|
|
563
|
+
</div>
|
|
564
|
+
<div class="code-name">.juhe
|
|
565
|
+
</div>
|
|
566
|
+
</li>
|
|
567
|
+
|
|
568
|
+
<li class="dib">
|
|
569
|
+
<span class="icon bsicon liezhuanlie"></span>
|
|
570
|
+
<div class="name">
|
|
571
|
+
列转列
|
|
572
|
+
</div>
|
|
573
|
+
<div class="code-name">.liezhuanlie
|
|
574
|
+
</div>
|
|
575
|
+
</li>
|
|
576
|
+
|
|
577
|
+
<li class="dib">
|
|
578
|
+
<span class="icon bsicon hangzhuanlie"></span>
|
|
579
|
+
<div class="name">
|
|
580
|
+
行转列
|
|
581
|
+
</div>
|
|
582
|
+
<div class="code-name">.hangzhuanlie
|
|
583
|
+
</div>
|
|
584
|
+
</li>
|
|
585
|
+
|
|
586
|
+
<li class="dib">
|
|
587
|
+
<span class="icon bsicon ziduanshezhi"></span>
|
|
588
|
+
<div class="name">
|
|
589
|
+
字段设置
|
|
590
|
+
</div>
|
|
591
|
+
<div class="code-name">.ziduanshezhi
|
|
592
|
+
</div>
|
|
593
|
+
</li>
|
|
594
|
+
|
|
595
|
+
<li class="dib">
|
|
596
|
+
<span class="icon bsicon lianjie"></span>
|
|
597
|
+
<div class="name">
|
|
598
|
+
连接
|
|
599
|
+
</div>
|
|
600
|
+
<div class="code-name">.lianjie
|
|
601
|
+
</div>
|
|
602
|
+
</li>
|
|
603
|
+
|
|
604
|
+
<li class="dib">
|
|
605
|
+
<span class="icon bsicon hebing"></span>
|
|
606
|
+
<div class="name">
|
|
607
|
+
合并
|
|
608
|
+
</div>
|
|
609
|
+
<div class="code-name">.hebing
|
|
610
|
+
</div>
|
|
611
|
+
</li>
|
|
612
|
+
|
|
613
|
+
<li class="dib">
|
|
614
|
+
<span class="icon bsicon quanpingzhanshi"></span>
|
|
615
|
+
<div class="name">
|
|
616
|
+
全屏展示
|
|
617
|
+
</div>
|
|
618
|
+
<div class="code-name">.quanpingzhanshi
|
|
619
|
+
</div>
|
|
620
|
+
</li>
|
|
621
|
+
|
|
337
622
|
<li class="dib">
|
|
338
623
|
<span class="icon bsicon shoucang"></span>
|
|
339
624
|
<div class="name">
|
|
@@ -712,6 +997,158 @@
|
|
|
712
997
|
<div class="content symbol">
|
|
713
998
|
<ul class="icon_lists dib-box">
|
|
714
999
|
|
|
1000
|
+
<li class="dib">
|
|
1001
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1002
|
+
<use xlink:href="#shanchutong"></use>
|
|
1003
|
+
</svg>
|
|
1004
|
+
<div class="name">删除桶</div>
|
|
1005
|
+
<div class="code-name">#shanchutong</div>
|
|
1006
|
+
</li>
|
|
1007
|
+
|
|
1008
|
+
<li class="dib">
|
|
1009
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1010
|
+
<use xlink:href="#shanchu2"></use>
|
|
1011
|
+
</svg>
|
|
1012
|
+
<div class="name">删除</div>
|
|
1013
|
+
<div class="code-name">#shanchu2</div>
|
|
1014
|
+
</li>
|
|
1015
|
+
|
|
1016
|
+
<li class="dib">
|
|
1017
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1018
|
+
<use xlink:href="#zhongxinjiazai"></use>
|
|
1019
|
+
</svg>
|
|
1020
|
+
<div class="name">重新加载</div>
|
|
1021
|
+
<div class="code-name">#zhongxinjiazai</div>
|
|
1022
|
+
</li>
|
|
1023
|
+
|
|
1024
|
+
<li class="dib">
|
|
1025
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1026
|
+
<use xlink:href="#tiaozhengdaxiao-zuoyou"></use>
|
|
1027
|
+
</svg>
|
|
1028
|
+
<div class="name">调整大小-左右</div>
|
|
1029
|
+
<div class="code-name">#tiaozhengdaxiao-zuoyou</div>
|
|
1030
|
+
</li>
|
|
1031
|
+
|
|
1032
|
+
<li class="dib">
|
|
1033
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1034
|
+
<use xlink:href="#tiaozhengdaxiao-shangxia"></use>
|
|
1035
|
+
</svg>
|
|
1036
|
+
<div class="name">调整大小-上下</div>
|
|
1037
|
+
<div class="code-name">#tiaozhengdaxiao-shangxia</div>
|
|
1038
|
+
</li>
|
|
1039
|
+
|
|
1040
|
+
<li class="dib">
|
|
1041
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1042
|
+
<use xlink:href="#tuozhuai"></use>
|
|
1043
|
+
</svg>
|
|
1044
|
+
<div class="name">拖拽</div>
|
|
1045
|
+
<div class="code-name">#tuozhuai</div>
|
|
1046
|
+
</li>
|
|
1047
|
+
|
|
1048
|
+
<li class="dib">
|
|
1049
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1050
|
+
<use xlink:href="#gengduocaozuo2"></use>
|
|
1051
|
+
</svg>
|
|
1052
|
+
<div class="name">更多操作</div>
|
|
1053
|
+
<div class="code-name">#gengduocaozuo2</div>
|
|
1054
|
+
</li>
|
|
1055
|
+
|
|
1056
|
+
<li class="dib">
|
|
1057
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1058
|
+
<use xlink:href="#shujujiyewu"></use>
|
|
1059
|
+
</svg>
|
|
1060
|
+
<div class="name">数据集业务</div>
|
|
1061
|
+
<div class="code-name">#shujujiyewu</div>
|
|
1062
|
+
</li>
|
|
1063
|
+
|
|
1064
|
+
<li class="dib">
|
|
1065
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1066
|
+
<use xlink:href="#zhongmingming"></use>
|
|
1067
|
+
</svg>
|
|
1068
|
+
<div class="name">重命名</div>
|
|
1069
|
+
<div class="code-name">#zhongmingming</div>
|
|
1070
|
+
</li>
|
|
1071
|
+
|
|
1072
|
+
<li class="dib">
|
|
1073
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1074
|
+
<use xlink:href="#bianji1"></use>
|
|
1075
|
+
</svg>
|
|
1076
|
+
<div class="name">编辑</div>
|
|
1077
|
+
<div class="code-name">#bianji1</div>
|
|
1078
|
+
</li>
|
|
1079
|
+
|
|
1080
|
+
<li class="dib">
|
|
1081
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1082
|
+
<use xlink:href="#shuchu"></use>
|
|
1083
|
+
</svg>
|
|
1084
|
+
<div class="name">输出</div>
|
|
1085
|
+
<div class="code-name">#shuchu</div>
|
|
1086
|
+
</li>
|
|
1087
|
+
|
|
1088
|
+
<li class="dib">
|
|
1089
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1090
|
+
<use xlink:href="#shujuchaifen"></use>
|
|
1091
|
+
</svg>
|
|
1092
|
+
<div class="name">数据拆分</div>
|
|
1093
|
+
<div class="code-name">#shujuchaifen</div>
|
|
1094
|
+
</li>
|
|
1095
|
+
|
|
1096
|
+
<li class="dib">
|
|
1097
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1098
|
+
<use xlink:href="#juhe"></use>
|
|
1099
|
+
</svg>
|
|
1100
|
+
<div class="name">聚合</div>
|
|
1101
|
+
<div class="code-name">#juhe</div>
|
|
1102
|
+
</li>
|
|
1103
|
+
|
|
1104
|
+
<li class="dib">
|
|
1105
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1106
|
+
<use xlink:href="#liezhuanlie"></use>
|
|
1107
|
+
</svg>
|
|
1108
|
+
<div class="name">列转列</div>
|
|
1109
|
+
<div class="code-name">#liezhuanlie</div>
|
|
1110
|
+
</li>
|
|
1111
|
+
|
|
1112
|
+
<li class="dib">
|
|
1113
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1114
|
+
<use xlink:href="#hangzhuanlie"></use>
|
|
1115
|
+
</svg>
|
|
1116
|
+
<div class="name">行转列</div>
|
|
1117
|
+
<div class="code-name">#hangzhuanlie</div>
|
|
1118
|
+
</li>
|
|
1119
|
+
|
|
1120
|
+
<li class="dib">
|
|
1121
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1122
|
+
<use xlink:href="#ziduanshezhi"></use>
|
|
1123
|
+
</svg>
|
|
1124
|
+
<div class="name">字段设置</div>
|
|
1125
|
+
<div class="code-name">#ziduanshezhi</div>
|
|
1126
|
+
</li>
|
|
1127
|
+
|
|
1128
|
+
<li class="dib">
|
|
1129
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1130
|
+
<use xlink:href="#lianjie"></use>
|
|
1131
|
+
</svg>
|
|
1132
|
+
<div class="name">连接</div>
|
|
1133
|
+
<div class="code-name">#lianjie</div>
|
|
1134
|
+
</li>
|
|
1135
|
+
|
|
1136
|
+
<li class="dib">
|
|
1137
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1138
|
+
<use xlink:href="#hebing"></use>
|
|
1139
|
+
</svg>
|
|
1140
|
+
<div class="name">合并</div>
|
|
1141
|
+
<div class="code-name">#hebing</div>
|
|
1142
|
+
</li>
|
|
1143
|
+
|
|
1144
|
+
<li class="dib">
|
|
1145
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1146
|
+
<use xlink:href="#quanpingzhanshi"></use>
|
|
1147
|
+
</svg>
|
|
1148
|
+
<div class="name">全屏展示</div>
|
|
1149
|
+
<div class="code-name">#quanpingzhanshi</div>
|
|
1150
|
+
</li>
|
|
1151
|
+
|
|
715
1152
|
<li class="dib">
|
|
716
1153
|
<svg class="icon svg-icon" aria-hidden="true">
|
|
717
1154
|
<use xlink:href="#shoucang"></use>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "bsicon"; /* Project id 2545884 */
|
|
3
|
-
src: url('iconfont.woff2?t=
|
|
4
|
-
url('iconfont.woff?t=
|
|
5
|
-
url('iconfont.ttf?t=
|
|
3
|
+
src: url('iconfont.woff2?t=1662017629485') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1662017629485') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1662017629485') format('truetype');
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.bsicon {
|
|
@@ -13,6 +13,82 @@
|
|
|
13
13
|
-moz-osx-font-smoothing: grayscale;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
.shanchutong:before {
|
|
17
|
+
content: "\e6b1";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.shanchu2:before {
|
|
21
|
+
content: "\e6b2";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.zhongxinjiazai:before {
|
|
25
|
+
content: "\e6b3";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.tiaozhengdaxiao-zuoyou:before {
|
|
29
|
+
content: "\e6b4";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.tiaozhengdaxiao-shangxia:before {
|
|
33
|
+
content: "\e6b5";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.tuozhuai:before {
|
|
37
|
+
content: "\e6b6";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.gengduocaozuo2:before {
|
|
41
|
+
content: "\e6b0";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.shujujiyewu:before {
|
|
45
|
+
content: "\e6ad";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.zhongmingming:before {
|
|
49
|
+
content: "\e6ae";
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.bianji1:before {
|
|
53
|
+
content: "\e6af";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.shuchu:before {
|
|
57
|
+
content: "\e6ac";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.shujuchaifen:before {
|
|
61
|
+
content: "\e6a9";
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.juhe:before {
|
|
65
|
+
content: "\e6ab";
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.liezhuanlie:before {
|
|
69
|
+
content: "\e6a8";
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.hangzhuanlie:before {
|
|
73
|
+
content: "\e6a7";
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.ziduanshezhi:before {
|
|
77
|
+
content: "\e6a6";
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.lianjie:before {
|
|
81
|
+
content: "\e6a4";
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.hebing:before {
|
|
85
|
+
content: "\e6a5";
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.quanpingzhanshi:before {
|
|
89
|
+
content: "\e6a3";
|
|
90
|
+
}
|
|
91
|
+
|
|
16
92
|
.shoucang:before {
|
|
17
93
|
content: "\e6a2";
|
|
18
94
|
}
|