Files
app-govern/common/api/mine.js

36 lines
653 B
JavaScript
Raw Normal View History

2023-07-03 20:29:24 +08:00
import request from '../js/request'
import config from '../js/config'
2023-04-07 08:50:21 +08:00
export function queryPersonSet() {
return request({
url: '/appinfo/queryPersonSet',
method: 'post',
data: {},
2023-07-03 20:29:24 +08:00
})
2023-04-07 08:50:21 +08:00
}
export function queryAppInfo(id) {
return request({
url: '/appinfo/queryAppInfo',
method: 'post',
data: {
id,
},
2023-07-03 20:29:24 +08:00
})
2023-04-07 08:50:21 +08:00
}
2023-07-03 20:29:24 +08:00
2023-07-06 14:24:03 +08:00
/**
* 查询app个人中心信息详情
* @param id
*/
export const queryAppInfoByType = (type) => {
return request({
url: '/cs-system-boot/appinfo/queryAppInfoByType',
method: 'post',
data: {
type,
},
})
}