import { http } from '@/utils/service.js' 
 | 
export * from '@/utils/config.js' 
 | 
export * from './visitor' 
 | 
export * from './staff' 
 | 
export * from './meeting' 
 | 
export * from './driver' 
 | 
  
 | 
  
 | 
  
 | 
// 查询字典值数据 
 | 
export const getSystemDictData = (data) => { 
 | 
  return http({ 
 | 
    url: 'visitsAdmin/cloudService/web/other/getSystemDictData', 
 | 
    data 
 | 
  }) 
 | 
} 
 | 
// 授权 
 | 
export const wxAuthorize = (data) => { 
 | 
  return http({ 
 | 
    url: 'visitsAdmin/cloudService/web/visitor/wxAuthorize', 
 | 
    method: 'get', 
 | 
    data 
 | 
  }) 
 | 
} 
 | 
//  发送短信验证码 
 | 
export const sendSms = (data) => { 
 | 
  return http({ 
 | 
    url: 'visitsAdmin/cloudService/business/smsEmail/sendSms', 
 | 
    method: 'post', 
 | 
    data 
 | 
  }) 
 | 
} 
 |