兰宝车间质量管理系统-前端
LiuHao
2024-01-11 591003290867725b35a4559995587b56dab39ea0
src/views/system/user/profile/thirdParty.vue
@@ -32,6 +32,12 @@
          </div>
          <span class="app-name">MaxKey</span>
        </a>
        <a class="third-app" href="#" title="使用 TopIam 账号授权登录" @click="authUrl('topiam')">
          <div class="git-other-login-icon">
            <svg-icon icon-class="topiam" />
          </div>
          <span class="app-name">TopIam</span>
        </a>
        <a class="third-app" href="#" title="使用 Gitee 账号授权登录" @click="authUrl('gitee')">
          <div class="git-other-login-icon">
            <svg-icon icon-class="gitee" />
@@ -51,14 +57,12 @@
<script lang="ts" setup>
import { authUnlock, authBinding } from '@/api/system/social/auth';
import { PropType } from 'vue';
import { propTypes } from '@/utils/propTypes';
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const props = defineProps({
  auths: {
    type: Object as PropType<any>
  }
  auths: propTypes.any.isRequired
});
const auths = computed(() => props.auths);