MrShi
2025-03-12 69a1b3bf45738f048361ee4ccb6bdc64fce35720
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import request from '../../utils/request'
 
// 查询
export function getServiceUrl (data) {
  return request.post('/visitsAdmin/cloudService//business/hksync/getServiceUrl', data, {
    trim: true
  })
}
// 查询字典值数据
export const getSystemDictData = (params) => {
  return request.get('/visitsAdmin/cloudService/web/other/getSystemDictData', {
    params: { ...params }
  })
}