MrShi
2025-01-02 a0a1c206612de9a3e9d64f3d45564c0ff03f93f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { http } from '@/utils/service.js'
export * from '@/utils/config.js'
export * from './staff'
export * from './yw'
 
 
 
// 查询字典值数据
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
  })
}