index.ts 617 B

12345678910111213
  1. import { httpRequest } from '../../../services/http/index'
  2. import { HttpRequest } from '../../../services/http/interface'
  3. import service from '../../../services'
  4. /* 查询汇率信息 */
  5. export function queryRates(params: HttpRequest<{req: GuangZuan.RatesReq, rsp: GuangZuan.Rates[]}>) {
  6. return httpRequest(service.config.goCommonSearchUrl+'/Common/QueryRates', 'GET', params)
  7. }
  8. /* 通知公告系统消息查询 */
  9. export function queryNotice(params: HttpRequest<{req: GuangZuan.NoticeReq, rsp: GuangZuan.Notice[]}>) {
  10. return httpRequest(service.config.goCommonSearchUrl+'/Common/QueryNotice', 'GET', params)
  11. }