bl-common-vue3 3.8.85 → 3.8.86
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/package.json +1 -1
- package/src/common/utils/util.js +3 -0
package/package.json
CHANGED
package/src/common/utils/util.js
CHANGED
|
@@ -619,6 +619,7 @@ const utils = {
|
|
|
619
619
|
Modal.success({
|
|
620
620
|
title: () => title,
|
|
621
621
|
content: () => content,
|
|
622
|
+
getContainer: getGlobalContainer,
|
|
622
623
|
});
|
|
623
624
|
},
|
|
624
625
|
|
|
@@ -629,6 +630,7 @@ const utils = {
|
|
|
629
630
|
Modal.error({
|
|
630
631
|
title: () => title,
|
|
631
632
|
content: () => content,
|
|
633
|
+
getContainer: getGlobalContainer,
|
|
632
634
|
});
|
|
633
635
|
},
|
|
634
636
|
|
|
@@ -639,6 +641,7 @@ const utils = {
|
|
|
639
641
|
Modal.warning({
|
|
640
642
|
title: () => title,
|
|
641
643
|
content: () => content,
|
|
644
|
+
getContainer: getGlobalContainer,
|
|
642
645
|
});
|
|
643
646
|
}
|
|
644
647
|
};
|