BUG修改

This commit is contained in:
kron
2025-11-05 13:38:37 +08:00
parent ecdf4a76f4
commit 2e9d257faa
8 changed files with 74 additions and 46 deletions

View File

@@ -43,7 +43,7 @@ const toEditPage = () => {
bowtargetType.value &&
amountGroup.value
) {
uni.setStorageSync("point-book", {
uni.setStorageSync("last-point-book", {
bowType: bowType.value,
distance: distance.value,
bowtargetType: bowtargetType.value,
@@ -67,7 +67,7 @@ const toEditPage = () => {
// }
// });
onMounted(async () => {
const pointBook = uni.getStorageSync("point-book");
const pointBook = uni.getStorageSync("last-point-book");
if (pointBook) {
bowType.value = pointBook.bowType;
distance.value = pointBook.distance;