detail.uts 313 B

12345678910111213141516
  1. /**
  2. * 工作台详情接口
  3. */
  4. import { request } from '../../utils/request'
  5. /**
  6. * 根据 ID 获取承包商详情
  7. * @param id 承包商 ID
  8. */
  9. export const getContractorById = (id: string): Promise<any> => {
  10. return request({
  11. url: `/infoThirdParty/getById/${id}`,
  12. method: 'GET'
  13. })
  14. }