UNPKG

press-next

Version:
16 lines (13 loc) 415 B
export function getGpScheme({ path = 'views/index/index', appId = 'wx688122c86a023da7', query = '', version = 'release', }) { let res = `weixin://dl/business/?appid=${appId}&path=${path}&env_version=${version}`; if (query) { res += `&query=${query}`; } return res; } export const DEFAULT_OPEN_LINK = 'weixin://dl/business/?appid=wx688122c86a023da7&path=views/index/index&env_version=release';