兰宝车间质量管理系统-前端
LiuHao
2024-03-18 8761392c85ca0613a522b4d782efadea179a5acb
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'
  });
}