兰宝车间质量管理系统-前端
文兵 李
2024-01-15 0c56f87e06a62c4c9e5d4c3a5ebc4ec139ab924e
src/api/system/social/auth.ts
@@ -4,10 +4,7 @@
export function authBinding(source: string) {
  return request({
    url: '/auth/binding/' + source,
    method: 'get',
    headers: {
      isToken: true
    }
    method: 'get'
  });
}
@@ -15,19 +12,13 @@
export function authUnlock(authId: string) {
  return request({
    url: '/auth/unlock/' + authId,
    method: 'delete',
    headers: {
      isToken: true
    }
    method: 'delete'
  });
}
//获取授权列表
export function getAuthList() {
  return request({
    url: '/system/social/list',
    method: 'get',
    headers: {
      isToken: true
    }
    method: 'get'
  });
}