financialInfrastructure.js 386 B

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