diff --git a/src/components/AppBackground.vue b/src/components/AppBackground.vue
index 103a8a9..b3bab21 100644
--- a/src/components/AppBackground.vue
+++ b/src/components/AppBackground.vue
@@ -43,6 +43,12 @@ onMounted(() => {
src="../static/app-bg4.png"
mode="widthFix"
/>
+
diff --git a/src/components/PointRecord.vue b/src/components/PointRecord.vue
index 1c131a0..c170ebf 100644
--- a/src/components/PointRecord.vue
+++ b/src/components/PointRecord.vue
@@ -46,7 +46,7 @@ onMounted(() => {
{{ data.createAt }}
- 黄心率:{{ data.yellowRate * 100 }}%
+ 黄心率:{{ Number(data.yellowRate.toFixed(2)) * 100 }}%
10环数:{{ data.tenRings }}
平均:{{ data.averageRing }}
diff --git a/src/components/RingBarChart.vue b/src/components/RingBarChart.vue
new file mode 100644
index 0000000..b5a30e6
--- /dev/null
+++ b/src/components/RingBarChart.vue
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
+
+ {{ b && b.ring !== undefined ? b.ring : "" }}
+
+
+
+
+
+
diff --git a/src/pages/point-book.vue b/src/pages/point-book.vue
index d45c6ed..06c7f91 100644
--- a/src/pages/point-book.vue
+++ b/src/pages/point-book.vue
@@ -3,6 +3,7 @@ import { ref, computed, onMounted, onBeforeUnmount } from "vue";
import { onShow, onShareAppMessage, onShareTimeline } from "@dcloudio/uni-app";
import Container from "@/components/Container.vue";
import PointRecord from "@/components/PointRecord.vue";
+import RingBarChart from "@/components/RingBarChart.vue";
import SModal from "@/components/SModal.vue";
import Signin from "@/components/Signin.vue";
@@ -94,7 +95,7 @@ onShareTimeline(() => {
-
+
@@ -194,6 +195,7 @@ onShareTimeline(() => {
+
diff --git a/src/static/app-bg5.png b/src/static/app-bg5.png
new file mode 100644
index 0000000..894bb9d
Binary files /dev/null and b/src/static/app-bg5.png differ