devicesmgt/sgzb-screen/src/api/centerModule.js

65 lines
1.8 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import * as API from './index.js'
const URL_PREFIX = '/gywlw/'
const URL_PREFIXRightUrl = ''
export default {
// /gywlw/screenTuPuGroup/getTuPuGroupVoNoIndexList 首页
getTuPuGroupVoNoIndexList: params => {
return API.GET(
URL_PREFIXRightUrl.concat(
'gywlw/screenTuPuGroup/getTuPuGroupVoNoIndexList'
),
params
)
},
// 应用开发层 111
getAppCenterTopVoByScreen: params => {
return API.GET(
URL_PREFIXRightUrl.concat(
'gywlw/screenAppCenterTop/getAppCenterTopVoByScreen'
),
params
)
},
// 应用开发层 222
getAppCenterByScreen: params => {
return API.GET(
URL_PREFIXRightUrl.concat('gywlw/screenAppCenter/getAppCenterByScreen'),
params
)
},
// AI服务层/gywlw/screenAiSummary/getAiSummaryVoByScreen
getAiSummaryVoByScreen: params => {
return API.GET(
URL_PREFIXRightUrl.concat('gywlw/screenAiSummary/getAiSummaryVoByScreen'),
params
)
},
// 基础it大屏中间接口 gywlw/screenItBaseHardware/data
getScreenItBaseHardwareData: params => {
return API.GET(
URL_PREFIXRightUrl.concat('gywlw/screenItBaseHardware/data'),
params
)
},
// 数据服务平台大屏中间接口:
getScreenDataTableDetailData: params => {
return API.GET(
URL_PREFIXRightUrl.concat('gywlw/screenDataTableDetail/data'),
params
)
},
// 业务服务平台大屏列表接口dict/getDictListByCode
getDictListByCode: params => {
return API.GET(URL_PREFIXRightUrl.concat('/dict/getDictListByCode'), params)
},
// http://localhost:8803/cockpit/gywlw/screenBusinessSummary/findListById?groupId=1592768383093727233
getFindListById: params => {
return API.GET(
URL_PREFIXRightUrl.concat('gywlw/screenBusinessSummary/findListById'),
params
)
}
}