From a997e190fd7dbcfbe738de814567440b20bc9521 Mon Sep 17 00:00:00 2001 From: Phoenix <64720302+Concur-max@users.noreply.github.com> Date: Wed, 21 Feb 2024 13:15:29 +0800 Subject: [PATCH] submit --- src/stores/userStore.js | 4 ++-- src/views/reg-details/index.vue | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/stores/userStore.js b/src/stores/userStore.js index 7164ca3..45b926c 100644 --- a/src/stores/userStore.js +++ b/src/stores/userStore.js @@ -2,8 +2,8 @@ import { defineStore } from 'pinia'; import {ref,watch} from "vue"; import dayjs from 'dayjs'; import 'dayjs/locale/zh-cn'; -import storage from "@/utils/storage.js"; // 导入中文语言包 -dayjs.locale('zh-cn'); // 使用中文语言包 +import storage from "@/utils/storage.js"; +dayjs.locale('zh-cn'); export const useUserStore = defineStore('user', ()=>{ const idCardInfo=ref({}) const iDCardImage=ref({ diff --git a/src/views/reg-details/index.vue b/src/views/reg-details/index.vue index b9c8328..aa997d1 100644 --- a/src/views/reg-details/index.vue +++ b/src/views/reg-details/index.vue @@ -11,7 +11,7 @@ import { cloneDeep } from 'lodash'; import {useRouter} from "vue-router"; const router = useRouter(); const userStore = useUserStore() -const {submitReturnData,telNum,iDCardImage,temSubmitReturnData,idCardInfo} = storeToRefs(userStore); +const {submitReturnData,iDCardImage,temSubmitReturnData,idCardInfo} = storeToRefs(userStore); const btnStatus=ref(0) const isCountingDown = ref(false); const countdownInterval = ref(null);