rk
2025-12-10 09c4bfc9924fa21d264578292e0226c2b79e3759
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 }
  })
}