123456789101112131415161718192021 |
- import request from '@/utils/request'
- // 查询光伏组件
- export function getPvModuleModel() {
- return request({
- url: '/dataQuery/inverterInfo/getPvModuleModel',
- method: 'get'
- })
- }
- // 查询场站信息
- export function getStationInfo() {
- return request({
- url: '/dataQuery/inverterInfo/getStationInfo',
- method: 'get'
- })
- }
|