submit
This commit is contained in:
parent
9a41868877
commit
a997e190fd
@ -2,8 +2,8 @@ import { defineStore } from 'pinia';
|
|||||||
import {ref,watch} from "vue";
|
import {ref,watch} from "vue";
|
||||||
import dayjs from 'dayjs';
|
import dayjs from 'dayjs';
|
||||||
import 'dayjs/locale/zh-cn';
|
import 'dayjs/locale/zh-cn';
|
||||||
import storage from "@/utils/storage.js"; // 导入中文语言包
|
import storage from "@/utils/storage.js";
|
||||||
dayjs.locale('zh-cn'); // 使用中文语言包
|
dayjs.locale('zh-cn');
|
||||||
export const useUserStore = defineStore('user', ()=>{
|
export const useUserStore = defineStore('user', ()=>{
|
||||||
const idCardInfo=ref({})
|
const idCardInfo=ref({})
|
||||||
const iDCardImage=ref({
|
const iDCardImage=ref({
|
||||||
|
@ -11,7 +11,7 @@ import { cloneDeep } from 'lodash';
|
|||||||
import {useRouter} from "vue-router";
|
import {useRouter} from "vue-router";
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const userStore = useUserStore()
|
const userStore = useUserStore()
|
||||||
const {submitReturnData,telNum,iDCardImage,temSubmitReturnData,idCardInfo} = storeToRefs(userStore);
|
const {submitReturnData,iDCardImage,temSubmitReturnData,idCardInfo} = storeToRefs(userStore);
|
||||||
const btnStatus=ref(0)
|
const btnStatus=ref(0)
|
||||||
const isCountingDown = ref(false);
|
const isCountingDown = ref(false);
|
||||||
const countdownInterval = ref(null);
|
const countdownInterval = ref(null);
|
||||||
|
Loading…
Reference in New Issue
Block a user