auth.vue 740 Bytes
<template>
  <div class=""></div>
</template>

<script setup>
import { ref, reactive, onMounted } from 'vue'
import { useRoute, useRouter } from 'vue-router'
import axios from '@/utils/axios';
import $ from 'jquery'
import { Toast } from 'vant';
const $route = useRoute();
const $router = useRouter();

onMounted(() => {
  // php需要先跳转链接获取openid
  let url = location.origin + '/' + $route.query.href; // 未授权的地址
  location.href = `/srv/?f=voice&a=openid_${$route.query.userType}&res=${url}`
})
</script>

<script>
import mixin from 'common/mixin';

export default {
  mixins: [mixin.init],
  data() {
    return {

    }
  },
  mounted() {

  },
  methods: {

  }
}
</script>

<style lang="less" scoped>
</style>