import { A5pageType } from '@/pages/A5view' const PAGE_KEY = 'GMLX_WEB_VIEW_PAGE_KEY' // 存 export const infoPageIDSet = (key: A5pageType) => { localStorage.setItem(PAGE_KEY, key) } // 取 export const infoPageIDGet = () => { let res: A5pageType = 'three' let txt: any = localStorage.getItem(PAGE_KEY) || '' if (txt) res = txt return res }