bl-common-vue3 3.8.84 → 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
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
|
};
|
|
@@ -379,7 +379,7 @@ export default defineComponent({
|
|
|
379
379
|
return item;
|
|
380
380
|
}
|
|
381
381
|
|
|
382
|
-
let totalAreaProperty =
|
|
382
|
+
let totalAreaProperty = Number(item.charging_area) > 0
|
|
383
383
|
? Number(item.charging_area).toFixed(4)
|
|
384
384
|
: Number(item.rental_area).toFixed(4)
|
|
385
385
|
let totalAreaLease = Number(item.rental_area).toFixed(4);
|