diff --git a/src/components/Chart/RateChart.vue b/src/components/Chart/RateChart.vue index f49581b..6e3699d 100644 --- a/src/components/Chart/RateChart.vue +++ b/src/components/Chart/RateChart.vue @@ -33,10 +33,12 @@ watch( ); const rate = computed(() => { - const _rate = ((props.rawData.nowYield / props.rawData.targetYield) * 100) - .toFixed(2) - .toString(); - return [parseInt(_rate), _rate.split(".")[1]]; + if (!props.rawData.nowYield || props.rawData.nowYield == 0) return [0, 0]; + // const _rate = ((props.rawData.nowYield / props.rawData.targetYield) * 100) + // .toFixed(2) + // .toString(); + // return [parseInt(_rate), _rate.split(".")[1]]; + return [parseInt(props.rawData.nowYield), props.rawData.nowYield.split(".")[1]]; }); const chart = ref(null); diff --git a/src/pages/ThreeDimension.vue b/src/pages/ThreeDimension.vue index 096b0f7..e3da4b3 100644 --- a/src/pages/ThreeDimension.vue +++ b/src/pages/ThreeDimension.vue @@ -36,7 +36,7 @@ const props = defineProps({ } .data-list { - height: 100%; + /* height: 100%; */ width: 480px; position: absolute;