inverterInfo.js 352 B

123456789101112131415161718192021
  1. import request from '@/utils/request'
  2. // 查询光伏组件
  3. export function getPvModuleModel() {
  4. return request({
  5. url: '/dataQuery/inverterInfo/getPvModuleModel',
  6. method: 'get'
  7. })
  8. }
  9. // 查询场站信息
  10. export function getStationInfo() {
  11. return request({
  12. url: '/dataQuery/inverterInfo/getStationInfo',
  13. method: 'get'
  14. })
  15. }