@zgfe/business-lib 1.1.51 → 1.1.52
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/components/styleList.js +1 -1
- package/es/addToPanel/index.js +4 -0
- package/es/addToPanel/styles/style.less +6 -0
- package/es/addToScene/index.js +6 -14
- package/es/addToScene/types.d.ts +1 -1
- package/es/assets/iconfont/demo_index.html +233 -49
- package/es/assets/iconfont/iconfont.css +43 -11
- package/es/assets/iconfont/iconfont.js +7 -7
- package/es/assets/iconfont/iconfont.json +70 -14
- 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/attrCondition/demo/ajaxConfig.d.ts +8 -0
- package/es/attrCondition/demo/ajaxConfig.js +40 -0
- package/es/attrCondition/demo/group.d.ts +2 -0
- package/es/attrCondition/demo/group.js +29 -0
- package/es/attrCondition/demo/index.d.ts +2 -0
- package/es/attrCondition/demo/index.js +16 -0
- package/es/attrCondition/group.d.ts +4 -0
- package/es/attrCondition/group.js +59 -0
- package/es/attrCondition/index.d.ts +5 -0
- package/es/attrCondition/index.js +67 -0
- package/es/attrCondition/styles/index.less +74 -0
- package/es/attrCondition/useAttrCondition.d.ts +13 -0
- package/es/attrCondition/useAttrCondition.js +91 -0
- package/es/attrCondition/useConditionGroup.d.ts +10 -0
- package/es/attrCondition/useConditionGroup.js +127 -0
- package/es/attrConditions/components/operateList.js +7 -2
- package/es/attrConditions/components/stringList.js +7 -3
- package/es/attrConditions/components/valuesList.js +13 -7
- package/es/attrConditions/group.js +11 -118
- package/es/attrConditions/index.js +13 -79
- package/es/attrConditions/styles/index.less +0 -2
- package/es/attributeSelector/demo/index.js +4 -2
- package/es/attributeSelector/listPanel.js +2 -1
- package/es/constants/apis.js +2 -2
- package/es/datePicker/datePicker.d.ts +1 -0
- package/es/datePicker/datePicker.js +12 -3
- package/es/datePicker/demo/day.js +14 -2
- package/es/datePicker/index.js +18 -7
- package/es/datePicker/types.d.ts +1 -0
- package/es/demoWrapper/content.js +15 -15
- package/es/demoWrapper/head.js +4 -4
- package/es/demoWrapper/index.js +3 -2
- package/es/eventSelector/demo/index.js +2 -1
- package/es/eventSelector/index.js +2 -1
- package/es/eventSelector/listPanel.js +10 -3
- package/es/eventSelector/option.d.ts +1 -0
- package/es/eventSelector/option.js +4 -2
- package/es/eventSelector/styles/index.less +6 -0
- package/es/eventSelector/types.d.ts +2 -0
- package/es/index.d.ts +3 -1
- package/es/index.js +3 -1
- package/es/layout/optionTitle/index.js +2 -0
- package/es/select/option.js +1 -1
- package/es/utils/ajax.js +1 -3
- package/package.json +2 -2
|
@@ -61,7 +61,7 @@ var StyleList = function StyleList(props) {
|
|
|
61
61
|
return ChildList(item);
|
|
62
62
|
}
|
|
63
63
|
}, /*#__PURE__*/React.createElement("div", {
|
|
64
|
-
className: "".concat(classPrefix, "-item").concat(item.disabled ? ' disabled' : '', " ").concat(tab && tab[0] === item.value ? 'active' : ''),
|
|
64
|
+
className: "".concat(classPrefix, "-item").concat(item.disabled ? ' disabled' : '', " ").concat(tab && tab[0] === item.value ? 'active' : '', " ").concat(props.options && props.options.length === 1 ? 'one' : ''),
|
|
65
65
|
onClick: function onClick() {
|
|
66
66
|
return _onClick(item);
|
|
67
67
|
}
|
package/es/addToPanel/index.js
CHANGED
|
@@ -184,6 +184,7 @@ var BizAddToPanel = function BizAddToPanel(props) {
|
|
|
184
184
|
}, /*#__PURE__*/React.createElement(Form.Item, {
|
|
185
185
|
label: "\u770B\u677F",
|
|
186
186
|
name: "panel",
|
|
187
|
+
colon: false,
|
|
187
188
|
hidden: props.type === 'edit',
|
|
188
189
|
rules: [{
|
|
189
190
|
validator: function validator(_, value) {
|
|
@@ -212,6 +213,7 @@ var BizAddToPanel = function BizAddToPanel(props) {
|
|
|
212
213
|
})), /*#__PURE__*/React.createElement(Form.Item, {
|
|
213
214
|
label: "\u540D\u79F0",
|
|
214
215
|
name: "name",
|
|
216
|
+
colon: false,
|
|
215
217
|
hidden: props.type === 'edit',
|
|
216
218
|
rules: [{
|
|
217
219
|
validator: function validator(_, value) {
|
|
@@ -234,6 +236,7 @@ var BizAddToPanel = function BizAddToPanel(props) {
|
|
|
234
236
|
})), /*#__PURE__*/React.createElement(Form.Item, {
|
|
235
237
|
label: "\u6837\u5F0F",
|
|
236
238
|
name: "chartType",
|
|
239
|
+
colon: false,
|
|
237
240
|
rules: [{
|
|
238
241
|
required: true,
|
|
239
242
|
message: '请选择样式'
|
|
@@ -249,6 +252,7 @@ var BizAddToPanel = function BizAddToPanel(props) {
|
|
|
249
252
|
return type === 'line' || type === 'bar' ? /*#__PURE__*/React.createElement(Form.Item, {
|
|
250
253
|
label: "\u663E\u793A",
|
|
251
254
|
name: "showList",
|
|
255
|
+
colon: false,
|
|
252
256
|
rules: [{
|
|
253
257
|
required: true,
|
|
254
258
|
message: '请选择显示'
|
package/es/addToScene/index.js
CHANGED
|
@@ -56,10 +56,10 @@ var BizAddToScene = function BizAddToScene(props) {
|
|
|
56
56
|
appId: currentApp === null || currentApp === void 0 ? void 0 : currentApp.appId,
|
|
57
57
|
platform: 0,
|
|
58
58
|
groupId: form.group.groupId,
|
|
59
|
-
json:
|
|
59
|
+
json: {
|
|
60
60
|
chosen_data: [],
|
|
61
61
|
data: params
|
|
62
|
-
}
|
|
62
|
+
},
|
|
63
63
|
name: form.name
|
|
64
64
|
};
|
|
65
65
|
if (form.group.groupId === 0) {
|
|
@@ -70,21 +70,11 @@ var BizAddToScene = function BizAddToScene(props) {
|
|
|
70
70
|
data: data
|
|
71
71
|
}).then(function (res) {
|
|
72
72
|
setLoading(false);
|
|
73
|
-
|
|
74
|
-
if (result.code === 10001) {
|
|
73
|
+
if (res.data) {
|
|
75
74
|
notification.success({
|
|
76
75
|
message: '添加成功'
|
|
77
76
|
});
|
|
78
77
|
if (props.onOk) props.onOk(res);
|
|
79
|
-
} else if (result.code === -10010) {
|
|
80
|
-
notification.error({
|
|
81
|
-
message: '添加失败',
|
|
82
|
-
description: data.groupId === 0 ? '场景分类已存在' : '场景名称已存在'
|
|
83
|
-
});
|
|
84
|
-
} else {
|
|
85
|
-
notification.error({
|
|
86
|
-
message: '添加失败'
|
|
87
|
-
});
|
|
88
78
|
}
|
|
89
79
|
}).catch(function () {
|
|
90
80
|
setLoading(false);
|
|
@@ -104,7 +94,7 @@ var BizAddToScene = function BizAddToScene(props) {
|
|
|
104
94
|
});
|
|
105
95
|
return;
|
|
106
96
|
}
|
|
107
|
-
setGroupList(res.
|
|
97
|
+
setGroupList(res.data);
|
|
108
98
|
});
|
|
109
99
|
}
|
|
110
100
|
useEffect(function () {
|
|
@@ -129,6 +119,7 @@ var BizAddToScene = function BizAddToScene(props) {
|
|
|
129
119
|
}, /*#__PURE__*/React.createElement(Form.Item, {
|
|
130
120
|
label: "\u573A\u666F\u5206\u7C7B",
|
|
131
121
|
name: "group",
|
|
122
|
+
colon: false,
|
|
132
123
|
rules: [{
|
|
133
124
|
validator: function validator(_, value) {
|
|
134
125
|
if (!value || !/\S+/.test(value.groupName)) return Promise.reject("\u8BF7".concat(addMode ? '输入' : '选择', "\u573A\u666F\u5206\u7C7B!"));
|
|
@@ -155,6 +146,7 @@ var BizAddToScene = function BizAddToScene(props) {
|
|
|
155
146
|
})), /*#__PURE__*/React.createElement(Form.Item, {
|
|
156
147
|
label: "\u573A\u666F\u540D\u79F0",
|
|
157
148
|
name: "name",
|
|
149
|
+
colon: false,
|
|
158
150
|
rules: [{
|
|
159
151
|
validator: function validator(_, value) {
|
|
160
152
|
if (!value || !/\S+/.test(value)) return Promise.reject('请输入场景名称!');
|
package/es/addToScene/types.d.ts
CHANGED
|
@@ -54,6 +54,66 @@
|
|
|
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">&#xe764;</div>
|
|
61
|
+
</li>
|
|
62
|
+
|
|
63
|
+
<li class="dib">
|
|
64
|
+
<span class="icon bsicon"></span>
|
|
65
|
+
<div class="name">筛选</div>
|
|
66
|
+
<div class="code-name">&#xe76e;</div>
|
|
67
|
+
</li>
|
|
68
|
+
|
|
69
|
+
<li class="dib">
|
|
70
|
+
<span class="icon bsicon"></span>
|
|
71
|
+
<div class="name">清除</div>
|
|
72
|
+
<div class="code-name">&#xe759;</div>
|
|
73
|
+
</li>
|
|
74
|
+
|
|
75
|
+
<li class="dib">
|
|
76
|
+
<span class="icon bsicon"></span>
|
|
77
|
+
<div class="name">数据去重</div>
|
|
78
|
+
<div class="code-name">&#xe761;</div>
|
|
79
|
+
</li>
|
|
80
|
+
|
|
81
|
+
<li class="dib">
|
|
82
|
+
<span class="icon bsicon"></span>
|
|
83
|
+
<div class="name">替换缺失值</div>
|
|
84
|
+
<div class="code-name">&#xe762;</div>
|
|
85
|
+
</li>
|
|
86
|
+
|
|
87
|
+
<li class="dib">
|
|
88
|
+
<span class="icon bsicon"></span>
|
|
89
|
+
<div class="name">播放</div>
|
|
90
|
+
<div class="code-name">&#xe75b;</div>
|
|
91
|
+
</li>
|
|
92
|
+
|
|
93
|
+
<li class="dib">
|
|
94
|
+
<span class="icon bsicon"></span>
|
|
95
|
+
<div class="name">方向上</div>
|
|
96
|
+
<div class="code-name">&#xe75c;</div>
|
|
97
|
+
</li>
|
|
98
|
+
|
|
99
|
+
<li class="dib">
|
|
100
|
+
<span class="icon bsicon"></span>
|
|
101
|
+
<div class="name">暂停</div>
|
|
102
|
+
<div class="code-name">&#xe75e;</div>
|
|
103
|
+
</li>
|
|
104
|
+
|
|
105
|
+
<li class="dib">
|
|
106
|
+
<span class="icon bsicon"></span>
|
|
107
|
+
<div class="name">音量</div>
|
|
108
|
+
<div class="code-name">&#xe75f;</div>
|
|
109
|
+
</li>
|
|
110
|
+
|
|
111
|
+
<li class="dib">
|
|
112
|
+
<span class="icon bsicon"></span>
|
|
113
|
+
<div class="name">方向下</div>
|
|
114
|
+
<div class="code-name">&#xe760;</div>
|
|
115
|
+
</li>
|
|
116
|
+
|
|
57
117
|
<li class="dib">
|
|
58
118
|
<span class="icon bsicon"></span>
|
|
59
119
|
<div class="name">用户</div>
|
|
@@ -600,24 +660,12 @@
|
|
|
600
660
|
<div class="code-name">&#xe757;</div>
|
|
601
661
|
</li>
|
|
602
662
|
|
|
603
|
-
<li class="dib">
|
|
604
|
-
<span class="icon bsicon"></span>
|
|
605
|
-
<div class="name">清除</div>
|
|
606
|
-
<div class="code-name">&#xe759;</div>
|
|
607
|
-
</li>
|
|
608
|
-
|
|
609
663
|
<li class="dib">
|
|
610
664
|
<span class="icon bsicon"></span>
|
|
611
665
|
<div class="name">向下</div>
|
|
612
666
|
<div class="code-name">&#xe76d;</div>
|
|
613
667
|
</li>
|
|
614
668
|
|
|
615
|
-
<li class="dib">
|
|
616
|
-
<span class="icon bsicon"></span>
|
|
617
|
-
<div class="name">筛选</div>
|
|
618
|
-
<div class="code-name">&#xe76e;</div>
|
|
619
|
-
</li>
|
|
620
|
-
|
|
621
669
|
<li class="dib">
|
|
622
670
|
<span class="icon bsicon"></span>
|
|
623
671
|
<div class="name">添加</div>
|
|
@@ -684,9 +732,9 @@
|
|
|
684
732
|
<pre><code class="language-css"
|
|
685
733
|
>@font-face {
|
|
686
734
|
font-family: 'bsicon';
|
|
687
|
-
src: url('iconfont.woff2?t=
|
|
688
|
-
url('iconfont.woff?t=
|
|
689
|
-
url('iconfont.ttf?t=
|
|
735
|
+
src: url('iconfont.woff2?t=1686905590672') format('woff2'),
|
|
736
|
+
url('iconfont.woff?t=1686905590672') format('woff'),
|
|
737
|
+
url('iconfont.ttf?t=1686905590672') format('truetype');
|
|
690
738
|
}
|
|
691
739
|
</code></pre>
|
|
692
740
|
<h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
|
|
@@ -712,6 +760,96 @@
|
|
|
712
760
|
<div class="content font-class">
|
|
713
761
|
<ul class="icon_lists dib-box">
|
|
714
762
|
|
|
763
|
+
<li class="dib">
|
|
764
|
+
<span class="icon bsicon guiyin"></span>
|
|
765
|
+
<div class="name">
|
|
766
|
+
归因
|
|
767
|
+
</div>
|
|
768
|
+
<div class="code-name">.guiyin
|
|
769
|
+
</div>
|
|
770
|
+
</li>
|
|
771
|
+
|
|
772
|
+
<li class="dib">
|
|
773
|
+
<span class="icon bsicon shaixuan"></span>
|
|
774
|
+
<div class="name">
|
|
775
|
+
筛选
|
|
776
|
+
</div>
|
|
777
|
+
<div class="code-name">.shaixuan
|
|
778
|
+
</div>
|
|
779
|
+
</li>
|
|
780
|
+
|
|
781
|
+
<li class="dib">
|
|
782
|
+
<span class="icon bsicon qingchu"></span>
|
|
783
|
+
<div class="name">
|
|
784
|
+
清除
|
|
785
|
+
</div>
|
|
786
|
+
<div class="code-name">.qingchu
|
|
787
|
+
</div>
|
|
788
|
+
</li>
|
|
789
|
+
|
|
790
|
+
<li class="dib">
|
|
791
|
+
<span class="icon bsicon shujuquzhong"></span>
|
|
792
|
+
<div class="name">
|
|
793
|
+
数据去重
|
|
794
|
+
</div>
|
|
795
|
+
<div class="code-name">.shujuquzhong
|
|
796
|
+
</div>
|
|
797
|
+
</li>
|
|
798
|
+
|
|
799
|
+
<li class="dib">
|
|
800
|
+
<span class="icon bsicon tihuanqueshizhi"></span>
|
|
801
|
+
<div class="name">
|
|
802
|
+
替换缺失值
|
|
803
|
+
</div>
|
|
804
|
+
<div class="code-name">.tihuanqueshizhi
|
|
805
|
+
</div>
|
|
806
|
+
</li>
|
|
807
|
+
|
|
808
|
+
<li class="dib">
|
|
809
|
+
<span class="icon bsicon bofang"></span>
|
|
810
|
+
<div class="name">
|
|
811
|
+
播放
|
|
812
|
+
</div>
|
|
813
|
+
<div class="code-name">.bofang
|
|
814
|
+
</div>
|
|
815
|
+
</li>
|
|
816
|
+
|
|
817
|
+
<li class="dib">
|
|
818
|
+
<span class="icon bsicon fangxiangshang"></span>
|
|
819
|
+
<div class="name">
|
|
820
|
+
方向上
|
|
821
|
+
</div>
|
|
822
|
+
<div class="code-name">.fangxiangshang
|
|
823
|
+
</div>
|
|
824
|
+
</li>
|
|
825
|
+
|
|
826
|
+
<li class="dib">
|
|
827
|
+
<span class="icon bsicon zanting"></span>
|
|
828
|
+
<div class="name">
|
|
829
|
+
暂停
|
|
830
|
+
</div>
|
|
831
|
+
<div class="code-name">.zanting
|
|
832
|
+
</div>
|
|
833
|
+
</li>
|
|
834
|
+
|
|
835
|
+
<li class="dib">
|
|
836
|
+
<span class="icon bsicon yinliang"></span>
|
|
837
|
+
<div class="name">
|
|
838
|
+
音量
|
|
839
|
+
</div>
|
|
840
|
+
<div class="code-name">.yinliang
|
|
841
|
+
</div>
|
|
842
|
+
</li>
|
|
843
|
+
|
|
844
|
+
<li class="dib">
|
|
845
|
+
<span class="icon bsicon fangxiangxia"></span>
|
|
846
|
+
<div class="name">
|
|
847
|
+
方向下
|
|
848
|
+
</div>
|
|
849
|
+
<div class="code-name">.fangxiangxia
|
|
850
|
+
</div>
|
|
851
|
+
</li>
|
|
852
|
+
|
|
715
853
|
<li class="dib">
|
|
716
854
|
<span class="icon bsicon yonghu"></span>
|
|
717
855
|
<div class="name">
|
|
@@ -1531,15 +1669,6 @@
|
|
|
1531
1669
|
</div>
|
|
1532
1670
|
</li>
|
|
1533
1671
|
|
|
1534
|
-
<li class="dib">
|
|
1535
|
-
<span class="icon bsicon qingchu"></span>
|
|
1536
|
-
<div class="name">
|
|
1537
|
-
清除
|
|
1538
|
-
</div>
|
|
1539
|
-
<div class="code-name">.qingchu
|
|
1540
|
-
</div>
|
|
1541
|
-
</li>
|
|
1542
|
-
|
|
1543
1672
|
<li class="dib">
|
|
1544
1673
|
<span class="icon bsicon xiangxia"></span>
|
|
1545
1674
|
<div class="name">
|
|
@@ -1549,15 +1678,6 @@
|
|
|
1549
1678
|
</div>
|
|
1550
1679
|
</li>
|
|
1551
1680
|
|
|
1552
|
-
<li class="dib">
|
|
1553
|
-
<span class="icon bsicon shaixuan"></span>
|
|
1554
|
-
<div class="name">
|
|
1555
|
-
筛选
|
|
1556
|
-
</div>
|
|
1557
|
-
<div class="code-name">.shaixuan
|
|
1558
|
-
</div>
|
|
1559
|
-
</li>
|
|
1560
|
-
|
|
1561
1681
|
<li class="dib">
|
|
1562
1682
|
<span class="icon bsicon tianjia1"></span>
|
|
1563
1683
|
<div class="name">
|
|
@@ -1657,6 +1777,86 @@
|
|
|
1657
1777
|
<div class="content symbol">
|
|
1658
1778
|
<ul class="icon_lists dib-box">
|
|
1659
1779
|
|
|
1780
|
+
<li class="dib">
|
|
1781
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1782
|
+
<use xlink:href="#guiyin"></use>
|
|
1783
|
+
</svg>
|
|
1784
|
+
<div class="name">归因</div>
|
|
1785
|
+
<div class="code-name">#guiyin</div>
|
|
1786
|
+
</li>
|
|
1787
|
+
|
|
1788
|
+
<li class="dib">
|
|
1789
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1790
|
+
<use xlink:href="#shaixuan"></use>
|
|
1791
|
+
</svg>
|
|
1792
|
+
<div class="name">筛选</div>
|
|
1793
|
+
<div class="code-name">#shaixuan</div>
|
|
1794
|
+
</li>
|
|
1795
|
+
|
|
1796
|
+
<li class="dib">
|
|
1797
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1798
|
+
<use xlink:href="#qingchu"></use>
|
|
1799
|
+
</svg>
|
|
1800
|
+
<div class="name">清除</div>
|
|
1801
|
+
<div class="code-name">#qingchu</div>
|
|
1802
|
+
</li>
|
|
1803
|
+
|
|
1804
|
+
<li class="dib">
|
|
1805
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1806
|
+
<use xlink:href="#shujuquzhong"></use>
|
|
1807
|
+
</svg>
|
|
1808
|
+
<div class="name">数据去重</div>
|
|
1809
|
+
<div class="code-name">#shujuquzhong</div>
|
|
1810
|
+
</li>
|
|
1811
|
+
|
|
1812
|
+
<li class="dib">
|
|
1813
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1814
|
+
<use xlink:href="#tihuanqueshizhi"></use>
|
|
1815
|
+
</svg>
|
|
1816
|
+
<div class="name">替换缺失值</div>
|
|
1817
|
+
<div class="code-name">#tihuanqueshizhi</div>
|
|
1818
|
+
</li>
|
|
1819
|
+
|
|
1820
|
+
<li class="dib">
|
|
1821
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1822
|
+
<use xlink:href="#bofang"></use>
|
|
1823
|
+
</svg>
|
|
1824
|
+
<div class="name">播放</div>
|
|
1825
|
+
<div class="code-name">#bofang</div>
|
|
1826
|
+
</li>
|
|
1827
|
+
|
|
1828
|
+
<li class="dib">
|
|
1829
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1830
|
+
<use xlink:href="#fangxiangshang"></use>
|
|
1831
|
+
</svg>
|
|
1832
|
+
<div class="name">方向上</div>
|
|
1833
|
+
<div class="code-name">#fangxiangshang</div>
|
|
1834
|
+
</li>
|
|
1835
|
+
|
|
1836
|
+
<li class="dib">
|
|
1837
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1838
|
+
<use xlink:href="#zanting"></use>
|
|
1839
|
+
</svg>
|
|
1840
|
+
<div class="name">暂停</div>
|
|
1841
|
+
<div class="code-name">#zanting</div>
|
|
1842
|
+
</li>
|
|
1843
|
+
|
|
1844
|
+
<li class="dib">
|
|
1845
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1846
|
+
<use xlink:href="#yinliang"></use>
|
|
1847
|
+
</svg>
|
|
1848
|
+
<div class="name">音量</div>
|
|
1849
|
+
<div class="code-name">#yinliang</div>
|
|
1850
|
+
</li>
|
|
1851
|
+
|
|
1852
|
+
<li class="dib">
|
|
1853
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1854
|
+
<use xlink:href="#fangxiangxia"></use>
|
|
1855
|
+
</svg>
|
|
1856
|
+
<div class="name">方向下</div>
|
|
1857
|
+
<div class="code-name">#fangxiangxia</div>
|
|
1858
|
+
</li>
|
|
1859
|
+
|
|
1660
1860
|
<li class="dib">
|
|
1661
1861
|
<svg class="icon svg-icon" aria-hidden="true">
|
|
1662
1862
|
<use xlink:href="#yonghu"></use>
|
|
@@ -2385,14 +2585,6 @@
|
|
|
2385
2585
|
<div class="code-name">#gengduocaozuo1</div>
|
|
2386
2586
|
</li>
|
|
2387
2587
|
|
|
2388
|
-
<li class="dib">
|
|
2389
|
-
<svg class="icon svg-icon" aria-hidden="true">
|
|
2390
|
-
<use xlink:href="#qingchu"></use>
|
|
2391
|
-
</svg>
|
|
2392
|
-
<div class="name">清除</div>
|
|
2393
|
-
<div class="code-name">#qingchu</div>
|
|
2394
|
-
</li>
|
|
2395
|
-
|
|
2396
2588
|
<li class="dib">
|
|
2397
2589
|
<svg class="icon svg-icon" aria-hidden="true">
|
|
2398
2590
|
<use xlink:href="#xiangxia"></use>
|
|
@@ -2401,14 +2593,6 @@
|
|
|
2401
2593
|
<div class="code-name">#xiangxia</div>
|
|
2402
2594
|
</li>
|
|
2403
2595
|
|
|
2404
|
-
<li class="dib">
|
|
2405
|
-
<svg class="icon svg-icon" aria-hidden="true">
|
|
2406
|
-
<use xlink:href="#shaixuan"></use>
|
|
2407
|
-
</svg>
|
|
2408
|
-
<div class="name">筛选</div>
|
|
2409
|
-
<div class="code-name">#shaixuan</div>
|
|
2410
|
-
</li>
|
|
2411
|
-
|
|
2412
2596
|
<li class="dib">
|
|
2413
2597
|
<svg class="icon svg-icon" aria-hidden="true">
|
|
2414
2598
|
<use xlink:href="#tianjia1"></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=1686905590672') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1686905590672') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1686905590672') format('truetype');
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.bsicon {
|
|
@@ -13,6 +13,46 @@
|
|
|
13
13
|
-moz-osx-font-smoothing: grayscale;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
.guiyin:before {
|
|
17
|
+
content: "\e764";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.shaixuan:before {
|
|
21
|
+
content: "\e76e";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.qingchu:before {
|
|
25
|
+
content: "\e759";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.shujuquzhong:before {
|
|
29
|
+
content: "\e761";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.tihuanqueshizhi:before {
|
|
33
|
+
content: "\e762";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.bofang:before {
|
|
37
|
+
content: "\e75b";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.fangxiangshang:before {
|
|
41
|
+
content: "\e75c";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.zanting:before {
|
|
45
|
+
content: "\e75e";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.yinliang:before {
|
|
49
|
+
content: "\e75f";
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.fangxiangxia:before {
|
|
53
|
+
content: "\e760";
|
|
54
|
+
}
|
|
55
|
+
|
|
16
56
|
.yonghu:before {
|
|
17
57
|
content: "\e74e";
|
|
18
58
|
}
|
|
@@ -377,18 +417,10 @@
|
|
|
377
417
|
content: "\e757";
|
|
378
418
|
}
|
|
379
419
|
|
|
380
|
-
.qingchu:before {
|
|
381
|
-
content: "\e759";
|
|
382
|
-
}
|
|
383
|
-
|
|
384
420
|
.xiangxia:before {
|
|
385
421
|
content: "\e76d";
|
|
386
422
|
}
|
|
387
423
|
|
|
388
|
-
.shaixuan:before {
|
|
389
|
-
content: "\e76e";
|
|
390
|
-
}
|
|
391
|
-
|
|
392
424
|
.tianjia1:before {
|
|
393
425
|
content: "\e76f";
|
|
394
426
|
}
|