兰宝车间质量管理系统-前端
LiuHao
2023-06-20 319b37fe98d04df1e3af0f0d956ab42cb057680c
src/api/system/social/auth.ts
对比新文件
@@ -0,0 +1,24 @@
import request from '@/utils/request';
// 缁戝畾璐﹀彿
export function authBinding(source: string) {
  return request({
    url: '/auth/binding/' + source,
    method: 'get'
  });
}
// 瑙g粦璐﹀彿
export function authUnlock(authId: string) {
  return request({
    url: '/auth/unlock/' + authId,
    method: 'delete'
  });
}
//鑾峰彇鎺堟潈鍒楄〃
export function getAuthList() {
  return request({
    url: '/system/social/list',
    method: 'get'
  });
}