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, }, }) }