sun-biz 0.0.4-beta.46 → 0.0.4-beta.47
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/dist/components/index.js +65 -12
- package/dist/hooks/index.js +1 -1
- package/dist/index.js +65 -12
- package/package.json +3 -2
package/dist/components/index.js
CHANGED
|
@@ -572,7 +572,7 @@ const RenderColumn_exports_ = RenderColumnvue_type_script_lang_ts_setup_true_nam
|
|
|
572
572
|
function useFetchDataset(codeSystemCodes, enabledFlag) {
|
|
573
573
|
const list = (0, __WEBPACK_EXTERNAL_MODULE_vue__.ref)();
|
|
574
574
|
async function fetchData() {
|
|
575
|
-
if (codeSystemCodes) {
|
|
575
|
+
if (codeSystemCodes && codeSystemCodes?.length) {
|
|
576
576
|
const [, result] = await queryDataSetByCodeSystemCodes({
|
|
577
577
|
codeSystemCodes,
|
|
578
578
|
enabledFlag: enabledFlag ?? __WEBPACK_EXTERNAL_MODULE__sun_toolkit_enums__.ENABLED_FLAG.YES
|
|
@@ -7538,7 +7538,24 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
7538
7538
|
await getBizUnitList({
|
|
7539
7539
|
keyWord: value
|
|
7540
7540
|
});
|
|
7541
|
-
}, 500); //
|
|
7541
|
+
}, 500); // 滚动到当前选中行
|
|
7542
|
+
const scrollToCurrentRow = ()=>{
|
|
7543
|
+
setTimeout(()=>{
|
|
7544
|
+
if (currentRowIndex.value < 0) return;
|
|
7545
|
+
try {
|
|
7546
|
+
const tableElement = tableRef.value?.eleTable?.$el;
|
|
7547
|
+
if (!tableElement) return; // 查找当前高亮的行
|
|
7548
|
+
const currentRowElement = tableElement.querySelector('.el-table__body tr.current-row');
|
|
7549
|
+
if (!currentRowElement) return; // 使用 scrollIntoView 方法滚动到当前行
|
|
7550
|
+
currentRowElement.scrollIntoView({
|
|
7551
|
+
block: 'nearest',
|
|
7552
|
+
behavior: 'smooth'
|
|
7553
|
+
});
|
|
7554
|
+
} catch (error) {
|
|
7555
|
+
console.error('Error scrolling to current row:', error);
|
|
7556
|
+
}
|
|
7557
|
+
}, 100);
|
|
7558
|
+
}; // 键盘事件
|
|
7542
7559
|
const handleKeydown = (e)=>{
|
|
7543
7560
|
if (!bizUnitList.value.length || !popoverVisible.value) return;
|
|
7544
7561
|
if ('ArrowDown' === e.key) {
|
|
@@ -7547,6 +7564,7 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
7547
7564
|
currentRowIndex.value++;
|
|
7548
7565
|
const row = bizUnitList.value[currentRowIndex.value];
|
|
7549
7566
|
tableRef.value.eleTable?.setCurrentRow(row);
|
|
7567
|
+
scrollToCurrentRow();
|
|
7550
7568
|
}
|
|
7551
7569
|
} else if ('ArrowUp' === e.key) {
|
|
7552
7570
|
e.preventDefault();
|
|
@@ -7554,6 +7572,7 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
7554
7572
|
currentRowIndex.value--;
|
|
7555
7573
|
const row = bizUnitList.value[currentRowIndex.value];
|
|
7556
7574
|
tableRef.value.eleTable?.setCurrentRow(row);
|
|
7575
|
+
scrollToCurrentRow();
|
|
7557
7576
|
}
|
|
7558
7577
|
} else if ('Enter' === e.key && currentRowIndex.value >= 0) {
|
|
7559
7578
|
const row = bizUnitList.value[currentRowIndex.value];
|
|
@@ -7746,6 +7765,15 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
7746
7765
|
}
|
|
7747
7766
|
});
|
|
7748
7767
|
});
|
|
7768
|
+
const onClickOutside = ()=>{
|
|
7769
|
+
handleBlur();
|
|
7770
|
+
};
|
|
7771
|
+
const visibleChange = (val)=>{
|
|
7772
|
+
if (val) {
|
|
7773
|
+
loading.value = true;
|
|
7774
|
+
handleFocus();
|
|
7775
|
+
}
|
|
7776
|
+
};
|
|
7749
7777
|
__expose({
|
|
7750
7778
|
popoverRef,
|
|
7751
7779
|
tableRef,
|
|
@@ -7787,11 +7815,11 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
7787
7815
|
"collapse-tags-tooltip": "",
|
|
7788
7816
|
filterable: "",
|
|
7789
7817
|
remote: "",
|
|
7790
|
-
"remote-show-suffix": ""
|
|
7818
|
+
"remote-show-suffix": "",
|
|
7819
|
+
loading: loading.value
|
|
7791
7820
|
}, selectProps.value, {
|
|
7792
|
-
|
|
7821
|
+
onVisibleChange: visibleChange,
|
|
7793
7822
|
onClear: handleClear,
|
|
7794
|
-
onFocus: handleFocus,
|
|
7795
7823
|
onRemoveTag: handleTagRemove
|
|
7796
7824
|
}), null, 16, [
|
|
7797
7825
|
"modelValue",
|
|
@@ -7800,7 +7828,8 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
7800
7828
|
"placeholder",
|
|
7801
7829
|
"popper-class",
|
|
7802
7830
|
"remote-method",
|
|
7803
|
-
"teleported"
|
|
7831
|
+
"teleported",
|
|
7832
|
+
"loading"
|
|
7804
7833
|
])
|
|
7805
7834
|
]),
|
|
7806
7835
|
default: (0, __WEBPACK_EXTERNAL_MODULE_vue__.withCtx)(()=>[
|
|
@@ -7810,7 +7839,7 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
7810
7839
|
}),
|
|
7811
7840
|
class: "w-full overflow-hidden"
|
|
7812
7841
|
}, [
|
|
7813
|
-
(0, __WEBPACK_EXTERNAL_MODULE_vue__.createVNode)((0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(pro_table), (0, __WEBPACK_EXTERNAL_MODULE_vue__.mergeProps)({
|
|
7842
|
+
(0, __WEBPACK_EXTERNAL_MODULE_vue__.withDirectives)((0, __WEBPACK_EXTERNAL_MODULE_vue__.createVNode)((0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(pro_table), (0, __WEBPACK_EXTERNAL_MODULE_vue__.mergeProps)({
|
|
7814
7843
|
ref_key: "tableRef",
|
|
7815
7844
|
ref: tableRef,
|
|
7816
7845
|
columns: (0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(tableConfig),
|
|
@@ -7829,6 +7858,11 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
7829
7858
|
"columns",
|
|
7830
7859
|
"data",
|
|
7831
7860
|
"loading"
|
|
7861
|
+
]), [
|
|
7862
|
+
[
|
|
7863
|
+
(0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(__WEBPACK_EXTERNAL_MODULE_element_sun__.ClickOutside),
|
|
7864
|
+
onClickOutside
|
|
7865
|
+
]
|
|
7832
7866
|
])
|
|
7833
7867
|
], 4)
|
|
7834
7868
|
]),
|
|
@@ -8180,6 +8214,15 @@ const biz_unit_select_exports_ = biz_unit_selectvue_type_script_lang_tsx_name_Bi
|
|
|
8180
8214
|
}
|
|
8181
8215
|
});
|
|
8182
8216
|
});
|
|
8217
|
+
const onClickOutside = ()=>{
|
|
8218
|
+
handleBlur();
|
|
8219
|
+
};
|
|
8220
|
+
const visibleChange = (val)=>{
|
|
8221
|
+
if (val) {
|
|
8222
|
+
loading.value = true;
|
|
8223
|
+
handleFocus();
|
|
8224
|
+
}
|
|
8225
|
+
};
|
|
8183
8226
|
__expose({
|
|
8184
8227
|
popoverRef,
|
|
8185
8228
|
tableRef,
|
|
@@ -8221,10 +8264,10 @@ const biz_unit_select_exports_ = biz_unit_selectvue_type_script_lang_tsx_name_Bi
|
|
|
8221
8264
|
"remote-method": (0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(handelRemoteMethod),
|
|
8222
8265
|
multiple: !!props.multiSelectFlag,
|
|
8223
8266
|
options: [],
|
|
8267
|
+
loading: loading.value,
|
|
8224
8268
|
"popper-class": popoverVisible.value ? 'hidden' : '',
|
|
8225
8269
|
onRemoveTag: handleTagRemove,
|
|
8226
|
-
|
|
8227
|
-
onBlur: handleBlur,
|
|
8270
|
+
onVisibleChange: visibleChange,
|
|
8228
8271
|
onClear: handleClear
|
|
8229
8272
|
}, selectProps.value), null, 16, [
|
|
8230
8273
|
"modelValue",
|
|
@@ -8233,6 +8276,7 @@ const biz_unit_select_exports_ = biz_unit_selectvue_type_script_lang_tsx_name_Bi
|
|
|
8233
8276
|
"teleported",
|
|
8234
8277
|
"remote-method",
|
|
8235
8278
|
"multiple",
|
|
8279
|
+
"loading",
|
|
8236
8280
|
"popper-class"
|
|
8237
8281
|
])
|
|
8238
8282
|
]),
|
|
@@ -8243,7 +8287,7 @@ const biz_unit_select_exports_ = biz_unit_selectvue_type_script_lang_tsx_name_Bi
|
|
|
8243
8287
|
}),
|
|
8244
8288
|
class: "w-full overflow-hidden"
|
|
8245
8289
|
}, [
|
|
8246
|
-
(0, __WEBPACK_EXTERNAL_MODULE_vue__.createVNode)((0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(pro_table), (0, __WEBPACK_EXTERNAL_MODULE_vue__.mergeProps)({
|
|
8290
|
+
(0, __WEBPACK_EXTERNAL_MODULE_vue__.withDirectives)((0, __WEBPACK_EXTERNAL_MODULE_vue__.createVNode)((0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(pro_table), (0, __WEBPACK_EXTERNAL_MODULE_vue__.mergeProps)({
|
|
8247
8291
|
style: {
|
|
8248
8292
|
height: "100%"
|
|
8249
8293
|
},
|
|
@@ -8261,6 +8305,11 @@ const biz_unit_select_exports_ = biz_unit_selectvue_type_script_lang_tsx_name_Bi
|
|
|
8261
8305
|
"loading",
|
|
8262
8306
|
"columns",
|
|
8263
8307
|
"data"
|
|
8308
|
+
]), [
|
|
8309
|
+
[
|
|
8310
|
+
(0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(__WEBPACK_EXTERNAL_MODULE_element_sun__.ClickOutside),
|
|
8311
|
+
onClickOutside
|
|
8312
|
+
]
|
|
8264
8313
|
])
|
|
8265
8314
|
], 4)
|
|
8266
8315
|
]),
|
|
@@ -11085,7 +11134,9 @@ const access_info_exports_ = access_infovue_type_script_setup_true_lang_ts_name_
|
|
|
11085
11134
|
const _component_el_dropdown_item = (0, __WEBPACK_EXTERNAL_MODULE_vue__.resolveComponent)("el-dropdown-item");
|
|
11086
11135
|
const _component_el_dropdown_menu = (0, __WEBPACK_EXTERNAL_MODULE_vue__.resolveComponent)("el-dropdown-menu");
|
|
11087
11136
|
const _component_el_dropdown = (0, __WEBPACK_EXTERNAL_MODULE_vue__.resolveComponent)("el-dropdown");
|
|
11088
|
-
return (0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createBlock)(_component_el_dropdown,
|
|
11137
|
+
return (0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createBlock)(_component_el_dropdown, {
|
|
11138
|
+
trigger: disabledLoad.value ? 'click' : 'hover'
|
|
11139
|
+
}, (0, __WEBPACK_EXTERNAL_MODULE_vue__.createSlots)({
|
|
11089
11140
|
default: (0, __WEBPACK_EXTERNAL_MODULE_vue__.withCtx)(()=>[
|
|
11090
11141
|
(0, __WEBPACK_EXTERNAL_MODULE_vue__.createVNode)(_component_el_button, {
|
|
11091
11142
|
type: "primary",
|
|
@@ -11134,7 +11185,9 @@ const access_info_exports_ = access_infovue_type_script_setup_true_lang_ts_name_
|
|
|
11134
11185
|
]),
|
|
11135
11186
|
key: "0"
|
|
11136
11187
|
}
|
|
11137
|
-
]),
|
|
11188
|
+
]), 1032, [
|
|
11189
|
+
"trigger"
|
|
11190
|
+
]);
|
|
11138
11191
|
};
|
|
11139
11192
|
}
|
|
11140
11193
|
});
|
package/dist/hooks/index.js
CHANGED
|
@@ -454,7 +454,7 @@ function useSelectByDirectionEvent(options) {
|
|
|
454
454
|
function useFetchDataset(codeSystemCodes, enabledFlag) {
|
|
455
455
|
const list = (0, __WEBPACK_EXTERNAL_MODULE_vue__.ref)();
|
|
456
456
|
async function fetchData() {
|
|
457
|
-
if (codeSystemCodes) {
|
|
457
|
+
if (codeSystemCodes && codeSystemCodes?.length) {
|
|
458
458
|
const [, result] = await queryDataSetByCodeSystemCodes({
|
|
459
459
|
codeSystemCodes,
|
|
460
460
|
enabledFlag: enabledFlag ?? __WEBPACK_EXTERNAL_MODULE__sun_toolkit_enums__.ENABLED_FLAG.YES
|
package/dist/index.js
CHANGED
|
@@ -572,7 +572,7 @@ const RenderColumn_exports_ = RenderColumnvue_type_script_lang_ts_setup_true_nam
|
|
|
572
572
|
function useFetchDataset(codeSystemCodes, enabledFlag) {
|
|
573
573
|
const list = (0, __WEBPACK_EXTERNAL_MODULE_vue__.ref)();
|
|
574
574
|
async function fetchData() {
|
|
575
|
-
if (codeSystemCodes) {
|
|
575
|
+
if (codeSystemCodes && codeSystemCodes?.length) {
|
|
576
576
|
const [, result] = await queryDataSetByCodeSystemCodes({
|
|
577
577
|
codeSystemCodes,
|
|
578
578
|
enabledFlag: enabledFlag ?? __WEBPACK_EXTERNAL_MODULE__sun_toolkit_enums__.ENABLED_FLAG.YES
|
|
@@ -8214,7 +8214,24 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
8214
8214
|
await getBizUnitList({
|
|
8215
8215
|
keyWord: value
|
|
8216
8216
|
});
|
|
8217
|
-
}, 500); //
|
|
8217
|
+
}, 500); // 滚动到当前选中行
|
|
8218
|
+
const scrollToCurrentRow = ()=>{
|
|
8219
|
+
setTimeout(()=>{
|
|
8220
|
+
if (currentRowIndex.value < 0) return;
|
|
8221
|
+
try {
|
|
8222
|
+
const tableElement = tableRef.value?.eleTable?.$el;
|
|
8223
|
+
if (!tableElement) return; // 查找当前高亮的行
|
|
8224
|
+
const currentRowElement = tableElement.querySelector('.el-table__body tr.current-row');
|
|
8225
|
+
if (!currentRowElement) return; // 使用 scrollIntoView 方法滚动到当前行
|
|
8226
|
+
currentRowElement.scrollIntoView({
|
|
8227
|
+
block: 'nearest',
|
|
8228
|
+
behavior: 'smooth'
|
|
8229
|
+
});
|
|
8230
|
+
} catch (error) {
|
|
8231
|
+
console.error('Error scrolling to current row:', error);
|
|
8232
|
+
}
|
|
8233
|
+
}, 100);
|
|
8234
|
+
}; // 键盘事件
|
|
8218
8235
|
const handleKeydown = (e)=>{
|
|
8219
8236
|
if (!bizUnitList.value.length || !popoverVisible.value) return;
|
|
8220
8237
|
if ('ArrowDown' === e.key) {
|
|
@@ -8223,6 +8240,7 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
8223
8240
|
currentRowIndex.value++;
|
|
8224
8241
|
const row = bizUnitList.value[currentRowIndex.value];
|
|
8225
8242
|
tableRef.value.eleTable?.setCurrentRow(row);
|
|
8243
|
+
scrollToCurrentRow();
|
|
8226
8244
|
}
|
|
8227
8245
|
} else if ('ArrowUp' === e.key) {
|
|
8228
8246
|
e.preventDefault();
|
|
@@ -8230,6 +8248,7 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
8230
8248
|
currentRowIndex.value--;
|
|
8231
8249
|
const row = bizUnitList.value[currentRowIndex.value];
|
|
8232
8250
|
tableRef.value.eleTable?.setCurrentRow(row);
|
|
8251
|
+
scrollToCurrentRow();
|
|
8233
8252
|
}
|
|
8234
8253
|
} else if ('Enter' === e.key && currentRowIndex.value >= 0) {
|
|
8235
8254
|
const row = bizUnitList.value[currentRowIndex.value];
|
|
@@ -8422,6 +8441,15 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
8422
8441
|
}
|
|
8423
8442
|
});
|
|
8424
8443
|
});
|
|
8444
|
+
const onClickOutside = ()=>{
|
|
8445
|
+
handleBlur();
|
|
8446
|
+
};
|
|
8447
|
+
const visibleChange = (val)=>{
|
|
8448
|
+
if (val) {
|
|
8449
|
+
loading.value = true;
|
|
8450
|
+
handleFocus();
|
|
8451
|
+
}
|
|
8452
|
+
};
|
|
8425
8453
|
__expose({
|
|
8426
8454
|
popoverRef,
|
|
8427
8455
|
tableRef,
|
|
@@ -8463,11 +8491,11 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
8463
8491
|
"collapse-tags-tooltip": "",
|
|
8464
8492
|
filterable: "",
|
|
8465
8493
|
remote: "",
|
|
8466
|
-
"remote-show-suffix": ""
|
|
8494
|
+
"remote-show-suffix": "",
|
|
8495
|
+
loading: loading.value
|
|
8467
8496
|
}, selectProps.value, {
|
|
8468
|
-
|
|
8497
|
+
onVisibleChange: visibleChange,
|
|
8469
8498
|
onClear: handleClear,
|
|
8470
|
-
onFocus: handleFocus,
|
|
8471
8499
|
onRemoveTag: handleTagRemove
|
|
8472
8500
|
}), null, 16, [
|
|
8473
8501
|
"modelValue",
|
|
@@ -8476,7 +8504,8 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
8476
8504
|
"placeholder",
|
|
8477
8505
|
"popper-class",
|
|
8478
8506
|
"remote-method",
|
|
8479
|
-
"teleported"
|
|
8507
|
+
"teleported",
|
|
8508
|
+
"loading"
|
|
8480
8509
|
])
|
|
8481
8510
|
]),
|
|
8482
8511
|
default: (0, __WEBPACK_EXTERNAL_MODULE_vue__.withCtx)(()=>[
|
|
@@ -8486,7 +8515,7 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
8486
8515
|
}),
|
|
8487
8516
|
class: "w-full overflow-hidden"
|
|
8488
8517
|
}, [
|
|
8489
|
-
(0, __WEBPACK_EXTERNAL_MODULE_vue__.createVNode)((0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(pro_table), (0, __WEBPACK_EXTERNAL_MODULE_vue__.mergeProps)({
|
|
8518
|
+
(0, __WEBPACK_EXTERNAL_MODULE_vue__.withDirectives)((0, __WEBPACK_EXTERNAL_MODULE_vue__.createVNode)((0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(pro_table), (0, __WEBPACK_EXTERNAL_MODULE_vue__.mergeProps)({
|
|
8490
8519
|
ref_key: "tableRef",
|
|
8491
8520
|
ref: tableRef,
|
|
8492
8521
|
columns: (0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(tableConfig),
|
|
@@ -8505,6 +8534,11 @@ const CLOSE_OTHER_POPOVERS_EVENT = 'biz-unit-select:close-others'; /*
|
|
|
8505
8534
|
"columns",
|
|
8506
8535
|
"data",
|
|
8507
8536
|
"loading"
|
|
8537
|
+
]), [
|
|
8538
|
+
[
|
|
8539
|
+
(0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(__WEBPACK_EXTERNAL_MODULE_element_sun__.ClickOutside),
|
|
8540
|
+
onClickOutside
|
|
8541
|
+
]
|
|
8508
8542
|
])
|
|
8509
8543
|
], 4)
|
|
8510
8544
|
]),
|
|
@@ -8856,6 +8890,15 @@ const biz_unit_select_exports_ = biz_unit_selectvue_type_script_lang_tsx_name_Bi
|
|
|
8856
8890
|
}
|
|
8857
8891
|
});
|
|
8858
8892
|
});
|
|
8893
|
+
const onClickOutside = ()=>{
|
|
8894
|
+
handleBlur();
|
|
8895
|
+
};
|
|
8896
|
+
const visibleChange = (val)=>{
|
|
8897
|
+
if (val) {
|
|
8898
|
+
loading.value = true;
|
|
8899
|
+
handleFocus();
|
|
8900
|
+
}
|
|
8901
|
+
};
|
|
8859
8902
|
__expose({
|
|
8860
8903
|
popoverRef,
|
|
8861
8904
|
tableRef,
|
|
@@ -8897,10 +8940,10 @@ const biz_unit_select_exports_ = biz_unit_selectvue_type_script_lang_tsx_name_Bi
|
|
|
8897
8940
|
"remote-method": (0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(handelRemoteMethod),
|
|
8898
8941
|
multiple: !!props.multiSelectFlag,
|
|
8899
8942
|
options: [],
|
|
8943
|
+
loading: loading.value,
|
|
8900
8944
|
"popper-class": popoverVisible.value ? 'hidden' : '',
|
|
8901
8945
|
onRemoveTag: handleTagRemove,
|
|
8902
|
-
|
|
8903
|
-
onBlur: handleBlur,
|
|
8946
|
+
onVisibleChange: visibleChange,
|
|
8904
8947
|
onClear: handleClear
|
|
8905
8948
|
}, selectProps.value), null, 16, [
|
|
8906
8949
|
"modelValue",
|
|
@@ -8909,6 +8952,7 @@ const biz_unit_select_exports_ = biz_unit_selectvue_type_script_lang_tsx_name_Bi
|
|
|
8909
8952
|
"teleported",
|
|
8910
8953
|
"remote-method",
|
|
8911
8954
|
"multiple",
|
|
8955
|
+
"loading",
|
|
8912
8956
|
"popper-class"
|
|
8913
8957
|
])
|
|
8914
8958
|
]),
|
|
@@ -8919,7 +8963,7 @@ const biz_unit_select_exports_ = biz_unit_selectvue_type_script_lang_tsx_name_Bi
|
|
|
8919
8963
|
}),
|
|
8920
8964
|
class: "w-full overflow-hidden"
|
|
8921
8965
|
}, [
|
|
8922
|
-
(0, __WEBPACK_EXTERNAL_MODULE_vue__.createVNode)((0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(pro_table), (0, __WEBPACK_EXTERNAL_MODULE_vue__.mergeProps)({
|
|
8966
|
+
(0, __WEBPACK_EXTERNAL_MODULE_vue__.withDirectives)((0, __WEBPACK_EXTERNAL_MODULE_vue__.createVNode)((0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(pro_table), (0, __WEBPACK_EXTERNAL_MODULE_vue__.mergeProps)({
|
|
8923
8967
|
style: {
|
|
8924
8968
|
height: "100%"
|
|
8925
8969
|
},
|
|
@@ -8937,6 +8981,11 @@ const biz_unit_select_exports_ = biz_unit_selectvue_type_script_lang_tsx_name_Bi
|
|
|
8937
8981
|
"loading",
|
|
8938
8982
|
"columns",
|
|
8939
8983
|
"data"
|
|
8984
|
+
]), [
|
|
8985
|
+
[
|
|
8986
|
+
(0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(__WEBPACK_EXTERNAL_MODULE_element_sun__.ClickOutside),
|
|
8987
|
+
onClickOutside
|
|
8988
|
+
]
|
|
8940
8989
|
])
|
|
8941
8990
|
], 4)
|
|
8942
8991
|
]),
|
|
@@ -12241,7 +12290,9 @@ const keyboard_value_exports_ = keyboard_valuevue_type_script_setup_true_lang_ts
|
|
|
12241
12290
|
const _component_el_dropdown_item = (0, __WEBPACK_EXTERNAL_MODULE_vue__.resolveComponent)("el-dropdown-item");
|
|
12242
12291
|
const _component_el_dropdown_menu = (0, __WEBPACK_EXTERNAL_MODULE_vue__.resolveComponent)("el-dropdown-menu");
|
|
12243
12292
|
const _component_el_dropdown = (0, __WEBPACK_EXTERNAL_MODULE_vue__.resolveComponent)("el-dropdown");
|
|
12244
|
-
return (0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createBlock)(_component_el_dropdown,
|
|
12293
|
+
return (0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createBlock)(_component_el_dropdown, {
|
|
12294
|
+
trigger: disabledLoad.value ? 'click' : 'hover'
|
|
12295
|
+
}, (0, __WEBPACK_EXTERNAL_MODULE_vue__.createSlots)({
|
|
12245
12296
|
default: (0, __WEBPACK_EXTERNAL_MODULE_vue__.withCtx)(()=>[
|
|
12246
12297
|
(0, __WEBPACK_EXTERNAL_MODULE_vue__.createVNode)(_component_el_button, {
|
|
12247
12298
|
type: "primary",
|
|
@@ -12290,7 +12341,9 @@ const keyboard_value_exports_ = keyboard_valuevue_type_script_setup_true_lang_ts
|
|
|
12290
12341
|
]),
|
|
12291
12342
|
key: "0"
|
|
12292
12343
|
}
|
|
12293
|
-
]),
|
|
12344
|
+
]), 1032, [
|
|
12345
|
+
"trigger"
|
|
12346
|
+
]);
|
|
12294
12347
|
};
|
|
12295
12348
|
}
|
|
12296
12349
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sun-biz",
|
|
3
|
-
"version": "0.0.4-beta.
|
|
3
|
+
"version": "0.0.4-beta.47",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"workspaces": [
|
|
6
6
|
"src/*",
|
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
"js-pinyin": "^0.2.7",
|
|
82
82
|
"latest": "^0.2.0",
|
|
83
83
|
"lodash": "^4.17.21",
|
|
84
|
-
"sortablejs": "^1.15.6"
|
|
84
|
+
"sortablejs": "^1.15.6",
|
|
85
|
+
"uuid": "^13.0.0"
|
|
85
86
|
}
|
|
86
87
|
}
|