import { defineStore } from "pinia";

export const useUserInfo = defineStore("gxh_userInfo", {
    state:() => ({
        userForm: {
            name: '',
            pwd: ''
        },
        phoneForm: {
            phone: '',
            code: ''
        },
        rememberPsw: 0,
        // 历史账户列表
        choiceList:[],
        // 选中账户信息
        choiceIndex: 0,
        secretKey: "hfyk"
    }),
    actions: {
        saveHistoriesList() {
            this.choiceList
        }
    }
})