烟花爆竹实名登记前端
祖安之光
2026-03-09 f71349e211e274904bbd883c9ac119acc3f12368
1
2
3
4
5
6
7
8
9
10
<script>
export default {
  name: 'AuthRedirect',
  created() {
    const hash = window.location.search.slice(1)
    window.opener.location.href = window.location.origin + '/login#' + hash
    window.close()
  }
}
</script>