部分问题修复,修改数据统计接口

This commit is contained in:
2025-11-24 15:48:06 +08:00
parent e4f5cc8519
commit 679207521d
20 changed files with 2610 additions and 2134 deletions

View File

@@ -157,7 +157,7 @@
<script setup>
import Modal from "@/pageMarket/components/modal.vue";
import { ref, reactive, computed, watch, onMounted } from "vue";
import { ref, reactive, computed, watch, onMounted ,nextTick} from "vue";
import { useNewUserDiscountStore } from "@/store/market.js";
const isLoading = ref(false);
@@ -299,7 +299,10 @@ async function init() {
};
console.log(data);
Object.assign(form, data);
isLoading.value = false;
nextTick(() => {
isLoading.value = false;
})
}
onMounted(() => {