部分问题修复,修改数据统计接口
This commit is contained in:
@@ -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(() => {
|
||||
|
||||
Reference in New Issue
Block a user