GSExamProj/apis/http.js

17 lines
454 B
JavaScript
Raw Normal View History

2024-04-18 11:01:57 +08:00
class HttpConfig {
// 基地址
baseUrl = "http://112.29.103.165:1618/GsExamWeb"
// 短链
serviceUrl = {
index: {
getNowPoints: '/backstage/appshoping/getAllpoint', // 查询当前用户剩余积分
getHomeNotice: '/backstage/app/getAppNoticeList', // 获取首页通知公告
keyData: '/app/getCriticalData', // 获取关键数据
getUserInfo: '/system/user/getInfo', // 获取用户信息
},
}
}
export default new HttpConfig()