renkang
2025-01-03 ccf28d1fed1aa2e5437dbe64b5133ba1cbde6ec7
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 }
  })
}