sun-biz 0.0.3-beta.16 → 0.0.3-beta.17
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 +4 -3
- package/dist/index.js +4 -3
- package/package.json +1 -1
package/dist/components/index.js
CHANGED
|
@@ -5783,7 +5783,7 @@ const access_info_exports_ = access_infovue_type_script_setup_true_lang_ts_name_
|
|
|
5783
5783
|
},
|
|
5784
5784
|
disabled: {
|
|
5785
5785
|
type: Boolean,
|
|
5786
|
-
default:
|
|
5786
|
+
default: ()=>void 0
|
|
5787
5787
|
},
|
|
5788
5788
|
title: {
|
|
5789
5789
|
default: 'MDL'
|
|
@@ -5808,8 +5808,9 @@ const access_info_exports_ = access_infovue_type_script_setup_true_lang_ts_name_
|
|
|
5808
5808
|
return dmlList;
|
|
5809
5809
|
}
|
|
5810
5810
|
const disabledLoad = (0, __WEBPACK_EXTERNAL_MODULE_vue__.computed)(()=>{
|
|
5811
|
-
if (
|
|
5812
|
-
|
|
5811
|
+
if (0 === __props.bizData.length) return true;
|
|
5812
|
+
if (void 0 === __props.disabled) return !isCloudEnv;
|
|
5813
|
+
return __props.disabled;
|
|
5813
5814
|
});
|
|
5814
5815
|
const dmlList = useGetDMLList();
|
|
5815
5816
|
async function clickDropdown(item) {
|
package/dist/index.js
CHANGED
|
@@ -5661,7 +5661,7 @@ const access_info_exports_ = access_infovue_type_script_setup_true_lang_ts_name_
|
|
|
5661
5661
|
},
|
|
5662
5662
|
disabled: {
|
|
5663
5663
|
type: Boolean,
|
|
5664
|
-
default:
|
|
5664
|
+
default: ()=>void 0
|
|
5665
5665
|
},
|
|
5666
5666
|
title: {
|
|
5667
5667
|
default: 'MDL'
|
|
@@ -5686,8 +5686,9 @@ const access_info_exports_ = access_infovue_type_script_setup_true_lang_ts_name_
|
|
|
5686
5686
|
return dmlList;
|
|
5687
5687
|
}
|
|
5688
5688
|
const disabledLoad = (0, __WEBPACK_EXTERNAL_MODULE_vue__.computed)(()=>{
|
|
5689
|
-
if (
|
|
5690
|
-
|
|
5689
|
+
if (0 === __props.bizData.length) return true;
|
|
5690
|
+
if (void 0 === __props.disabled) return !isCloudEnv;
|
|
5691
|
+
return __props.disabled;
|
|
5691
5692
|
});
|
|
5692
5693
|
const dmlList = useGetDMLList();
|
|
5693
5694
|
async function clickDropdown(item) {
|