financialInfrastructure.js 382 B

123456789101112131415161718
  1. import request from '@/utils/request'
  2. // 查询金融基建列表
  3. export function list(query) {
  4. return request({
  5. url: '/high/server/financialInfrastructureList',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 查询金融基建详情
  11. export function getDetails(id) {
  12. return request({
  13. url: '/high/server/financialInfrastructureDetails/' + id,
  14. method: 'get',
  15. })
  16. }