aaa
doum
2026-06-04 08e9a67dd679f311e79a27b04cd0c53a30b4bccf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export const ANCHOR_PAGE_V2 = 'v2'
export const ANCHOR_PAGE_V3 = 'v3'
 
export function normalizeAnchorPageVersion (version) {
  return String(version || '').toLowerCase() === ANCHOR_PAGE_V3 ? ANCHOR_PAGE_V3 : ANCHOR_PAGE_V2
}
 
export function getAnchorHomePath (version) {
  return normalizeAnchorPageVersion(version) === ANCHOR_PAGE_V3
    ? '/pages/index_3/index'
    : '/pages/index_2/index'
}
 
export function isAnchorV3 (version) {
  return normalizeAnchorPageVersion(version) === ANCHOR_PAGE_V3
}