@bytenew/bn-bus-ui 1.1.462 → 1.1.463
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/install.js +134 -0
- package/package.json +20 -4
- package/packages/BnAddress/index.vue +141 -0
- package/packages/BnAddressParse/index.vue +75 -0
- package/packages/BnAdvancedFilter/BnFilterView.vue +145 -0
- package/packages/BnAdvancedFilter/index.vue +345 -0
- package/packages/BnAdvancedFilter/util.js +171 -0
- package/packages/BnCascader/BnCascader.vue +543 -0
- package/packages/BnCascader/BnCascaderPanel.vue +1331 -0
- package/packages/BnCascader/cascaderDisplay.js +102 -0
- package/packages/BnCheck/BnCheck.vue +253 -0
- package/packages/BnColumnConfig/columnConfigDialog.vue +134 -0
- package/packages/BnColumnConfig/component/childrenFormSetting/assocTable.vue +143 -0
- package/packages/BnColumnConfig/component/childrenFormSetting/assocTableSearch.vue +314 -0
- package/packages/BnColumnConfig/component/childrenFormSetting/index.vue +243 -0
- package/packages/BnColumnConfig/component/defaultSet/defaultSet.vue +114 -0
- package/packages/BnColumnConfig/component/defaultSet/stringDefault.vue +210 -0
- package/packages/BnColumnConfig/component/funcExprDialog/funcExprDialog.vue +126 -0
- package/packages/BnColumnConfig/component/packageFilter/index.vue +141 -0
- package/packages/BnColumnConfig/component/paraExplainSet/index.vue +156 -0
- package/packages/BnColumnConfig/component/setOption/setOption.vue +321 -0
- package/packages/BnColumnConfig/component/setRelationOption/ConditionList.vue +277 -0
- package/packages/BnColumnConfig/component/setRelationOption/LevelHeader.vue +144 -0
- package/packages/BnColumnConfig/component/setRelationOption/setRelationOption.vue +642 -0
- package/packages/BnColumnConfig/data.js +129 -0
- package/packages/BnColumnConfig/index.scss +23 -0
- package/packages/BnColumnConfig/index.vue +309 -0
- package/packages/BnCondVal/BnCondVal.vue +112 -0
- package/packages/BnCondVal/itemVal/dateRegVal.vue +39 -0
- package/packages/BnCondVal/itemVal/dateVal.vue +39 -0
- package/packages/BnCondVal/itemVal/numRegVal.vue +67 -0
- package/packages/BnCondVal/itemVal/numVal.vue +44 -0
- package/packages/BnCondVal/itemVal/relationVal.vue +73 -0
- package/packages/BnCondVal/itemVal/selectColumnVal.vue +58 -0
- package/packages/BnCondVal/itemVal/selectVal.vue +59 -0
- package/packages/BnCondVal/itemVal/stringVal.vue +156 -0
- package/packages/BnCondition/index.vue +551 -0
- package/packages/BnCondition/util.js +232 -0
- package/packages/BnDatePicker/BnDatePicker.vue +194 -0
- package/packages/BnDrop/BnDrop.vue +917 -0
- package/packages/BnEmptyTip/BnEmptyTip.vue +107 -0
- package/packages/BnExportOrder/BnExportOrder.vue +241 -0
- package/packages/BnExportOrder/validatorCode.vue +94 -0
- package/packages/BnFileView/BnFileView.vue +271 -0
- package/packages/BnFileView/FileDetail.vue +125 -0
- package/packages/BnFileView/videoPreview.vue +70 -0
- package/packages/BnFilterOption/BnFilterOption.vue +160 -0
- package/packages/BnFunExpr/BnFunExpr.vue +608 -0
- package/packages/BnImportOrder/BnImportOrder.vue +323 -0
- package/packages/BnImportTemplate/BnImportTemplate.vue +866 -0
- package/packages/BnImportTemplate/assets/merge_tip_img.png +0 -0
- package/packages/BnImportTemplate/assets/sheet_tip.png +0 -0
- package/packages/BnImportTemplate/assets/xls.png +0 -0
- package/packages/BnImportTemplate/components/ImportTemplateTrigger.vue +198 -0
- package/packages/BnImportTemplate/components/TemplateEditDialog.vue +340 -0
- package/packages/BnImportTemplate/components/TemplateFieldsConfig.vue +401 -0
- package/packages/BnImportTemplate/components/TemplateListDialog.vue +297 -0
- package/packages/BnInpNum/BnInpNum.vue +165 -0
- package/packages/BnMenus/BnMenus.vue +502 -0
- package/packages/BnMenus/MenuItem.vue +321 -0
- package/packages/BnOrderCard/BnOrderCard.vue +389 -0
- package/packages/BnOrderCard/orderRemark.vue +178 -0
- package/packages/BnOrderCard/util.js +94 -0
- package/packages/BnOrderDetail/BnOrderDetail.vue +338 -0
- package/packages/BnOrderDetail/filterLogByUser.vue +108 -0
- package/packages/BnOrderDetail/orderLogs.vue +53 -0
- package/packages/BnOrderDetail/showSubForm/index.vue +41 -0
- package/packages/BnOrderDetail/showSubForm/showChildTable.vue +61 -0
- package/packages/BnOrderDetail/showSubForm/showTimeLine.vue +131 -0
- package/packages/BnOrderDetail/showSubForm/tableCellCopy.vue +84 -0
- package/packages/BnOrderShare/index.vue +378 -0
- package/packages/BnOrderShare/shareUrlInp.vue +54 -0
- package/packages/BnRadio/BnRadio.vue +181 -0
- package/packages/BnRelation/BnRelation.vue +120 -0
- package/packages/BnSelect/BnSelect.vue +485 -0
- package/packages/BnSmartForm/BnBatchForm.vue +334 -0
- package/packages/BnSmartForm/BnBatchFormDialog.vue +423 -0
- package/packages/BnSmartForm/BnSmartElf/elfLog/index.vue +57 -0
- package/packages/BnSmartForm/BnSmartElf/index.vue +95 -0
- package/packages/BnSmartForm/BnSmartFormPsychic.js +629 -0
- package/packages/BnSmartForm/BnSmartFormUtil.js +524 -0
- package/packages/BnSmartForm/addressForm/index.vue +73 -0
- package/packages/BnSmartForm/checkboxForm/index.vue +99 -0
- package/packages/BnSmartForm/childrenForm/childFormFile.vue +237 -0
- package/packages/BnSmartForm/childrenForm/childrenFormBody.vue +260 -0
- package/packages/BnSmartForm/childrenForm/index.vue +110 -0
- package/packages/BnSmartForm/childrenForm/searchInventory.vue +115 -0
- package/packages/BnSmartForm/chooseAssocTable/chooseAssocTable.vue +451 -0
- package/packages/BnSmartForm/chooseAssocTable/chooseChildGood.vue +229 -0
- package/packages/BnSmartForm/chooseAssocTable/tableCellCopy.vue +84 -0
- package/packages/BnSmartForm/chooseChildOrder/chooseChildOrder.vue +158 -0
- package/packages/BnSmartForm/chooseIPaasData/chooseIPaasData.vue +307 -0
- package/packages/BnSmartForm/chooseIPaasData/tableCellCopy.vue +84 -0
- package/packages/BnSmartForm/choosePackage/choosePackage.vue +361 -0
- package/packages/BnSmartForm/dateDualForm/index.vue +37 -0
- package/packages/BnSmartForm/dateForm/index.vue +38 -0
- package/packages/BnSmartForm/fileForm/fileFormData.js +50 -0
- package/packages/BnSmartForm/fileForm/index.vue +240 -0
- package/packages/BnSmartForm/formItemFooter/formItemFooter.vue +38 -0
- package/packages/BnSmartForm/formItemTop/formItemTop.vue +42 -0
- package/packages/BnSmartForm/index.vue +1201 -0
- package/packages/BnSmartForm/numberForm/index.vue +63 -0
- package/packages/BnSmartForm/radioForm/index.vue +72 -0
- package/packages/BnSmartForm/receiveForm/index.vue +112 -0
- package/packages/BnSmartForm/relationForm/index.vue +82 -0
- package/packages/BnSmartForm/scoreForm/index.vue +39 -0
- package/packages/BnSmartForm/selectForm/index.vue +55 -0
- package/packages/BnSmartForm/showValForm/index.vue +42 -0
- package/packages/BnSmartForm/showValForm/showValFormTable.vue +104 -0
- package/packages/BnSmartForm/smartFormsCommon.scss +43 -0
- package/packages/BnSmartForm/stringForm/index.vue +170 -0
- package/packages/BnVirtPopover/index.vue +319 -0
- package/packages/BnWebLog/BnWebLog.vue +140 -0
- package/packages/BnWorkSettingDrop/advancedOptions.js +112 -0
- package/packages/BnWorkSettingDrop/benBenAIUtil.js +89 -0
- package/packages/BnWorkSettingDrop/index.vue +292 -0
- package/packages/font/iconfont.css +243 -0
- package/packages/font/iconfont.ttf +0 -0
- package/packages/font/iconfont.woff +0 -0
- package/packages/font/iconfont.woff2 +0 -0
- package/utils/addressParse-old.js +645 -0
- package/utils/addressParse.js +735 -0
- package/utils/config.js +68 -0
- package/utils/index.js +1171 -0
- package/dist/assocTableSearch-CmzOXI5w.js +0 -349
- package/dist/assocTableSearch.css +0 -1
- package/dist/bn-bus-ui.es.js +0 -65
- package/dist/bn-bus-ui.umd.js +0 -49
- package/dist/chooseIPaasData-jkTJEMKT.js +0 -391
- package/dist/chooseIPaasData.css +0 -1
- package/dist/defaultSet-CiYuSOzT.js +0 -297
- package/dist/defaultSet.css +0 -1
- package/dist/fileFormData-D_Q1vylE.js +0 -53
- package/dist/formItemFooter-BpnVUUgV.js +0 -108
- package/dist/formItemFooter.css +0 -1
- package/dist/funcExprDialog-BMc-n5FL.js +0 -139
- package/dist/funcExprDialog.css +0 -1
- package/dist/index-8GQJARcF.js +0 -44
- package/dist/index-8apT0r8m.js +0 -66
- package/dist/index-BOFu3qAH.js +0 -183
- package/dist/index-BSKXuSid.js +0 -89
- package/dist/index-BhYvDd_Q.js +0 -45
- package/dist/index-BhqkeVFc.js +0 -45
- package/dist/index-CK7_Ou7F.js +0 -89
- package/dist/index-Cfb8D3Fg.js +0 -58
- package/dist/index-D1fGD0mX.js +0 -51
- package/dist/index-DE_eQGbT.js +0 -746
- package/dist/index-DfgiBqzS.js +0 -221
- package/dist/index-Dobi0ms9.js +0 -66
- package/dist/index-DuyQNxe0.js +0 -118
- package/dist/index-DxpJkrN7.js +0 -64
- package/dist/index-FGHeG46m.js +0 -109
- package/dist/index-P2M7CUTe.js +0 -178
- package/dist/index-xCz2zysE.js +0 -135
- package/dist/index.css +0 -1
- package/dist/index2.css +0 -1
- package/dist/index3.css +0 -1
- package/dist/index4.css +0 -1
- package/dist/index5.css +0 -1
- package/dist/index6.css +0 -1
- package/dist/index7.css +0 -1
- package/dist/install--7IU60oV.js +0 -23103
- package/dist/install.css +0 -1
- package/dist/setOption-DehYZpZr.js +0 -329
- package/dist/setOption.css +0 -1
- package/dist/setRelationOption-BL-AFUoF.js +0 -5217
- package/dist/setRelationOption.css +0 -1
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "bnUIcon"; /* Project id 4793992 */
|
|
3
|
+
src: url('iconfont.woff2?t=1784012487767') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1784012487767') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1784012487767') format('truetype');
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.bnUIcon {
|
|
9
|
+
font-family: "bnUIcon" !important;
|
|
10
|
+
font-size: 16px;
|
|
11
|
+
font-style: normal;
|
|
12
|
+
-webkit-font-smoothing: antialiased;
|
|
13
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.bnUIcon-benAi:before {
|
|
17
|
+
content: "\e955";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.bnUIcon-share:before {
|
|
21
|
+
content: "\e603";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.bnUIcon-submitCheck:before {
|
|
25
|
+
content: "\e642";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.bnUIcon-message:before {
|
|
29
|
+
content: "\e761";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.bnUIcon-linkage:before {
|
|
33
|
+
content: "\e93e";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.bnUIcon-remarks:before {
|
|
37
|
+
content: "\e906";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.bnUIcon-robot:before {
|
|
41
|
+
content: "\e909";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.bnUIcon-bell:before {
|
|
45
|
+
content: "\e960";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.bnUIcon-psychic:before {
|
|
49
|
+
content: "\e902";
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.bnUIcon-circle:before {
|
|
53
|
+
content: "\e657";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.bnUIcon-shrink:before {
|
|
57
|
+
content: "\e7c7";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.bnUIcon-enlarge:before {
|
|
61
|
+
content: "\e7ca";
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.bnUIcon-stick:before {
|
|
65
|
+
content: "\e602";
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.bnUIcon-arrow2:before {
|
|
69
|
+
content: "\e7f2";
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.bnUIcon-api:before {
|
|
73
|
+
content: "\e74a";
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.bnUIcon-edit:before {
|
|
77
|
+
content: "\e871";
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.bnUIcon-copy:before {
|
|
81
|
+
content: "\e7d6";
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.bnUIcon-notLookEmpty:before {
|
|
85
|
+
content: "\e7e2";
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.bnUIcon-lookEmpty:before {
|
|
89
|
+
content: "\e7e3";
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.bnUIcon-jd:before {
|
|
93
|
+
content: "\e600";
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.bnUIcon-tb:before {
|
|
97
|
+
content: "\e648";
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.bnUIcon-qc:before {
|
|
101
|
+
content: "\e98d";
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.bnUIcon-partner:before {
|
|
105
|
+
content: "\e92e";
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.bnUIcon-dy:before {
|
|
109
|
+
content: "\e601";
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.bnUIcon-question:before {
|
|
113
|
+
content: "\e798";
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.bnUIcon-search:before {
|
|
117
|
+
content: "\e708";
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.bnUIcon-linkTable:before {
|
|
121
|
+
content: "\e691";
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.bnUIcon-close:before {
|
|
125
|
+
content: "\e8a5";
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.bnUIcon-img:before {
|
|
129
|
+
content: "\e6b8";
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.bnUIcon-upImg:before {
|
|
133
|
+
content: "\e62d";
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.bnUIcon-setting:before {
|
|
137
|
+
content: "\e945";
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.bnUIcon-cry:before {
|
|
141
|
+
content: "\e758";
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.bnUIcon-smile:before {
|
|
145
|
+
content: "\e75a";
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.bnUIcon-delete:before {
|
|
149
|
+
content: "\e74b";
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.bnUIcon-addFile:before {
|
|
153
|
+
content: "\e629";
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.bnUIcon-batchAdd:before {
|
|
157
|
+
content: "\e790";
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.bnUIcon-move:before {
|
|
161
|
+
content: "\e663";
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.bnUIcon-linkFiled:before {
|
|
165
|
+
content: "\e772";
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.bnUIcon-exprExec:before {
|
|
169
|
+
content: "\e677";
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.bnUIcon-arrow:before {
|
|
173
|
+
content: "\e7a0";
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.bnUIcon-arrowDown:before {
|
|
177
|
+
content: "\e7a1";
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.bnUIcon-inventory:before {
|
|
181
|
+
content: "\e741";
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.bnUIcon-flag:before {
|
|
185
|
+
content: "\e60d";
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.bnUIcon-openLock:before {
|
|
189
|
+
content: "\e94b";
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.bnUIcon-childGood:before {
|
|
193
|
+
content: "\e6e2";
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.bnUIcon-split:before {
|
|
197
|
+
content: "\e652";
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.bnUIcon-searchAuto:before {
|
|
201
|
+
content: "\e69b";
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.bnUIcon-fast:before {
|
|
205
|
+
content: "\e641";
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.bnUIcon-add:before {
|
|
209
|
+
content: "\e65c";
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.bnUIcon-look:before {
|
|
213
|
+
content: "\e628";
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.bnUIcon-download:before {
|
|
217
|
+
content: "\e62a";
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.bnUIcon-upload:before {
|
|
221
|
+
content: "\e622";
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.bnUIcon-choose:before {
|
|
225
|
+
content: "\e8a0";
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.bnUIcon-unChoose:before {
|
|
229
|
+
content: "\e8a1";
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.bnUIcon-chose:before {
|
|
233
|
+
content: "\e7ee";
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.bnUIcon-down:before {
|
|
237
|
+
content: "\e840";
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.bnUIcon-clear:before {
|
|
241
|
+
content: "\e858";
|
|
242
|
+
}
|
|
243
|
+
|
|
Binary file
|
|
Binary file
|
|
Binary file
|