Files
app-govern/common/api/mine.js
2023-08-11 11:03:31 +08:00

39 lines
659 B
JavaScript

import request from '../js/request'
import config from '../js/config'
export function queryPersonSet() {
return request({
url: '/appinfo/queryPersonSet',
method: 'post',
data: {},
})
}
export function queryAppInfo(id) {
return request({
url: '/appinfo/queryAppInfo',
method: 'post',
data: {
id,
},
})
}
/**
* 查询app个人中心信息详情
* @param id
*/
export const queryAppInfoByType = (type) => {
return request({
url: '/cs-system-boot/appinfo/queryAppInfoByType',
method: 'post',
data: {
type,
},
})
}
//